commit 431b5ebb990ff9b8ba5ec8d21caf910015917108 Author: Blallo Date: Wed Jul 17 22:49:32 2024 +0200 init diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..72c426b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM wordpress:6 + +COPY ./assets/wordpress/wp-content /var/www/html/wp-content diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1201917 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +DOCKER ?= docker +COMPOSE ?= docker compose + +dev-run: + $(COMPOSE) up + +dev-stop: + $(COMPOSE) down + +dev-clean: + $(COMPOSE) down --volumes diff --git a/README.md b/README.md new file mode 100644 index 0000000..4dc03b5 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# `askar-association-ps.org` + +### The structure + +The website will be a Wordpress with some customization. It will have the following structure + + * About Us + - Who We Are + - Mission and Vision + - Our Values + - Strategic Objectives and Theory of Change + - Ethical Charter + - Partners + + * Our Work + - Main Units + - Projects + - Programs + - Services + + * Media Center + - News + - Gallery + - Visuals + + * Achieve + + * Donate + + * Get Involved + + * Contact Us + +## Dev + +We use GNU make + docker diff --git a/assets/admin.pass.age b/assets/admin.pass.age new file mode 100644 index 0000000..85da4f7 --- /dev/null +++ b/assets/admin.pass.age @@ -0,0 +1,6 @@ +age-encryption.org/v1 +-> scrypt 3hiih/5zFCINPIS7YbDkAA 18 +FW79zRIahIdD6+P8QY4b3DvtXc5OFD03nWnEhIiY35M +--- ixXkHTqBh6eqkEd7NRiNKIoirrog+LYnRfqIt4WX4TQ +牼=-P?;mNHm/9 +d`as=IZ:,2if0wT'HAt+' \ No newline at end of file diff --git a/assets/db/dump.sql b/assets/db/dump.sql new file mode 100644 index 0000000..6a5061c --- /dev/null +++ b/assets/db/dump.sql @@ -0,0 +1,966 @@ +/*!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19-11.4.2-MariaDB, for Linux (x86_64) +-- +-- Host: 127.0.0.1 Database: askar +-- ------------------------------------------------------ +-- Server version 8.4.1 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */; + +-- +-- Table structure for table `wp_commentmeta` +-- + +DROP TABLE IF EXISTS `wp_commentmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_commentmeta` ( + `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `comment_id` bigint unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`meta_id`), + KEY `comment_id` (`comment_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_commentmeta` +-- + +LOCK TABLES `wp_commentmeta` WRITE; +/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_comments` +-- + +DROP TABLE IF EXISTS `wp_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_comments` ( + `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT, + `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0', + `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `comment_karma` int NOT NULL DEFAULT '0', + `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', + `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment', + `comment_parent` bigint unsigned NOT NULL DEFAULT '0', + `user_id` bigint unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`comment_ID`), + KEY `comment_post_ID` (`comment_post_ID`), + KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), + KEY `comment_date_gmt` (`comment_date_gmt`), + KEY `comment_parent` (`comment_parent`), + KEY `comment_author_email` (`comment_author_email`(10)) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_comments` +-- + +LOCK TABLES `wp_comments` WRITE; +/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; +INSERT INTO `wp_comments` VALUES +(1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-07-16 21:54:43','2024-07-16 21:54:43','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','comment',0,0); +/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_links` +-- + +DROP TABLE IF EXISTS `wp_links`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_links` ( + `link_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', + `link_owner` bigint unsigned NOT NULL DEFAULT '1', + `link_rating` int NOT NULL DEFAULT '0', + `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + PRIMARY KEY (`link_id`), + KEY `link_visible` (`link_visible`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_links` +-- + +LOCK TABLES `wp_links` WRITE; +/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_options` +-- + +DROP TABLE IF EXISTS `wp_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_options` ( + `option_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', + PRIMARY KEY (`option_id`), + UNIQUE KEY `option_name` (`option_name`), + KEY `autoload` (`autoload`) +) ENGINE=InnoDB AUTO_INCREMENT=228 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_options` +-- + +LOCK TABLES `wp_options` WRITE; +/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; +INSERT INTO `wp_options` VALUES +(1,'siteurl','http://localhost:8080','yes'), +(2,'home','http://localhost:8080','yes'), +(3,'blogname','Charitable Askar Association for Development and Community Development','yes'), +(4,'blogdescription','','yes'), +(5,'users_can_register','0','yes'), +(6,'admin_email','unit@paranoici.org','yes'), +(7,'start_of_week','1','yes'), +(8,'use_balanceTags','0','yes'), +(9,'use_smilies','1','yes'), +(10,'require_name_email','1','yes'), +(11,'comments_notify','1','yes'), +(12,'posts_per_rss','10','yes'), +(13,'rss_use_excerpt','0','yes'), +(14,'mailserver_url','mail.example.com','yes'), +(15,'mailserver_login','login@example.com','yes'), +(16,'mailserver_pass','password','yes'), +(17,'mailserver_port','110','yes'), +(18,'default_category','1','yes'), +(19,'default_comment_status','open','yes'), +(20,'default_ping_status','open','yes'), +(21,'default_pingback_flag','1','yes'), +(22,'posts_per_page','10','yes'), +(23,'date_format','F j, Y','yes'), +(24,'time_format','g:i a','yes'), +(25,'links_updated_date_format','F j, Y g:i a','yes'), +(26,'comment_moderation','0','yes'), +(27,'moderation_notify','1','yes'), +(28,'permalink_structure','','yes'), +(29,'rewrite_rules','','yes'), +(30,'hack_file','0','yes'), +(31,'blog_charset','UTF-8','yes'), +(32,'moderation_keys','','no'), +(33,'active_plugins','a:0:{}','yes'), +(34,'category_base','','yes'), +(35,'ping_sites','http://rpc.pingomatic.com/','yes'), +(36,'comment_max_links','2','yes'), +(37,'gmt_offset','0','yes'), +(38,'default_email_category','1','yes'), +(39,'recently_edited','','no'), +(40,'template','twentytwentyfour','yes'), +(41,'stylesheet','twentytwentyfour','yes'), +(42,'comment_registration','0','yes'), +(43,'html_type','text/html','yes'), +(44,'use_trackback','0','yes'), +(45,'default_role','subscriber','yes'), +(46,'db_version','57155','yes'), +(47,'uploads_use_yearmonth_folders','1','yes'), +(48,'upload_path','','yes'), +(49,'blog_public','1','yes'), +(50,'default_link_category','2','yes'), +(51,'show_on_front','page','yes'), +(52,'tag_base','','yes'), +(53,'show_avatars','1','yes'), +(54,'avatar_rating','G','yes'), +(55,'upload_url_path','','yes'), +(56,'thumbnail_size_w','150','yes'), +(57,'thumbnail_size_h','150','yes'), +(58,'thumbnail_crop','1','yes'), +(59,'medium_size_w','300','yes'), +(60,'medium_size_h','300','yes'), +(61,'avatar_default','mystery','yes'), +(62,'large_size_w','1024','yes'), +(63,'large_size_h','1024','yes'), +(64,'image_default_link_type','none','yes'), +(65,'image_default_size','','yes'), +(66,'image_default_align','','yes'), +(67,'close_comments_for_old_posts','0','yes'), +(68,'close_comments_days_old','14','yes'), +(69,'thread_comments','1','yes'), +(70,'thread_comments_depth','5','yes'), +(71,'page_comments','0','yes'), +(72,'comments_per_page','50','yes'), +(73,'default_comments_page','newest','yes'), +(74,'comment_order','asc','yes'), +(75,'sticky_posts','a:0:{}','yes'), +(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), +(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), +(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), +(79,'uninstall_plugins','a:0:{}','no'), +(80,'timezone_string','','yes'), +(81,'page_for_posts','0','yes'), +(82,'page_on_front','8','yes'), +(83,'default_post_format','0','yes'), +(84,'link_manager_enabled','0','yes'), +(85,'finished_splitting_shared_terms','1','yes'), +(86,'site_icon','0','yes'), +(87,'medium_large_size_w','768','yes'), +(88,'medium_large_size_h','0','yes'), +(89,'wp_page_for_privacy_policy','3','yes'), +(90,'show_comments_cookies_opt_in','1','yes'), +(91,'admin_email_lifespan','1736718882','yes'), +(92,'disallowed_keys','','no'), +(93,'comment_previously_approved','1','yes'), +(94,'auto_plugin_theme_update_emails','a:0:{}','no'), +(95,'auto_update_core_dev','enabled','yes'), +(96,'auto_update_core_minor','enabled','yes'), +(97,'auto_update_core_major','enabled','yes'), +(98,'wp_force_deactivated_plugins','a:0:{}','yes'), +(99,'wp_attachment_pages_enabled','0','yes'), +(100,'initial_db_version','57155','yes'), +(101,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), +(102,'fresh_site','0','yes'), +(103,'user_count','1','no'), +(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

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

Recent Comments

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

Archives

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

Categories

\";}s:12:\"_multiwidget\";i:1;}','yes'), +(105,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'), +(106,'cron','a:8:{i:1721166961;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1721166972;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1721166975;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721167032;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1721167796;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1721168457;a:1:{s:24:\"astra_delete_docs_folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1721253361;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'), +(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.5.5\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:27:\"post-content/editor-rtl.css\";i:281;s:31:\"post-content/editor-rtl.min.css\";i:282;s:23:\"post-content/editor.css\";i:283;s:27:\"post-content/editor.min.css\";i:284;s:23:\"post-date/style-rtl.css\";i:285;s:27:\"post-date/style-rtl.min.css\";i:286;s:19:\"post-date/style.css\";i:287;s:23:\"post-date/style.min.css\";i:288;s:27:\"post-excerpt/editor-rtl.css\";i:289;s:31:\"post-excerpt/editor-rtl.min.css\";i:290;s:23:\"post-excerpt/editor.css\";i:291;s:27:\"post-excerpt/editor.min.css\";i:292;s:26:\"post-excerpt/style-rtl.css\";i:293;s:30:\"post-excerpt/style-rtl.min.css\";i:294;s:22:\"post-excerpt/style.css\";i:295;s:26:\"post-excerpt/style.min.css\";i:296;s:34:\"post-featured-image/editor-rtl.css\";i:297;s:38:\"post-featured-image/editor-rtl.min.css\";i:298;s:30:\"post-featured-image/editor.css\";i:299;s:34:\"post-featured-image/editor.min.css\";i:300;s:33:\"post-featured-image/style-rtl.css\";i:301;s:37:\"post-featured-image/style-rtl.min.css\";i:302;s:29:\"post-featured-image/style.css\";i:303;s:33:\"post-featured-image/style.min.css\";i:304;s:34:\"post-navigation-link/style-rtl.css\";i:305;s:38:\"post-navigation-link/style-rtl.min.css\";i:306;s:30:\"post-navigation-link/style.css\";i:307;s:34:\"post-navigation-link/style.min.css\";i:308;s:28:\"post-template/editor-rtl.css\";i:309;s:32:\"post-template/editor-rtl.min.css\";i:310;s:24:\"post-template/editor.css\";i:311;s:28:\"post-template/editor.min.css\";i:312;s:27:\"post-template/style-rtl.css\";i:313;s:31:\"post-template/style-rtl.min.css\";i:314;s:23:\"post-template/style.css\";i:315;s:27:\"post-template/style.min.css\";i:316;s:24:\"post-terms/style-rtl.css\";i:317;s:28:\"post-terms/style-rtl.min.css\";i:318;s:20:\"post-terms/style.css\";i:319;s:24:\"post-terms/style.min.css\";i:320;s:24:\"post-title/style-rtl.css\";i:321;s:28:\"post-title/style-rtl.min.css\";i:322;s:20:\"post-title/style.css\";i:323;s:24:\"post-title/style.min.css\";i:324;s:26:\"preformatted/style-rtl.css\";i:325;s:30:\"preformatted/style-rtl.min.css\";i:326;s:22:\"preformatted/style.css\";i:327;s:26:\"preformatted/style.min.css\";i:328;s:24:\"pullquote/editor-rtl.css\";i:329;s:28:\"pullquote/editor-rtl.min.css\";i:330;s:20:\"pullquote/editor.css\";i:331;s:24:\"pullquote/editor.min.css\";i:332;s:23:\"pullquote/style-rtl.css\";i:333;s:27:\"pullquote/style-rtl.min.css\";i:334;s:19:\"pullquote/style.css\";i:335;s:23:\"pullquote/style.min.css\";i:336;s:23:\"pullquote/theme-rtl.css\";i:337;s:27:\"pullquote/theme-rtl.min.css\";i:338;s:19:\"pullquote/theme.css\";i:339;s:23:\"pullquote/theme.min.css\";i:340;s:39:\"query-pagination-numbers/editor-rtl.css\";i:341;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:342;s:35:\"query-pagination-numbers/editor.css\";i:343;s:39:\"query-pagination-numbers/editor.min.css\";i:344;s:31:\"query-pagination/editor-rtl.css\";i:345;s:35:\"query-pagination/editor-rtl.min.css\";i:346;s:27:\"query-pagination/editor.css\";i:347;s:31:\"query-pagination/editor.min.css\";i:348;s:30:\"query-pagination/style-rtl.css\";i:349;s:34:\"query-pagination/style-rtl.min.css\";i:350;s:26:\"query-pagination/style.css\";i:351;s:30:\"query-pagination/style.min.css\";i:352;s:25:\"query-title/style-rtl.css\";i:353;s:29:\"query-title/style-rtl.min.css\";i:354;s:21:\"query-title/style.css\";i:355;s:25:\"query-title/style.min.css\";i:356;s:20:\"query/editor-rtl.css\";i:357;s:24:\"query/editor-rtl.min.css\";i:358;s:16:\"query/editor.css\";i:359;s:20:\"query/editor.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'), +(122,'_transient_doing_cron','1721248542.6399440765380859375000','yes'), +(123,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.6.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.6-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.6\";s:7:\"version\";s:3:\"6.6\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.6.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.6-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.6\";s:7:\"version\";s:3:\"6.6\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1721245689;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'), +(124,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1721245689;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}}','no'), +(128,'_site_transient_timeout_browser_3803008dfd0b0638bddde49055bbe8a0','1721771774','no'), +(129,'_site_transient_browser_3803008dfd0b0638bddde49055bbe8a0','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"127.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'), +(130,'_site_transient_timeout_php_check_62d1f4c0457512909e21fe156d22a938','1721771775','no'), +(131,'_site_transient_php_check_62d1f4c0457512909e21fe156d22a938','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'), +(132,'can_compress_scripts','0','yes'), +(145,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'), +(146,'recently_activated','a:0:{}','yes'), +(149,'theme_mods_twentytwentyfour','a:4:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721167803;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}s:19:\"wp_classic_sidebars\";a:5:{s:13:\"right-sidebar\";a:11:{s:4:\"name\";s:13:\"Right Sidebar\";s:2:\"id\";s:13:\"right-sidebar\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"
\";s:12:\"after_widget\";s:10:\"
\";s:12:\"before_title\";s:25:\"

\";s:11:\"after_title\";s:5:\"

\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:10:\"footer-one\";a:11:{s:4:\"name\";s:10:\"Footer One\";s:2:\"id\";s:10:\"footer-one\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"
\";s:12:\"after_widget\";s:10:\"
\";s:12:\"before_title\";s:25:\"

\";s:11:\"after_title\";s:5:\"

\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:10:\"footer-two\";a:11:{s:4:\"name\";s:10:\"Footer Two\";s:2:\"id\";s:10:\"footer-two\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"
\";s:12:\"after_widget\";s:10:\"
\";s:12:\"before_title\";s:25:\"

\";s:11:\"after_title\";s:5:\"

\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:12:\"footer-three\";a:11:{s:4:\"name\";s:12:\"Footer Three\";s:2:\"id\";s:12:\"footer-three\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"
\";s:12:\"after_widget\";s:10:\"
\";s:12:\"before_title\";s:25:\"

\";s:11:\"after_title\";s:5:\"

\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:11:\"footer-four\";a:11:{s:4:\"name\";s:11:\"Footer Four\";s:2:\"id\";s:11:\"footer-four\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"
\";s:12:\"after_widget\";s:10:\"
\";s:12:\"before_title\";s:25:\"

\";s:11:\"after_title\";s:5:\"

\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'), +(150,'current_theme','Twenty Twenty-Four','yes'), +(151,'theme_mods_astra','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:3;s:11:\"mobile_menu\";i:4;s:14:\"secondary_menu\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:10;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721170378;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}}','no'), +(152,'theme_switched','','yes'), +(154,'_transient_timeout_astra-theme-cron-test-ok','1721171407','no'), +(155,'_transient_astra-theme-cron-test-ok','1','no'), +(167,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:5;}}','yes'), +(168,'site_logo','10','yes'), +(169,'astra-color-palettes','a:4:{s:14:\"currentPalette\";s:9:\"palette_3\";s:8:\"palettes\";a:3:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#046bd2\";i:1;s:7:\"#045cb4\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#F0F5FA\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1D5DB\";i:7;s:7:\"#111111\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#E7F6FF\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1DAE5\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#4a0d66\";i:1;s:7:\"#0060df\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#ededf0\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#f0f0f4\";i:7;s:7:\"#0D0614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:10:{s:8:\"preset_1\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#E7F6FF\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1DAE5\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}s:8:\"preset_2\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#F2F0FE\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D8D8F5\";i:7;s:7:\"#0D0614\";i:8;s:7:\"#222222\";}s:8:\"preset_3\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFEDE6\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#FFD1BF\";i:7;s:7:\"#140609\";i:8;s:7:\"#222222\";}s:8:\"preset_4\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#EDFBE2\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D5EAD8\";i:7;s:7:\"#0C1406\";i:8;s:7:\"#222222\";}s:8:\"preset_5\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FAF5E5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F0E6C5\";i:7;s:7:\"#141004\";i:8;s:7:\"#222222\";}s:8:\"preset_6\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FCEEF5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#FAD8E9\";i:7;s:7:\"#140610\";i:8;s:7:\"#222222\";}s:8:\"preset_7\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#EDF6EE\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D4F3D7\";i:7;s:7:\"#06140C\";i:8;s:7:\"#222222\";}s:8:\"preset_8\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FEF9E1\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F9F0C8\";i:7;s:7:\"#141006\";i:8;s:7:\"#222222\";}s:8:\"preset_9\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FEF1E4\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#E5D7D1\";i:7;s:7:\"#140B06\";i:8;s:7:\"#222222\";}s:9:\"preset_10\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#F6F6F6\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F1F0F0\";i:7;s:7:\"#232529\";i:8;s:7:\"#222222\";}}s:4:\"flag\";b:0;}','yes'), +(170,'astra-typography-presets','typo-preset-04','yes'), +(172,'astra-settings','a:35:{s:50:\"ast-callback-notice-header-transparent-header-logo\";s:0:\"\";s:55:\"ast-callback-notice-header-transparent-header-logo-link\";s:0:\"\";s:22:\"ast-header-retina-logo\";s:0:\"\";s:18:\"mobile-header-logo\";s:0:\"\";s:51:\"ast-callback-notice-header-transparent-meta-enabled\";s:0:\"\";s:55:\"ast-callback-notice-header-transparent-header-meta-link\";s:0:\"\";s:23:\"transparent-header-logo\";s:0:\"\";s:30:\"transparent-header-retina-logo\";s:0:\"\";s:22:\"is_theme_queue_running\";b:0;s:18:\"theme-auto-version\";s:5:\"4.7.3\";s:32:\"ast-header-responsive-logo-width\";a:3:{s:7:\"desktop\";i:133;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"header-desktop-items\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:1:{i:0;s:4:\"logo\";}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:0:{}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:1:{i:0;s:6:\"menu-1\";}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:0:{}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:1;}s:19:\"header-preset-style\";s:8:\"preset_4\";s:19:\"header-mobile-items\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:2:{i:0;s:6:\"search\";i:1;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:0;}s:20:\"hba-header-separator\";s:1:\"0\";s:19:\"header-button1-text\";s:7:\"Sign up\";s:13:\"header-html-1\";s:22:\"Log in\";s:26:\"header-menu1-submenu-width\";s:0:\"\";s:19:\"button-preset-style\";s:9:\"button_03\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:20;s:6:\"bottom\";i:10;s:4:\"left\";i:20;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"theme-button-border-group-border-size\";a:4:{s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;}s:20:\"button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:30;s:5:\"right\";i:30;s:6:\"bottom\";i:30;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"secondary-button-preset-style\";s:9:\"button_03\";s:30:\"secondary-theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:20;s:6:\"bottom\";i:10;s:4:\"left\";i:20;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:47:\"secondary-theme-button-border-group-border-size\";a:4:{s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;}s:30:\"secondary-button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:30;s:5:\"right\";i:30;s:6:\"bottom\";i:30;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"site-content-style\";s:5:\"boxed\";s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"transparent-header-enable\";b:0;s:29:\"transparent-header-on-devices\";s:6:\"mobile\";s:26:\"different-transparent-logo\";b:0;s:35:\"title_tagline-visibility-responsive\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:32:\"header-menu1-submenu-item-border\";b:0;s:36:\"header-mobile-menu-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:11:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:5:\"color\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}}','yes'), +(189,'astra_partials_config_cache','a:2:{s:8:\"settings\";a:1003:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:1:{i:0;s:4:\"logo\";}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:0:{}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:1:{i:0;s:6:\"menu-1\";}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:0:{}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:8:\"preset_4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:2:{i:0;s:6:\"search\";i:1;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:9:\"button_03\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:20;s:6:\"bottom\";i:10;s:4:\"left\";i:20;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:30;s:5:\"right\";i:30;s:6:\"bottom\";i:30;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[secondary-button-preset-style]\";a:4:{s:7:\"default\";s:9:\"button_03\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[secondary-theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[secondary-theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[secondary-theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[secondary-theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:66:\"astra-settings[secondary-theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[secondary-button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[secondary-button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[secondary-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[secondary-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:20;s:6:\"bottom\";i:10;s:4:\"left\";i:20;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:63:\"astra-settings[secondary-theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:30;s:5:\"right\";i:30;s:6:\"bottom\";i:30;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"section-secondary-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[narrow-container-max-width]\";a:4:{s:7:\"default\";i:750;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:7:\"default\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:22:\"sanitize_logo_svg_icon\";}}s:39:\"astra-settings[logo-svg-site-title-gap]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:1:\"5\";s:6:\"tablet\";s:1:\"5\";s:6:\"mobile\";s:1:\"5\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:133;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[logo-svg-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[blog-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[blog-layout]\";a:4:{s:7:\"default\";s:13:\"blog-layout-4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[blog-post-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[archive-post-content-structure-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:5:{i:0;s:5:\"image\";i:1;s:8:\"category\";i:2;s:5:\"title\";i:3;s:10:\"title-meta\";i:4;s:7:\"excerpt\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-meta-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[blog-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:46:\"astra-settings[blog-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[blog-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-hover-effect]\";a:4:{s:7:\"default\";s:7:\"zoom-in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[blog-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[blog-post-color-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[post-card-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[post-card-border-radius]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:6;s:5:\"right\";i:6;s:6:\"bottom\";i:6;s:4:\"left\";i:6;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[blog-post-meta-divider-type]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[blog-meta-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[single-content-images-shadow]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-blog-single-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[single-post-outside-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[single-post-inside-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-sticky-sidebar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-sidebar-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[ast-site-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[surface-colors-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-site-layout-button-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:1:{s:7:\"palette\";a:9:{i:0;s:7:\"#046bd2\";i:1;s:7:\"#045cb4\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#F0F5FA\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1D5DB\";i:7;s:7:\"#111111\";i:8;s:7:\"#111111\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:4:{s:14:\"currentPalette\";s:9:\"palette_3\";s:8:\"palettes\";a:3:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#046bd2\";i:1;s:7:\"#045cb4\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#F0F5FA\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1D5DB\";i:7;s:7:\"#111111\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#E7F6FF\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1DAE5\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#4a0d66\";i:1;s:7:\"#0060df\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#ededf0\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#f0f0f4\";i:7;s:7:\"#0D0614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:10:{s:8:\"preset_1\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#E7F6FF\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1DAE5\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}s:8:\"preset_2\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#F2F0FE\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D8D8F5\";i:7;s:7:\"#0D0614\";i:8;s:7:\"#222222\";}s:8:\"preset_3\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFEDE6\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#FFD1BF\";i:7;s:7:\"#140609\";i:8;s:7:\"#222222\";}s:8:\"preset_4\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#EDFBE2\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D5EAD8\";i:7;s:7:\"#0C1406\";i:8;s:7:\"#222222\";}s:8:\"preset_5\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FAF5E5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F0E6C5\";i:7;s:7:\"#141004\";i:8;s:7:\"#222222\";}s:8:\"preset_6\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FCEEF5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#FAD8E9\";i:7;s:7:\"#140610\";i:8;s:7:\"#222222\";}s:8:\"preset_7\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#EDF6EE\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D4F3D7\";i:7;s:7:\"#06140C\";i:8;s:7:\"#222222\";}s:8:\"preset_8\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FEF9E1\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F9F0C8\";i:7;s:7:\"#141006\";i:8;s:7:\"#222222\";}s:8:\"preset_9\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FEF1E4\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#E5D7D1\";i:7;s:7:\"#140B06\";i:8;s:7:\"#222222\";}s:9:\"preset_10\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#F6F6F6\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F1F0F0\";i:7;s:7:\"#232529\";i:8;s:7:\"#222222\";}}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[theme-color-divider-reset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[base-link-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[border-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-6)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[ast-blog-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[font-size-post-meta]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-size-post-tax]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:14;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-body-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-body-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.65\";s:16:\"line-height-unit\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[ast-headings-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-headings-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h1-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h2-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h3-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h4-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h5-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h6-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[wp-blocks-ui]\";a:4:{s:7:\"default\";s:7:\"comfort\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[wp-blocks-global-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[wp-blocks-ui-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:33:\"comments-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[comments-single-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-comments-area]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[comments-box-placement]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[comments-box-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[comment-form-position]\";a:4:{s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[ast-sub-section-comments-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";i:2;s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[ast-sub-section-comments-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:36;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h2]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:24;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h3]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h4]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:14:\"typo-preset-04\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"narrow-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-sidebar-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-post-title\";i:1;s:28:\"ast-dynamic-single-post-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-post-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-post-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-post-metadata]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-post-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-post-elements-gap]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[ast-dynamic-single-post-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-page-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-content-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-page-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-page-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-page-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-page-image\";i:1;s:29:\"ast-dynamic-single-page-title\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-page-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-page-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-page-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-page-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-page-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-page-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-page-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-page-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-page-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-page-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-page-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:76:\"astra-settings[ast-dynamic-single-page-disable-structure-meta-on-front-page]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"ast-dynamic-single-page-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-single-page-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[archive-post-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"ast-dynamic-archive-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-archive-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[ast-dynamic-archive-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-archive-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-archive-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:30:\"ast-dynamic-archive-post-title\";i:1;s:36:\"ast-dynamic-archive-post-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-post-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-archive-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-archive-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-archive-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[ast-dynamic-archive-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-on-blog]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-search-page-title-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-search-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-search-page-title-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[section-search-page-title-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-search-page-title-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:31:\"section-search-page-title-title\";i:1;s:36:\"section-search-page-title-breadcrumb\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-custom-title]\";a:4:{s:7:\"default\";s:19:\"Search Results for:\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[section-search-page-title-found-custom-description]\";a:4:{s:7:\"default\";s:44:\"Here are the search results for your search.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-not-found-custom-description]\";a:4:{s:7:\"default\";s:85:\"Sorry, but we could not find anything related to your search terms. Please try again.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-search-page-title-horizontal-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[section-search-page-title-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[section-search-page-title-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[section-search-page-title-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[section-search-page-title-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:59:\"astra-settings[section-search-page-title-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:57:\"astra-settings[section-search-page-title-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:32;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-search-page-title-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[ast-search-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[ast-search-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-results-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-search-results-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-search-live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-search-live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"related-posts-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-image-ratio-type]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:55:\"astra-settings[related-posts-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:60:\"astra-settings[related-posts-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[related-posts-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-category-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-tag-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-box-placement]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-outside-location]\";a:4:{s:7:\"default\";s:5:\"above\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.5\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"26\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[ast-sub-section-related-posts-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";d:2.5;s:5:\"right\";d:2.5;s:6:\"bottom\";d:2.5;s:4:\"left\";d:2.5;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[ast-sub-section-related-posts-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[transparent-header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hba-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hbb-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-header-disable-404-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-disable-search-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-disable-archive-pages]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:6:\"mobile\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-buttons-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-button-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[breadcrumb-position-none-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:49:\"astra-settings[breadcrumb-disable-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-color-section-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[scroll-to-top-enable]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[scroll-to-top-icon-position]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[scroll-to-top-icon-size]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[scroll-on-top-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[scroll-on-top-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[scroll-to-top-icon-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[scroll-to-top-icon-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:42:\"astra-settings[scroll-to-top-icon-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:45:\"astra-settings[scroll-to-top-icon-h-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"section-scroll-to-top-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[enable-scroll-to-top-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[secondary-button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[secondary-font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[secondary-font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[secondary-font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[secondary-font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:7:\"Sign up\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Log in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:34:\"http://localhost:8080/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:11:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:5:\"color\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-4)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-4)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:7:\"#e6e6e6\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:35:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:8341;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:8341;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:8341;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:8341;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8341;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8341;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:8385;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}','no'), +(194,'theme_mods_prime-education','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721170627;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}}}}','no'), +(195,'widget_prime_education_social_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), +(196,'downloaded_font_files','a:30:{s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2\";s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2\";s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2\";s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2\";s:75:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2\";s:75:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2\";s:89:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2\";s:90:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2\";}','no'), +(201,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1721245692;s:7:\"checked\";a:3:{s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.5.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.8.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'), +(204,'_site_transient_timeout_wp_font_collection_url_https://s.w.org/images/fonts/wp-6.5/collections/google-fonts-with-preview.json','1721257402','no'); +INSERT INTO `wp_options` VALUES +(205,'_site_transient_wp_font_collection_url_https://s.w.org/images/fonts/wp-6.5/collections/google-fonts-with-preview.json','a:1:{s:13:\"font_families\";a:1595:{i:0;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"ABeeZee\";s:10:\"fontFamily\";s:19:\"ABeeZee, sans-serif\";s:4:\"slug\";s:7:\"abeezee\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6teukbcHCpE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"ABeeZee\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/abeezee/abeezee-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCkkJUCGpG-GQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"ABeeZee\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/abeezee/abeezee-400-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/abeezee/abeezee.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"ADLaM Display\";s:10:\"fontFamily\";s:26:\"\"ADLaM Display\", system-ui\";s:4:\"slug\";s:13:\"adlam-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/adlamdisplay/v1/KFOhCnGXkPOLlhx6jD8_b1ZECsTYkYBPY3o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"ADLaM Display\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/adlam-display/adlam-display-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/adlam-display/adlam-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:2;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"AR One Sans\";s:10:\"fontFamily\";s:25:\"\"AR One Sans\", sans-serif\";s:4:\"slug\";s:11:\"ar-one-sans\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWn_9DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWk39DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWqH6DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWpj6DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:3;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Abel\";s:10:\"fontFamily\";s:16:\"Abel, sans-serif\";s:4:\"slug\";s:4:\"abel\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6V1LPJp6qGI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Abel\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/abel/abel-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/abel/abel.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:4;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Abhaya Libre\";s:10:\"fontFamily\";s:21:\"\"Abhaya Libre\", serif\";s:4:\"slug\";s:12:\"abhaya-libre\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEgfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Abhaya Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/abhaya-libre/abhaya-libre-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryr9xI6oYtBA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Abhaya Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/abhaya-libre/abhaya-libre-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yr9xI6oYtBA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Abhaya Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/abhaya-libre/abhaya-libre-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyr9xI6oYtBA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Abhaya Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/abhaya-libre/abhaya-libre-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yr9xI6oYtBA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Abhaya Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/abhaya-libre/abhaya-libre-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/abhaya-libre/abhaya-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:5;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Aboreto\";s:10:\"fontFamily\";s:18:\"Aboreto, system-ui\";s:4:\"slug\";s:7:\"aboreto\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKHeA2yuxSY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Aboreto\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/aboreto/aboreto-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/aboreto/aboreto.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:6;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Abril Fatface\";s:10:\"fontFamily\";s:26:\"\"Abril Fatface\", system-ui\";s:4:\"slug\";s:13:\"abril-fatface\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/abrilfatface/v23/zOL64pLDlL1D99S8g8PtiKchm-VsjOLhZBY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Abril Fatface\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/abril-fatface/abril-fatface-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/abril-fatface/abril-fatface.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:7;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Abyssinica SIL\";s:10:\"fontFamily\";s:23:\"\"Abyssinica SIL\", serif\";s:4:\"slug\";s:14:\"abyssinica-sil\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UcBFOVAXuI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Abyssinica SIL\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/abyssinica-sil/abyssinica-sil-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/abyssinica-sil/abyssinica-sil.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:8;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Aclonica\";s:10:\"fontFamily\";s:20:\"Aclonica, sans-serif\";s:4:\"slug\";s:8:\"aclonica\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/aclonica/v22/K2FyfZJVlfNNSEBXGb7WCI6oBjLz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Aclonica\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/aclonica/aclonica-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/aclonica/aclonica.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:9;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Acme\";s:10:\"fontFamily\";s:16:\"Acme, sans-serif\";s:4:\"slug\";s:4:\"acme\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/acme/v25/RrQfboBx-C5_bxjLb23lzLk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Acme\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/acme/acme-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/acme/acme.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:10;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Actor\";s:10:\"fontFamily\";s:17:\"Actor, sans-serif\";s:4:\"slug\";s:5:\"actor\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ehXygtUMIO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Actor\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/actor/actor-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/actor/actor.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:11;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Adamina\";s:10:\"fontFamily\";s:14:\"Adamina, serif\";s:4:\"slug\";s:7:\"adamina\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-_eETl4Bno.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Adamina\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/adamina/adamina-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/adamina/adamina.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:12;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Advent Pro\";s:10:\"fontFamily\";s:24:\"\"Advent Pro\", sans-serif\";s:4:\"slug\";s:10:\"advent-pro\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPSZoonw1aBA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5ApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5ApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5ApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5ApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJApvQhKBH4C.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Advent Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro-900-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/advent-pro/advent-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:13;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Afacad\";s:10:\"fontFamily\";s:18:\"Afacad, sans-serif\";s:4:\"slug\";s:6:\"afacad\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfhXtWmU08mCgdfM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfiftWmU08mCgdfM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfsvqWmU08mCgdfM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfvLqWmU08mCgdfM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/afacad/v1/6NUI8FKMIQOGaw6ahLYEvBjUVG5Ga92usiM-80KlZfNfuw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/afacad/v1/6NUI8FKMIQOGaw6ahLYEvBjUVG5Ga92ugCM-80KlZfNfuw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/afacad/v1/6NUI8FKMIQOGaw6ahLYEvBjUVG5Ga92ubCQ-80KlZfNfuw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/afacad/v1/6NUI8FKMIQOGaw6ahLYEvBjUVG5Ga92uVSQ-80KlZfNfuw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Afacad\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/afacad/afacad.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:14;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Agbalumo\";s:10:\"fontFamily\";s:19:\"Agbalumo, system-ui\";s:4:\"slug\";s:8:\"agbalumo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/agbalumo/v2/55xvey5uMdT2N37KZcMAirl08KDJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Agbalumo\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/agbalumo/agbalumo-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/agbalumo/agbalumo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:15;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Agdasima\";s:10:\"fontFamily\";s:20:\"Agdasima, sans-serif\";s:4:\"slug\";s:8:\"agdasima\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/agdasima/v4/PN_zRfyxp2f1fUCgAMg_rzjb_-Da.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Agdasima\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/agdasima/agdasima-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/agdasima/v4/PN_0Rfyxp2f1fUCgAPCGgBzW1PzTz2Mi.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Agdasima\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/agdasima/agdasima-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/agdasima/agdasima.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:16;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Aguafina Script\";s:10:\"fontFamily\";s:26:\"\"Aguafina Script\", cursive\";s:4:\"slug\";s:15:\"aguafina-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/aguafinascript/v22/If2QXTv_ZzSxGIO30LemWEOmt1bHr84pgicOrg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Aguafina Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/aguafina-script/aguafina-script-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/aguafina-script/aguafina-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:17;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Akatab\";s:10:\"fontFamily\";s:18:\"Akatab, sans-serif\";s:4:\"slug\";s:6:\"akatab\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/akatab/v7/VuJwdNrK3Z7gqJEPXYz5NIh-YA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akatab\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE3rKXdOaNiaRpFvg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akatab\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE3gKLdOaNiaRpFvg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akatab\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE35KPdOaNiaRpFvg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akatab\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE3-KDdOaNiaRpFvg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akatab\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE33KHdOaNiaRpFvg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akatab\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/akatab/akatab.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:18;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Akaya Kanadaka\";s:10:\"fontFamily\";s:27:\"\"Akaya Kanadaka\", system-ui\";s:4:\"slug\";s:14:\"akaya-kanadaka\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfUS5VBBSSF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Akaya Kanadaka\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/akaya-kanadaka/akaya-kanadaka-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/akaya-kanadaka/akaya-kanadaka.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:19;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Akaya Telivigala\";s:10:\"fontFamily\";s:29:\"\"Akaya Telivigala\", system-ui\";s:4:\"slug\";s:16:\"akaya-telivigala\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdfdsIH0YH8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Akaya Telivigala\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/akaya-telivigala/akaya-telivigala-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/akaya-telivigala/akaya-telivigala.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:20;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Akronim\";s:10:\"fontFamily\";s:18:\"Akronim, system-ui\";s:4:\"slug\";s:7:\"akronim\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gVxkFYN-a8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Akronim\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/akronim/akronim-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/akronim/akronim.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:21;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Akshar\";s:10:\"fontFamily\";s:18:\"Akshar, sans-serif\";s:4:\"slug\";s:6:\"akshar\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9WY94XsnPc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akshar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akshar/akshar-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9WY94XsnPc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akshar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akshar/akshar-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9WY94XsnPc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akshar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akshar/akshar-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9WY94XsnPc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akshar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akshar/akshar-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9WY94XsnPc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Akshar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/akshar/akshar-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/akshar/akshar.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:22;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Aladin\";s:10:\"fontFamily\";s:17:\"Aladin, system-ui\";s:4:\"slug\";s:6:\"aladin\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/aladin/v24/ZgNSjPJFPrvJV5f17Cf4pGT2Ng.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Aladin\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/aladin/aladin-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/aladin/aladin.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:23;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Alata\";s:10:\"fontFamily\";s:17:\"Alata, sans-serif\";s:4:\"slug\";s:5:\"alata\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe_xKcRQEOX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Alata\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/alata/alata-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/alata/alata.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:24;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Alatsi\";s:10:\"fontFamily\";s:18:\"Alatsi, sans-serif\";s:4:\"slug\";s:6:\"alatsi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGGzUHte5fKg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Alatsi\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/alatsi/alatsi-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/alatsi/alatsi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:25;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Albert Sans\";s:10:\"fontFamily\";s:25:\"\"Albert Sans\", sans-serif\";s:4:\"slug\";s:11:\"albert-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_qY32TxAj1g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7of3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74f3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74f3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74f3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74f3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Albert Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:26;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Aldrich\";s:10:\"fontFamily\";s:19:\"Aldrich, sans-serif\";s:4:\"slug\";s:7:\"aldrich\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/aldrich/v21/MCoTzAn-1s3IGyJMZaUS3pP5H_E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Aldrich\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/aldrich/aldrich-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/aldrich/aldrich.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:27;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Alef\";s:10:\"fontFamily\";s:16:\"Alef, sans-serif\";s:4:\"slug\";s:4:\"alef\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjdbC5FxxbU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Alef\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/alef/alef-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5xa2bxii28.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Alef\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/alef/alef-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/alef/alef.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:28;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Alegreya\";s:10:\"fontFamily\";s:15:\"Alegreya, serif\";s:4:\"slug\";s:8:\"alegreya\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI-aCisSGVrw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI-aCisSGVrw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII-aCisSGVrw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII-aCisSGVrw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII-aCisSGVrw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII-aCisSGVrw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qjkySFr9V9.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qjkySFr9V9.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqjkySFr9V9.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqjkySFr9V9.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqjkySFr9V9.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqjkySFr9V9.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Alegreya\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/alegreya/alegreya.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:29;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Alegreya SC\";s:10:\"fontFamily\";s:20:\"\"Alegreya SC\", serif\";s:4:\"slug\";s:11:\"alegreya-sc\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6t05E5abe_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZAbbKe_DGs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rU0Qqu2FXKD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySKqUEGKDBz4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-500-italic.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LU0Qqu2FXKD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SKqUEGKDBz4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-700-italic.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7U0Qqu2FXKD.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SKqUEGKDBz4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-800-italic.svg\";}i:8;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rU0Qqu2FXKD.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SKqUEGKDBz4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alegreya SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sc/alegreya-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:30;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Alegreya Sans\";s:10:\"fontFamily\";s:27:\"\"Alegreya Sans\", sans-serif\";s:4:\"slug\";s:13:\"alegreya-sans\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltvWdShm5bsg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1TpGtLsgu7.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmEh8imdCqxI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92i0VHuxKiBA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3VhnvEVXlm4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tvWdShm5bsg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmEh8imdCqxI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52i0VHuxKiBA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImEh8imdCqxI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2i0VHuxKiBA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmEh8imdCqxI.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-800-normal.svg\";}i:11;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2i0VHuxKiBA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-800-italic.svg\";}i:12;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmEh8imdCqxI.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-900-normal.svg\";}i:13;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2i0VHuxKiBA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Alegreya Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans-900-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans/alegreya-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:31;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Alegreya Sans SC\";s:10:\"fontFamily\";s:30:\"\"Alegreya Sans SC\", sans-serif\";s:4:\"slug\";s:16:\"alegreya-sans-sc\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl9w5FPYtmMg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iFrMYJ_K-4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhMKB6O-51OA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nktv9ixALYs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl9w5FPYtmMg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iFrMYJ_K-4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhMKB6O-51OA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iFrMYJ_K-4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhMKB6O-51OA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iFrMYJ_K-4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-800-normal.svg\";}i:11;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhMKB6O-51OA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-800-italic.svg\";}i:12;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iFrMYJ_K-4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-900-normal.svg\";}i:13;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhMKB6O-51OA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Alegreya Sans SC\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc-900-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/alegreya-sans-sc/alegreya-sans-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:32;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Aleo\";s:10:\"fontFamily\";s:11:\"Aleo, serif\";s:4:\"slug\";s:4:\"aleo\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KJ3G2P4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KL3GmP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KIpGmP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KJ3GmP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KJFGmP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KKpHWP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KKQHWP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KL3HWP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KLeHWP4HI4qCBtJ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WYu_Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WQu-Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WdW-Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WYu-Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_Wbm-Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WVW5Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WWy5Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WQu5Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WSK5Fo8IDQtJbok.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Aleo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo-900-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/aleo/aleo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:33;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Alex Brush\";s:10:\"fontFamily\";s:21:\"\"Alex Brush\", cursive\";s:4:\"slug\";s:10:\"alex-brush\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUf57DtOmCc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alex Brush\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alex-brush/alex-brush-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/alex-brush/alex-brush.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:34;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Alexandria\";s:10:\"fontFamily\";s:22:\"Alexandria, sans-serif\";s:4:\"slug\";s:10:\"alexandria\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Alexandria\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/alexandria/alexandria.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:35;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Alfa Slab One\";s:10:\"fontFamily\";s:26:\"\"Alfa Slab One\", system-ui\";s:4:\"slug\";s:13:\"alfa-slab-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/alfaslabone/v19/6NUQ8FmMKwSEKjnm5-4v-4Jh6dBretWvYmE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alfa Slab One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alfa-slab-one/alfa-slab-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/alfa-slab-one/alfa-slab-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:36;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Alice\";s:10:\"fontFamily\";s:12:\"Alice, serif\";s:4:\"slug\";s:5:\"alice\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcMpA_chzJ0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Alice\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/alice/alice-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/alice/alice.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:37;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Alike\";s:10:\"fontFamily\";s:12:\"Alike, serif\";s:4:\"slug\";s:5:\"alike\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/alike/v21/HI_EiYEYI6BIoEjESZXAQ4-d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Alike\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/alike/alike-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/alike/alike.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:38;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Alike Angular\";s:10:\"fontFamily\";s:22:\"\"Alike Angular\", serif\";s:4:\"slug\";s:13:\"alike-angular\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/alikeangular/v25/3qTrojWunjGQtEBlIcwMbSoI3kY6bB7FKjE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Alike Angular\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/alike-angular/alike-angular-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/alike-angular/alike-angular.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:39;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Alkalami\";s:10:\"fontFamily\";s:15:\"Alkalami, serif\";s:4:\"slug\";s:8:\"alkalami\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eOw8BMuvhH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Alkalami\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/alkalami/alkalami-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/alkalami/alkalami.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:40;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Alkatra\";s:10:\"fontFamily\";s:18:\"Alkatra, system-ui\";s:4:\"slug\";s:7:\"alkatra\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cKrNDVemxE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Alkatra\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/alkatra/alkatra-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cKrNDVemxE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Alkatra\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/alkatra/alkatra-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcKrNDVemxE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Alkatra\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/alkatra/alkatra-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcKrNDVemxE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Alkatra\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/alkatra/alkatra-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/alkatra/alkatra.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:41;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Allan\";s:10:\"fontFamily\";s:16:\"Allan, system-ui\";s:4:\"slug\";s:5:\"allan\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/allan/v24/ea8XadU7WuTxEtbzP9SF8nZE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Allan\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/allan/allan-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/allan/v24/ea8aadU7WuTxEu5KEPCI2WpNgEKU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Allan\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/allan/allan-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/allan/allan.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:42;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Allerta\";s:10:\"fontFamily\";s:19:\"Allerta, sans-serif\";s:4:\"slug\";s:7:\"allerta\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnQdSQqO5uY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Allerta\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/allerta/allerta-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/allerta/allerta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:43;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Allerta Stencil\";s:10:\"fontFamily\";s:29:\"\"Allerta Stencil\", sans-serif\";s:4:\"slug\";s:15:\"allerta-stencil\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/allertastencil/v22/HTx0L209KT-LmIE9N7OR6eiycOeF_jz313DuvQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Allerta Stencil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/allerta-stencil/allerta-stencil-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/allerta-stencil/allerta-stencil.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:44;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Allison\";s:10:\"fontFamily\";s:16:\"Allison, cursive\";s:4:\"slug\";s:7:\"allison\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/allison/v11/X7nl4b88AP2nkbvZOCOQ4MTgAgk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Allison\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/allison/allison-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/allison/allison.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:45;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Allura\";s:10:\"fontFamily\";s:15:\"Allura, cursive\";s:4:\"slug\";s:6:\"allura\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/allura/v21/9oRPNYsQpS4zjuAPiQIXPtrrGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Allura\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/allura/allura-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/allura/allura.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:46;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Almarai\";s:10:\"fontFamily\";s:19:\"Almarai, sans-serif\";s:4:\"slug\";s:7:\"almarai\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhn2coq72sXg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Almarai\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/almarai/almarai-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1-PonC3vqc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Almarai\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/almarai/almarai-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghn2coq72sXg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Almarai\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/almarai/almarai-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhn2coq72sXg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Almarai\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/almarai/almarai-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/almarai/almarai.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:47;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Almendra\";s:10:\"fontFamily\";s:15:\"Almendra, serif\";s:4:\"slug\";s:8:\"almendra\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/almendra/v26/H4ckBXKAlMnTn0CskyY_wr-wg763.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Almendra\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/almendra/almendra-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/almendra/v26/H4ciBXKAlMnTn0CskxY4yL6Shq63czE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Almendra\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/almendra/almendra-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/almendra/v26/H4cjBXKAlMnTn0Cskx6G7Zu9qKK-aihq.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Almendra\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/almendra/almendra-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/almendra/v26/H4chBXKAlMnTn0CskxY48Ae9oqOcbzhqDtg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Almendra\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/almendra/almendra-700-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/almendra/almendra.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:48;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Almendra Display\";s:10:\"fontFamily\";s:29:\"\"Almendra Display\", system-ui\";s:4:\"slug\";s:16:\"almendra-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/almendradisplay/v31/0FlPVOGWl1Sb4O3tETtADHRRlZhzXSreTyer338.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Almendra Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/almendra-display/almendra-display-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/almendra-display/almendra-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:49;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Almendra SC\";s:10:\"fontFamily\";s:20:\"\"Almendra SC\", serif\";s:4:\"slug\";s:11:\"almendra-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/almendrasc/v29/Iure6Yx284eebowr7hbyTZZMprVA4XQ0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Almendra SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/almendra-sc/almendra-sc-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/almendra-sc/almendra-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:50;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Alumni Sans\";s:10:\"fontFamily\";s:25:\"\"Alumni Sans\", sans-serif\";s:4:\"slug\";s:11:\"alumni-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQrVsJ3C8qng.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Alumni Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans/alumni-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:51;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Alumni Sans Collegiate One\";s:10:\"fontFamily\";s:40:\"\"Alumni Sans Collegiate One\", sans-serif\";s:4:\"slug\";s:26:\"alumni-sans-collegiate-one\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/alumnisanscollegiateone/v5/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdfyDiPw2ta.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Alumni Sans Collegiate One\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-collegiate-one/alumni-sans-collegiate-one-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/alumnisanscollegiateone/v5/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjmtxntaDFU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Alumni Sans Collegiate One\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-collegiate-one/alumni-sans-collegiate-one-400-italic.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-collegiate-one/alumni-sans-collegiate-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:52;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Alumni Sans Inline One\";s:10:\"fontFamily\";s:35:\"\"Alumni Sans Inline One\", system-ui\";s:4:\"slug\";s:22:\"alumni-sans-inline-one\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/alumnisansinlineone/v5/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3UZcr7xbYw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Alumni Sans Inline One\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-inline-one/alumni-sans-inline-one-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/alumnisansinlineone/v5/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:22:\"Alumni Sans Inline One\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-inline-one/alumni-sans-inline-one-400-italic.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-inline-one/alumni-sans-inline-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:53;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Alumni Sans Pinstripe\";s:10:\"fontFamily\";s:35:\"\"Alumni Sans Pinstripe\", sans-serif\";s:4:\"slug\";s:21:\"alumni-sans-pinstripe\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/alumnisanspinstripe/v6/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezZ7VIpcDA5w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Alumni Sans Pinstripe\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-pinstripe/alumni-sans-pinstripe-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/alumnisanspinstripe/v6/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Jh8XQ5_cY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Alumni Sans Pinstripe\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-pinstripe/alumni-sans-pinstripe-400-italic.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/alumni-sans-pinstripe/alumni-sans-pinstripe.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:54;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Amarante\";s:10:\"fontFamily\";s:19:\"Amarante, system-ui\";s:4:\"slug\";s:8:\"amarante\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/amarante/v28/xMQXuF1KTa6EvGx9bq-yC3rAmD-b.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Amarante\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/amarante/amarante-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/amarante/amarante.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:55;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Amaranth\";s:10:\"fontFamily\";s:20:\"Amaranth, sans-serif\";s:4:\"slug\";s:8:\"amaranth\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnHF9GqwnzW.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Amaranth\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/amaranth/amaranth-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdCIx2zWD4I.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Amaranth\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/amaranth/amaranth-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWn6WDfFpuc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Amaranth\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/amaranth/amaranth-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42H9E4ucRY8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Amaranth\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/amaranth/amaranth-700-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/amaranth/amaranth.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:56;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Amatic SC\";s:10:\"fontFamily\";s:20:\"\"Amatic SC\", cursive\";s:4:\"slug\";s:9:\"amatic-sc\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/amaticsc/v26/TUZyzwprpvBS1izr_vO0CO6ecZQf1A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Amatic SC\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/amatic-sc/amatic-sc-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/amaticsc/v26/TUZ3zwprpvBS1izr_vOMscG6fL8D3WTy-A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Amatic SC\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/amatic-sc/amatic-sc-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/amatic-sc/amatic-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:57;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Amethysta\";s:10:\"fontFamily\";s:16:\"Amethysta, serif\";s:4:\"slug\";s:9:\"amethysta\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIHTWCBl0O8Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Amethysta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/amethysta/amethysta-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/amethysta/amethysta.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:58;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Amiko\";s:10:\"fontFamily\";s:17:\"Amiko, sans-serif\";s:4:\"slug\";s:5:\"amiko\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqgc17MMZgJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amiko\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiko/amiko-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrBGoQAUco5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amiko\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiko/amiko-600-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrBGoQAUco5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amiko\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiko/amiko-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/amiko/amiko.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:59;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Amiri\";s:10:\"fontFamily\";s:12:\"Amiri, serif\";s:4:\"slug\";s:5:\"amiri\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUsvrIw74NL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amiri\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiri/amiri-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLMS6pNLAjk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Amiri\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiri/amiri-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amiri\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiri/amiri-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zp5gHjAavCA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Amiri\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amiri/amiri-700-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/amiri/amiri.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:60;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Amiri Quran\";s:10:\"fontFamily\";s:20:\"\"Amiri Quran\", serif\";s:4:\"slug\";s:11:\"amiri-quran\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/amiriquran/v14/_Xmo-Hk0rD6DbUL4_vH8Zq5o7Cycsu-2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Amiri Quran\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/amiri-quran/amiri-quran-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/amiri-quran/amiri-quran.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:61;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Amita\";s:10:\"fontFamily\";s:14:\"Amita, cursive\";s:4:\"slug\";s:5:\"amita\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/amita/v18/HhyaU5si9Om7PQlqAfSKEZZL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amita\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amita/amita-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/amita/v18/HhyXU5si9Om7PTHTLtCHOopCTKkI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Amita\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/amita/amita-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/amita/amita.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:62;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Anaheim\";s:10:\"fontFamily\";s:19:\"Anaheim, sans-serif\";s:4:\"slug\";s:7:\"anaheim\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UHUEE5eK_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anaheim\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anaheim/anaheim-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/anaheim/anaheim.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:63;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Andada Pro\";s:10:\"fontFamily\";s:19:\"\"Andada Pro\", serif\";s:4:\"slug\";s:10:\"andada-pro\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8ZFLzvIt2S.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8ZFLzvIt2S.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8ZFLzvIt2S.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8ZFLzvIt2S.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8ZFLzvIt2S.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHr3NJ82Stjw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHr3NJ82Stjw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-500-italic.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHr3NJ82Stjw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHr3NJ82Stjw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-700-italic.svg\";}i:9;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHr3NJ82Stjw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Andada Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro-800-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/andada-pro/andada-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:64;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Andika\";s:10:\"fontFamily\";s:18:\"Andika, sans-serif\";s:4:\"slug\";s:6:\"andika\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/andika/v25/mem_Ya6iyW-LwqgAaLwRWrwGVA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Andika\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/andika/andika-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/andika/v25/mem9Ya6iyW-Lwqgwb7YQeLkWVNBt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Andika\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/andika/andika-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/andika/v25/mem8Ya6iyW-Lwqg40ZM1V5caXcl0Aw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Andika\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/andika/andika-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/andika/v25/mem6Ya6iyW-Lwqgwb46pV50bf8xkA76a.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Andika\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/andika/andika-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/andika/andika.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:65;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Anek Bangla\";s:10:\"fontFamily\";s:25:\"\"Anek Bangla\", sans-serif\";s:4:\"slug\";s:11:\"anek-bangla\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anekbangla/v5/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIoIg56yyvt0.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/anek-bangla/anek-bangla.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:66;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Anek Devanagari\";s:10:\"fontFamily\";s:29:\"\"Anek Devanagari\", sans-serif\";s:4:\"slug\";s:15:\"anek-devanagari\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9iFk0LjZ7E.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Anek Devanagari\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari-800-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/anek-devanagari/anek-devanagari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:67;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Anek Gujarati\";s:10:\"fontFamily\";s:27:\"\"Anek Gujarati\", sans-serif\";s:4:\"slug\";s:13:\"anek-gujarati\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7xkKgB7Lm7g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gujarati\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati-800-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/anek-gujarati/anek-gujarati.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:68;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Anek Gurmukhi\";s:10:\"fontFamily\";s:27:\"\"Anek Gurmukhi\", sans-serif\";s:4:\"slug\";s:13:\"anek-gurmukhi\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpWa41H6DjbA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anek Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi-800-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/anek-gurmukhi/anek-gurmukhi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:69;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Anek Kannada\";s:10:\"fontFamily\";s:26:\"\"Anek Kannada\", sans-serif\";s:4:\"slug\";s:12:\"anek-kannada\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAuhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQuhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQuhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQuhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQuhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFguhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFguhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/anekkannada/v5/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFguhVReA1oef.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Anek Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/anek-kannada/anek-kannada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:70;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Anek Latin\";s:10:\"fontFamily\";s:24:\"\"Anek Latin\", sans-serif\";s:4:\"slug\";s:10:\"anek-latin\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/aneklatin/v5/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZLNClWL3kgw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Latin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin-800-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/anek-latin/anek-latin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:71;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Anek Malayalam\";s:10:\"fontFamily\";s:28:\"\"Anek Malayalam\", sans-serif\";s:4:\"slug\";s:14:\"anek-malayalam\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/anekmalayalam/v6/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HM_5PDO71Qs.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Anek Malayalam\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam-800-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/anek-malayalam/anek-malayalam.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:72;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Anek Odia\";s:10:\"fontFamily\";s:23:\"\"Anek Odia\", sans-serif\";s:4:\"slug\";s:9:\"anek-odia\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anekodia/v6/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3jXZAtm_es.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Anek Odia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia-800-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/anek-odia/anek-odia.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:73;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Anek Tamil\";s:10:\"fontFamily\";s:24:\"\"Anek Tamil\", sans-serif\";s:4:\"slug\";s:10:\"anek-tamil\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6rov4oegjOQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Anek Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil-800-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/anek-tamil/anek-tamil.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:74;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Anek Telugu\";s:10:\"fontFamily\";s:25:\"\"Anek Telugu\", sans-serif\";s:4:\"slug\";s:11:\"anek-telugu\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oEiG2ep10_8.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Anek Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/anek-telugu/anek-telugu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:75;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Angkor\";s:10:\"fontFamily\";s:17:\"Angkor, system-ui\";s:4:\"slug\";s:6:\"angkor\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/angkor/v32/H4cmBXyAlsPdnlb-9yw-4Lqggw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Angkor\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/angkor/angkor-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/angkor/angkor.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:76;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Annie Use Your Telescope\";s:10:\"fontFamily\";s:35:\"\"Annie Use Your Telescope\", cursive\";s:4:\"slug\";s:24:\"annie-use-your-telescope\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjkTfB3UUVZA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Annie Use Your Telescope\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/annie-use-your-telescope/annie-use-your-telescope-400-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/annie-use-your-telescope/annie-use-your-telescope.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:77;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Anonymous Pro\";s:10:\"fontFamily\";s:26:\"\"Anonymous Pro\", monospace\";s:4:\"slug\";s:13:\"anonymous-pro\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlk89CH98Ko.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anonymous Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anonymous-pro/anonymous-pro-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl429QP44Kqr2Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Anonymous Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anonymous-pro/anonymous-pro-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CzW7KOywKo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Anonymous Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anonymous-pro/anonymous-pro-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc7YG30KqB9Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Anonymous Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/anonymous-pro/anonymous-pro-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/anonymous-pro/anonymous-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:78;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Antic\";s:10:\"fontFamily\";s:17:\"Antic, sans-serif\";s:4:\"slug\";s:5:\"antic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZOodgzydtk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Antic\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/antic/antic-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/antic/antic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:79;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Antic Didone\";s:10:\"fontFamily\";s:21:\"\"Antic Didone\", serif\";s:4:\"slug\";s:12:\"antic-didone\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDirIsGBGBzCw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Antic Didone\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/antic-didone/antic-didone-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/antic-didone/antic-didone.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:80;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Antic Slab\";s:10:\"fontFamily\";s:19:\"\"Antic Slab\", serif\";s:4:\"slug\";s:10:\"antic-slab\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcdWXW5p5Qo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Antic Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/antic-slab/antic-slab-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/antic-slab/antic-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:81;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Anton\";s:10:\"fontFamily\";s:17:\"Anton, sans-serif\";s:4:\"slug\";s:5:\"anton\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm0Kx8i4gS7lu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Anton\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/anton/anton-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/anton/anton.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:82;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Antonio\";s:10:\"fontFamily\";s:19:\"Antonio, sans-serif\";s:4:\"slug\";s:7:\"antonio\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Antonio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/antonio/antonio.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:83;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Anuphan\";s:10:\"fontFamily\";s:19:\"Anuphan, sans-serif\";s:4:\"slug\";s:7:\"anuphan\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4hGmW927Gu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anuphan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/anuphan/anuphan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:84;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Anybody\";s:10:\"fontFamily\";s:18:\"Anybody, system-ui\";s:4:\"slug\";s:7:\"anybody\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPq8XD_nBPpQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_C3HVfpcHY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Anybody\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/anybody/anybody.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:85;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Aoboshi One\";s:10:\"fontFamily\";s:20:\"\"Aoboshi One\", serif\";s:4:\"slug\";s:11:\"aoboshi-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/aoboshione/v10/Gg8xN5kXaAXtHQrFxwl10ysOBmZX_UEg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Aoboshi One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/aoboshi-one/aoboshi-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/aoboshi-one/aoboshi-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:86;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Arapey\";s:10:\"fontFamily\";s:13:\"Arapey, serif\";s:4:\"slug\";s:6:\"arapey\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6YtAcZkIzeg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Arapey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/arapey/arapey-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdodREcjeo0k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Arapey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/arapey/arapey-400-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/arapey/arapey.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:87;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Arbutus\";s:10:\"fontFamily\";s:14:\"Arbutus, serif\";s:4:\"slug\";s:7:\"arbutus\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/arbutus/v28/NaPYcZ7dG_5J3poob9dtryO8fMU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Arbutus\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/arbutus/arbutus-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/arbutus/arbutus.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:88;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Arbutus Slab\";s:10:\"fontFamily\";s:21:\"\"Arbutus Slab\", serif\";s:4:\"slug\";s:12:\"arbutus-slab\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVbq8dJlaFAQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Arbutus Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/arbutus-slab/arbutus-slab-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/arbutus-slab/arbutus-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:89;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Architects Daughter\";s:10:\"fontFamily\";s:30:\"\"Architects Daughter\", cursive\";s:4:\"slug\";s:19:\"architects-daughter\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfYtq4szgE-Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Architects Daughter\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/architects-daughter/architects-daughter-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/architects-daughter/architects-daughter.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:90;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Archivo\";s:10:\"fontFamily\";s:19:\"Archivo, sans-serif\";s:4:\"slug\";s:7:\"archivo\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp9R1oJ0vyVQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/archivo/v19/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdpBU7iVdxQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Archivo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/archivo/archivo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:91;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Archivo Black\";s:10:\"fontFamily\";s:27:\"\"Archivo Black\", sans-serif\";s:4:\"slug\";s:13:\"archivo-black\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/archivoblack/v21/HTxqL289NzCGg4MzN6KJ7eW6OY6P_x7yx3A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Archivo Black\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/archivo-black/archivo-black-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/archivo-black/archivo-black.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:92;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Archivo Narrow\";s:10:\"fontFamily\";s:28:\"\"Archivo Narrow\", sans-serif\";s:4:\"slug\";s:14:\"archivo-narrow\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKoXOtFCQ76Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKoXOtFCQ76Q.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKoXOtFCQ76Q.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKoXOtFCQ76Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53msNiEr6T6Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53msNiEr6T6Y.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmsNiEr6T6Y.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmsNiEr6T6Y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Archivo Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow-700-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/archivo-narrow/archivo-narrow.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:93;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Are You Serious\";s:10:\"fontFamily\";s:26:\"\"Are You Serious\", cursive\";s:4:\"slug\";s:15:\"are-you-serious\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/areyouserious/v12/ll8kK2GVSSr-PtjQ5nONVcNn4306gD9nCGRayg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Are You Serious\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/are-you-serious/are-you-serious-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/are-you-serious/are-you-serious.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:94;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Aref Ruqaa\";s:10:\"fontFamily\";s:19:\"\"Aref Ruqaa\", serif\";s:4:\"slug\";s:10:\"aref-ruqaa\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIUiVNo5xNY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Aref Ruqaa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/aref-ruqaa/aref-ruqaa-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNcS2N_7Bdk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Aref Ruqaa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/aref-ruqaa/aref-ruqaa-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/aref-ruqaa/aref-ruqaa.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:95;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Aref Ruqaa Ink\";s:10:\"fontFamily\";s:23:\"\"Aref Ruqaa Ink\", serif\";s:4:\"slug\";s:14:\"aref-ruqaa-ink\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/arefruqaaink/v10/1q2fY5WOGUFlt84GTOkP6Kdx72TkVIGpgnxL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Aref Ruqaa Ink\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/aref-ruqaa-ink/aref-ruqaa-ink-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/arefruqaaink/v10/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WkqWBCyxWn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Aref Ruqaa Ink\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/aref-ruqaa-ink/aref-ruqaa-ink-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/aref-ruqaa-ink/aref-ruqaa-ink.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:96;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Arima\";s:10:\"fontFamily\";s:16:\"Arima, system-ui\";s:4:\"slug\";s:5:\"arima\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arima\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arima/arima-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/arima/arima.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:97;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Arimo\";s:10:\"fontFamily\";s:17:\"Arimo, sans-serif\";s:4:\"slug\";s:5:\"arimo\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsAhDAVQI4aA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsAhDAVQI4aA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsAhDAVQI4aA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsAhDAVQI4aA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/arimo/v29/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrBdwcoaKww.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/arimo/v29/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrBdwcoaKww.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/arimo/v29/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrBdwcoaKww.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/arimo/v29/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrBdwcoaKww.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Arimo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo-700-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/arimo/arimo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:98;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Arizonia\";s:10:\"fontFamily\";s:17:\"Arizonia, cursive\";s:4:\"slug\";s:8:\"arizonia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/arizonia/v21/neIIzCemt4A5qa7mv6WDHK06UY30.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Arizonia\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/arizonia/arizonia-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/arizonia/arizonia.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:99;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Armata\";s:10:\"fontFamily\";s:18:\"Armata, sans-serif\";s:4:\"slug\";s:6:\"armata\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9kT53Q2u_mQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Armata\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/armata/armata-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/armata/armata.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:100;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Arsenal\";s:10:\"fontFamily\";s:19:\"Arsenal, sans-serif\";s:4:\"slug\";s:7:\"arsenal\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11rWAewrhXY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Arsenal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/arsenal/arsenal-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cAM4ulXYrtA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Arsenal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/arsenal/arsenal-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeEAmX8yrdk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Arsenal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/arsenal/arsenal-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKmF03vdnKjw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Arsenal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/arsenal/arsenal-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/arsenal/arsenal.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:101;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Artifika\";s:10:\"fontFamily\";s:15:\"Artifika, serif\";s:4:\"slug\";s:8:\"artifika\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wo5jDtreOL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Artifika\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/artifika/artifika-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/artifika/artifika.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:102;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Arvo\";s:10:\"fontFamily\";s:11:\"Arvo, serif\";s:4:\"slug\";s:4:\"arvo\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/arvo/v22/tDbD2oWUg0MKmSUa7Lzr7vs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Arvo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/arvo/arvo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/arvo/v22/tDbN2oWUg0MKqSIQ7Z7u_vvijQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Arvo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/arvo/arvo-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/arvo/v22/tDbM2oWUg0MKoZw1yLHA8vL7lAE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Arvo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/arvo/arvo-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/arvo/v22/tDbO2oWUg0MKqSIoVLHK89D-hAHkGg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Arvo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/arvo/arvo-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/arvo/arvo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:103;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Arya\";s:10:\"fontFamily\";s:16:\"Arya, sans-serif\";s:4:\"slug\";s:4:\"arya\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9UP1-beqdFE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Arya\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/arya/arya-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3bqBaFg3dRE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Arya\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/arya/arya-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/arya/arya.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:104;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Asap\";s:10:\"fontFamily\";s:16:\"Asap, sans-serif\";s:4:\"slug\";s:4:\"asap\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsK2OXoA7Glw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammWggvWl0Qn.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Asap\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asap/asap-900-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/asap/asap.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:105;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Asap Condensed\";s:10:\"fontFamily\";s:28:\"\"Asap Condensed\", sans-serif\";s:4:\"slug\";s:14:\"asap-condensed\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeOYk1Mq3ap.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaExurmapvvM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1HimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-800-normal.svg\";}i:13;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-800-italic.svg\";}i:14;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lBgGqgp-pO.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-900-normal.svg\";}i:15;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1DimuCovpOkXA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Asap Condensed\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/asap-condensed/asap-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:106;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Asar\";s:10:\"fontFamily\";s:11:\"Asar, serif\";s:4:\"slug\";s:4:\"asar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkMQDLlTW6E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asar\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asar/asar-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/asar/asar.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:107;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Asset\";s:10:\"fontFamily\";s:16:\"Asset, system-ui\";s:4:\"slug\";s:5:\"asset\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/asset/v28/SLXGc1na-mM4cWIjRJqExst1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Asset\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/asset/asset-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/asset/asset.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:108;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Assistant\";s:10:\"fontFamily\";s:21:\"Assistant, sans-serif\";s:4:\"slug\";s:9:\"assistant\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/assistant/v19/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Assistant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant-800-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/assistant/assistant.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:109;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Astloch\";s:10:\"fontFamily\";s:18:\"Astloch, system-ui\";s:4:\"slug\";s:7:\"astloch\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9kRzMtkH1Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Astloch\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/astloch/astloch-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MZPA10xLMQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Astloch\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/astloch/astloch-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/astloch/astloch.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:110;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Asul\";s:10:\"fontFamily\";s:16:\"Asul, sans-serif\";s:4:\"slug\";s:4:\"asul\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/asul/v21/VuJ-dNjKxYr46fYFXK78JIg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asul\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asul/asul-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/asul/v21/VuJxdNjKxYr40U8qeKPXOIFneRo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Asul\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/asul/asul-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/asul/asul.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:111;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Athiti\";s:10:\"fontFamily\";s:18:\"Athiti, sans-serif\";s:4:\"slug\";s:6:\"athiti\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Athiti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Athiti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4CRhWCtaiAg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Athiti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Athiti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Athiti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Athiti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/athiti/athiti.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:112;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Atkinson Hyperlegible\";s:10:\"fontFamily\";s:35:\"\"Atkinson Hyperlegible\", sans-serif\";s:4:\"slug\";s:21:\"atkinson-hyperlegible\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE4JgpewSSbQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Atkinson Hyperlegible\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/atkinson-hyperlegible/atkinson-hyperlegible-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055IoWQGCbUWn.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Atkinson Hyperlegible\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/atkinson-hyperlegible/atkinson-hyperlegible-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNdi-OZFy-FA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Atkinson Hyperlegible\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/atkinson-hyperlegible/atkinson-hyperlegible-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWPRlmuFH24.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Atkinson Hyperlegible\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/atkinson-hyperlegible/atkinson-hyperlegible-700-italic.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/atkinson-hyperlegible/atkinson-hyperlegible.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:113;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Atma\";s:10:\"fontFamily\";s:15:\"Atma, system-ui\";s:4:\"slug\";s:4:\"atma\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjI9PvedRkM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Atma\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/atma/atma-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom2tbDj8WIv4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Atma\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/atma/atma-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjI9PvedRkM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Atma\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/atma/atma-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1KjI9PvedRkM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Atma\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/atma/atma-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0KjI9PvedRkM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Atma\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/atma/atma-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/atma/atma.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:114;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Atomic Age\";s:10:\"fontFamily\";s:23:\"\"Atomic Age\", system-ui\";s:4:\"slug\";s:10:\"atomic-age\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Tt9a8GYeA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Atomic Age\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/atomic-age/atomic-age-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/atomic-age/atomic-age.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:115;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Aubrey\";s:10:\"fontFamily\";s:17:\"Aubrey, system-ui\";s:4:\"slug\";s:6:\"aubrey\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vvwNsCxVEgA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Aubrey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/aubrey/aubrey-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/aubrey/aubrey.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:116;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Audiowide\";s:10:\"fontFamily\";s:20:\"Audiowide, system-ui\";s:4:\"slug\";s:9:\"audiowide\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/audiowide/v20/l7gdbjpo0cum0ckerWCtlAXPExpQBw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Audiowide\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/audiowide/audiowide-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/audiowide/audiowide.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:117;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Autour One\";s:10:\"fontFamily\";s:23:\"\"Autour One\", system-ui\";s:4:\"slug\";s:10:\"autour-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5xWVscxdKE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Autour One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/autour-one/autour-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/autour-one/autour-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:118;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Average\";s:10:\"fontFamily\";s:14:\"Average, serif\";s:4:\"slug\";s:7:\"average\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIedwVWytTyk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Average\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/average/average-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/average/average.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:119;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Average Sans\";s:10:\"fontFamily\";s:26:\"\"Average Sans\", sans-serif\";s:4:\"slug\";s:12:\"average-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPANqazVoK4A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Average Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/average-sans/average-sans-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/average-sans/average-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:120;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Averia Gruesa Libre\";s:10:\"fontFamily\";s:32:\"\"Averia Gruesa Libre\", system-ui\";s:4:\"slug\";s:19:\"averia-gruesa-libre\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmyJw0SLRA8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Averia Gruesa Libre\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/averia-gruesa-libre/averia-gruesa-libre-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/averia-gruesa-libre/averia-gruesa-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:121;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Averia Libre\";s:10:\"fontFamily\";s:25:\"\"Averia Libre\", system-ui\";s:4:\"slug\";s:12:\"averia-libre\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtak7t-pQgTw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Averia Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTs2JEwT4Sk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Averia Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiB6PJZ2Xx8w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Averia Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnIRWDh8405.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Averia Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztak7t-pQgTw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Averia Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTs2JEwT4Sk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Averia Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/averia-libre/averia-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:122;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Averia Sans Libre\";s:10:\"fontFamily\";s:30:\"\"Averia Sans Libre\", system-ui\";s:4:\"slug\";s:17:\"averia-sans-libre\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/averiasanslibre/v19/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcVJZP1LmD9.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Averia Sans Libre\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/averiasanslibre/v19/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5LXK3D9qtg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Averia Sans Libre\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/averiasanslibre/v19/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVMGIMYDo_8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Averia Sans Libre\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/averiasanslibre/v19/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoI6C5_8N3k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Averia Sans Libre\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/averiasanslibre/v19/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cVJZP1LmD9.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Averia Sans Libre\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/averiasanslibre/v19/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5LXK3D9qtg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Averia Sans Libre\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre-700-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/averia-sans-libre/averia-sans-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:123;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Averia Serif Libre\";s:10:\"fontFamily\";s:31:\"\"Averia Serif Libre\", system-ui\";s:4:\"slug\";s:18:\"averia-serif-libre\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/averiaseriflibre/v18/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqxKcqdrKvbQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Averia Serif Libre\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/averiaseriflibre/v18/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60rVLe_bXHq.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Averia Serif Libre\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/averiaseriflibre/v18/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-oAGOyYw2fw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Averia Serif Libre\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/averiaseriflibre/v18/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuP64kmf6u2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Averia Serif Libre\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/averiaseriflibre/v18/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qxKcqdrKvbQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Averia Serif Libre\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/averiaseriflibre/v18/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0rVLe_bXHq.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Averia Serif Libre\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre-700-italic.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/averia-serif-libre/averia-serif-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:124;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Azeret Mono\";s:10:\"fontFamily\";s:24:\"\"Azeret Mono\", monospace\";s:4:\"slug\";s:11:\"azeret-mono\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh17aa-5s3AA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLyb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbyb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbyb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbyb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbyb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlryb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlryb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglryb2Z4nAN7J.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Azeret Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/azeret-mono/azeret-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:125;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"B612\";s:10:\"fontFamily\";s:18:\"\"B612\", sans-serif\";s:4:\"slug\";s:5:\"b-612\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jy4GDigUXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"B612\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/b612/b612-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyGRqlQXwdVw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"B612\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/b612/b612-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDWLTXUETuE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"B612\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/b612/b612-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBTFcBXuFb0Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"B612\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/b612/b612-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/b612/b612.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:126;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"B612 Mono\";s:10:\"fontFamily\";s:22:\"\"B612 Mono\", monospace\";s:4:\"slug\";s:10:\"b-612-mono\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/b612mono/v14/kmK_Zq85QVWbN1eW6lJl0gTcquRTtg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"B612 Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/b612-mono/b612-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/b612mono/v14/kmK5Zq85QVWbN1eW6lJV1Q7diOFDtqtf.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"B612 Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/b612-mono/b612-mono-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/b612mono/v14/kmK6Zq85QVWbN1eW6lJdayv4p89Pv7JGSg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"B612 Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/b612-mono/b612-mono-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/b612mono/v14/kmKkZq85QVWbN1eW6lJV1TZkp8VOnbdWSg4x.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"B612 Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/b612-mono/b612-mono-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/b612-mono/b612-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:127;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"BIZ UDGothic\";s:10:\"fontFamily\";s:26:\"\"BIZ UDGothic\", sans-serif\";s:4:\"slug\";s:12:\"biz-udgothic\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKtsAN98z_MbQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"BIZ UDGothic\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/biz-udgothic/biz-udgothic-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ_hTQZMhbaA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"BIZ UDGothic\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/biz-udgothic/biz-udgothic-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/biz-udgothic/biz-udgothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:128;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"BIZ UDMincho\";s:10:\"fontFamily\";s:21:\"\"BIZ UDMincho\", serif\";s:4:\"slug\";s:12:\"biz-udmincho\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1cgT7rcpY8Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"BIZ UDMincho\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/biz-udmincho/biz-udmincho-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfoOFE-IyCrw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"BIZ UDMincho\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/biz-udmincho/biz-udmincho-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/biz-udmincho/biz-udmincho.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:129;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"BIZ UDPGothic\";s:10:\"fontFamily\";s:27:\"\"BIZ UDPGothic\", sans-serif\";s:4:\"slug\";s:13:\"biz-udpgothic\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/bizudpgothic/v10/hES36X5pHAIBjmS84VL0Bue83nAMQWkMUAk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"BIZ UDPGothic\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/biz-udpgothic/biz-udpgothic-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/bizudpgothic/v10/hESq6X5pHAIBjmS84VL0Bue85skjZWQnTABCSQo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"BIZ UDPGothic\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/biz-udpgothic/biz-udpgothic-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/biz-udpgothic/biz-udpgothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:130;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"BIZ UDPMincho\";s:10:\"fontFamily\";s:22:\"\"BIZ UDPMincho\", serif\";s:4:\"slug\";s:13:\"biz-udpmincho\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nh1YtUb0gZk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"BIZ UDPMincho\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/biz-udpmincho/biz-udpmincho-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kUvfnZAy57k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"BIZ UDPMincho\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/biz-udpmincho/biz-udpmincho-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/biz-udpmincho/biz-udpmincho.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:131;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Babylonica\";s:10:\"fontFamily\";s:19:\"Babylonica, cursive\";s:4:\"slug\";s:10:\"babylonica\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/babylonica/v5/5aUw9_i2qxWVCAE2aHjTqDd0-VVMoEw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Babylonica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/babylonica/babylonica-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/babylonica/babylonica.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:132;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Bacasime Antique\";s:10:\"fontFamily\";s:25:\"\"Bacasime Antique\", serif\";s:4:\"slug\";s:16:\"bacasime-antique\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/bacasimeantique/v1/tDbX2pGXkFYEykldjZSrmI6T_XWZOwGtSUrV_BE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Bacasime Antique\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/bacasime-antique/bacasime-antique-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/bacasime-antique/bacasime-antique.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:133;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Bad Script\";s:10:\"fontFamily\";s:21:\"\"Bad Script\", cursive\";s:4:\"slug\";s:10:\"bad-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOkuzd1AZtw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Bad Script\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/bad-script/bad-script-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/bad-script/bad-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:134;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Bagel Fat One\";s:10:\"fontFamily\";s:26:\"\"Bagel Fat One\", system-ui\";s:4:\"slug\";s:13:\"bagel-fat-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/bagelfatone/v1/hYkPPucsQOr5dy02WmQr5Zkd0Btmvv0dSbM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Bagel Fat One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/bagel-fat-one/bagel-fat-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/bagel-fat-one/bagel-fat-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:135;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Bahiana\";s:10:\"fontFamily\";s:18:\"Bahiana, system-ui\";s:4:\"slug\";s:7:\"bahiana\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/bahiana/v23/uU9PCBUV4YenPWJU7xbb3vyHmlI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Bahiana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bahiana/bahiana-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/bahiana/bahiana.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:136;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Bahianita\";s:10:\"fontFamily\";s:20:\"Bahianita, system-ui\";s:4:\"slug\";s:9:\"bahianita\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/bahianita/v21/yYLr0hTb3vuqqsBUgxWtwDvV2NJPcA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Bahianita\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/bahianita/bahianita-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/bahianita/bahianita.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:137;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Bai Jamjuree\";s:10:\"fontFamily\";s:26:\"\"Bai Jamjuree\", sans-serif\";s:4:\"slug\";s:12:\"bai-jamjuree\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePulpA1-yiSgA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpo02S2CgOva.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDulpA1-yiSgA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZo02S2CgOva.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMXMjKm7sp8g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LLub458jGL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHulpA1-yiSgA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJo02S2CgOva.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebulpA1-yiSgA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5o02S2CgOva.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efulpA1-yiSgA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpo02S2CgOva.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bai Jamjuree\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/bai-jamjuree/bai-jamjuree.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:138;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Bakbak One\";s:10:\"fontFamily\";s:23:\"\"Bakbak One\", system-ui\";s:4:\"slug\";s:10:\"bakbak-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/bakbakone/v8/zOL54pXAl6RI-p_ardnuycFuv-hHkOs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Bakbak One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/bakbak-one/bakbak-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/bakbak-one/bakbak-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:139;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ballet\";s:10:\"fontFamily\";s:15:\"Ballet, cursive\";s:4:\"slug\";s:6:\"ballet\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ballet/v27/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ballet\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ballet/ballet-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ballet/ballet.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:140;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Baloo 2\";s:10:\"fontFamily\";s:20:\"\"Baloo 2\", system-ui\";s:4:\"slug\";s:7:\"baloo-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdgazapq9Fat7WcN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Baloo 2\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/baloo-2/baloo-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdgozapq9Fat7WcN.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Baloo 2\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/baloo-2/baloo-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpq9Fat7WcN.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Baloo 2\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/baloo-2/baloo-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpq9Fat7WcN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Baloo 2\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/baloo-2/baloo-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpq9Fat7WcN.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Baloo 2\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/baloo-2/baloo-2-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/baloo-2/baloo-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:141;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Baloo Bhai 2\";s:10:\"fontFamily\";s:25:\"\"Baloo Bhai 2\", system-ui\";s:4:\"slug\";s:12:\"baloo-bhai-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXKCo-jsZzo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Baloo Bhai 2\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhai-2/baloo-bhai-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXKCo-jsZzo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Baloo Bhai 2\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhai-2/baloo-bhai-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXKCo-jsZzo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Baloo Bhai 2\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhai-2/baloo-bhai-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXKCo-jsZzo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Baloo Bhai 2\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhai-2/baloo-bhai-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXKCo-jsZzo.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Baloo Bhai 2\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhai-2/baloo-bhai-2-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhai-2/baloo-bhai-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:142;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Baloo Bhaijaan 2\";s:10:\"fontFamily\";s:29:\"\"Baloo Bhaijaan 2\", system-ui\";s:4:\"slug\";s:16:\"baloo-bhaijaan-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP9L4ppfcyC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Baloo Bhaijaan 2\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP9L4ppfcyC.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Baloo Bhaijaan 2\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP9L4ppfcyC.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Baloo Bhaijaan 2\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP9L4ppfcyC.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Baloo Bhaijaan 2\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP9L4ppfcyC.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Baloo Bhaijaan 2\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-800-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaijaan-2/baloo-bhaijaan-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:143;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Baloo Bhaina 2\";s:10:\"fontFamily\";s:27:\"\"Baloo Bhaina 2\", system-ui\";s:4:\"slug\";s:14:\"baloo-bhaina-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvQPRLYWmZSA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Bhaina 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaina-2/baloo-bhaina-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvQPRLYWmZSA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Bhaina 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaina-2/baloo-bhaina-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvQPRLYWmZSA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Bhaina 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaina-2/baloo-bhaina-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvQPRLYWmZSA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Bhaina 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaina-2/baloo-bhaina-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvQPRLYWmZSA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Bhaina 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaina-2/baloo-bhaina-2-800-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/baloo-bhaina-2/baloo-bhaina-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:144;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Baloo Chettan 2\";s:10:\"fontFamily\";s:28:\"\"Baloo Chettan 2\", system-ui\";s:4:\"slug\";s:15:\"baloo-chettan-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO18eH9xI2gc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Chettan 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-chettan-2/baloo-chettan-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO18eH9xI2gc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Chettan 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-chettan-2/baloo-chettan-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO18eH9xI2gc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Chettan 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-chettan-2/baloo-chettan-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO18eH9xI2gc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Chettan 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-chettan-2/baloo-chettan-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO18eH9xI2gc.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Chettan 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-chettan-2/baloo-chettan-2-800-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/baloo-chettan-2/baloo-chettan-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:145;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Baloo Da 2\";s:10:\"fontFamily\";s:23:\"\"Baloo Da 2\", system-ui\";s:4:\"slug\";s:10:\"baloo-da-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNb55aRa7UE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Baloo Da 2\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/baloo-da-2/baloo-da-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNb55aRa7UE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Baloo Da 2\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/baloo-da-2/baloo-da-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNb55aRa7UE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Baloo Da 2\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/baloo-da-2/baloo-da-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNb55aRa7UE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Baloo Da 2\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/baloo-da-2/baloo-da-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNb55aRa7UE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Baloo Da 2\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/baloo-da-2/baloo-da-2-800-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/baloo-da-2/baloo-da-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:146;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Baloo Paaji 2\";s:10:\"fontFamily\";s:26:\"\"Baloo Paaji 2\", system-ui\";s:4:\"slug\";s:13:\"baloo-paaji-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74f3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Paaji 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-paaji-2/baloo-paaji-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74f3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Paaji 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-paaji-2/baloo-paaji-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Paaji 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-paaji-2/baloo-paaji-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Paaji 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-paaji-2/baloo-paaji-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6If3bRUz1r5t.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Paaji 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-paaji-2/baloo-paaji-2-800-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/baloo-paaji-2/baloo-paaji-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:147;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Baloo Tamma 2\";s:10:\"fontFamily\";s:26:\"\"Baloo Tamma 2\", system-ui\";s:4:\"slug\";s:13:\"baloo-tamma-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/balootamma2/v16/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-xIF71SGC5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Tamma 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-tamma-2/baloo-tamma-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/balootamma2/v16/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-xIF71SGC5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Tamma 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-tamma-2/baloo-tamma-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/balootamma2/v16/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-xIF71SGC5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Tamma 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-tamma-2/baloo-tamma-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/balootamma2/v16/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-xIF71SGC5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Tamma 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-tamma-2/baloo-tamma-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/balootamma2/v16/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-xIF71SGC5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Baloo Tamma 2\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/baloo-tamma-2/baloo-tamma-2-800-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/baloo-tamma-2/baloo-tamma-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:148;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Baloo Tammudu 2\";s:10:\"fontFamily\";s:28:\"\"Baloo Tammudu 2\", system-ui\";s:4:\"slug\";s:15:\"baloo-tammudu-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/balootammudu2/v23/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4cuPZSlGmAA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Tammudu 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-tammudu-2/baloo-tammudu-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/balootammudu2/v23/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4cuPZSlGmAA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Tammudu 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-tammudu-2/baloo-tammudu-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/balootammudu2/v23/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4cuPZSlGmAA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Tammudu 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-tammudu-2/baloo-tammudu-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/balootammudu2/v23/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4cuPZSlGmAA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Tammudu 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-tammudu-2/baloo-tammudu-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/balootammudu2/v23/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4cuPZSlGmAA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Baloo Tammudu 2\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/baloo-tammudu-2/baloo-tammudu-2-800-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/baloo-tammudu-2/baloo-tammudu-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:149;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Baloo Thambi 2\";s:10:\"fontFamily\";s:27:\"\"Baloo Thambi 2\", system-ui\";s:4:\"slug\";s:14:\"baloo-thambi-2\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloothambi2/v17/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzbARG_n4osQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Thambi 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-thambi-2/baloo-thambi-2-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloothambi2/v17/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzbARG_n4osQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Thambi 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-thambi-2/baloo-thambi-2-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloothambi2/v17/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzbARG_n4osQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Thambi 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-thambi-2/baloo-thambi-2-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloothambi2/v17/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzbARG_n4osQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Thambi 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-thambi-2/baloo-thambi-2-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/baloothambi2/v17/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzbARG_n4osQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Baloo Thambi 2\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/baloo-thambi-2/baloo-thambi-2-800-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/baloo-thambi-2/baloo-thambi-2.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:150;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Balsamiq Sans\";s:10:\"fontFamily\";s:26:\"\"Balsamiq Sans\", system-ui\";s:4:\"slug\";s:13:\"balsamiq-sans\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/balsamiqsans/v14/P5sEzZiAbNrN8SB3lQQX7Pnc8dwdIYdNHzs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Balsamiq Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/balsamiq-sans/balsamiq-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/balsamiqsans/v14/P5sazZiAbNrN8SB3lQQX7PncwdsXIKVIDzvcXA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Balsamiq Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/balsamiq-sans/balsamiq-sans-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/balsamiqsans/v14/P5sZzZiAbNrN8SB3lQQX7PncyWUyBYpmAzLFRQI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Balsamiq Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/balsamiq-sans/balsamiq-sans-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/balsamiqsans/v14/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsAhDAVQI4aA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Balsamiq Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/balsamiq-sans/balsamiq-sans-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/balsamiq-sans/balsamiq-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:151;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Balthazar\";s:10:\"fontFamily\";s:16:\"Balthazar, serif\";s:4:\"slug\";s:9:\"balthazar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvzBTo39l8hw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Balthazar\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/balthazar/balthazar-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/balthazar/balthazar.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:152;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Bangers\";s:10:\"fontFamily\";s:18:\"Bangers, system-ui\";s:4:\"slug\";s:7:\"bangers\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACL5xa2bxii28.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Bangers\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bangers/bangers-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/bangers/bangers.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:153;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Barlow\";s:10:\"fontFamily\";s:18:\"Barlow, sans-serif\";s:4:\"slug\";s:6:\"barlow\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s5yn4hnCci.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwH8DmTcibrA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Vostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4lostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPDsE46HsxnA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs5yn4hnCci.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41ostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Fostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Vostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5lostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc5VAtlT47dw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451ostzsrd6m9.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Barlow\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/barlow/barlow.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:154;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Barlow Condensed\";s:10:\"fontFamily\";s:30:\"\"Barlow Condensed\", sans-serif\";s:4:\"slug\";s:16:\"barlow-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT2lvytKgbaw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1Hzlq0La6JN.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xPZ23n3pKg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT2lvytKgbaw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3TcuKECcrs.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWuYMHYrtUxg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Barlow Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed-900-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/barlow-condensed/barlow-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:155;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Barlow Semi Condensed\";s:10:\"fontFamily\";s:35:\"\"Barlow Semi Condensed\", sans-serif\";s:4:\"slug\";s:21:\"barlow-semi-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qqKk8ogoSP.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIE4Kh5SPZWs.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWslqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmslqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRneoCrCEo4gg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqqKk8ogoSP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2slqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGslqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWslqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmslqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2slqZiGfHK5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Barlow Semi Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed-900-italic.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/barlow-semi-condensed/barlow-semi-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:156;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Barriecito\";s:10:\"fontFamily\";s:21:\"Barriecito, system-ui\";s:4:\"slug\";s:10:\"barriecito\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdAiYwTO0MU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Barriecito\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/barriecito/barriecito-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/barriecito/barriecito.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:157;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Barrio\";s:10:\"fontFamily\";s:17:\"Barrio, system-ui\";s:4:\"slug\";s:6:\"barrio\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEcAYhWdsX1Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Barrio\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/barrio/barrio-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/barrio/barrio.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:158;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Basic\";s:10:\"fontFamily\";s:17:\"Basic, sans-serif\";s:4:\"slug\";s:5:\"basic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQNy4lDVyR7D.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Basic\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/basic/basic-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/basic/basic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:159;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Baskervville\";s:10:\"fontFamily\";s:19:\"Baskervville, serif\";s:4:\"slug\";s:12:\"baskervville\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/baskervville/v16/YA9Ur0yU4l_XOrogbkun3kQgspOohvbJ9A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Baskervville\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baskervville/baskervville-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/baskervville/v16/YA9Kr0yU4l_XOrogbkun3kQQtZmppPPZ9Mlt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Baskervville\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/baskervville/baskervville-400-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/baskervville/baskervville.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:160;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Battambang\";s:10:\"fontFamily\";s:21:\"Battambang, system-ui\";s:4:\"slug\";s:10:\"battambang\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp4g50_o9T7Q.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Battambang\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/battambang/battambang-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyFa8oZK9I0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Battambang\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/battambang/battambang-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnCj4yxx7o8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Battambang\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/battambang/battambang-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyFa8oZK9I0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Battambang\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/battambang/battambang-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyFa8oZK9I0.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Battambang\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/battambang/battambang-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/battambang/battambang.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:161;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Baumans\";s:10:\"fontFamily\";s:18:\"Baumans, system-ui\";s:4:\"slug\";s:7:\"baumans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_8yaksqY5Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Baumans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/baumans/baumans-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/baumans/baumans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:162;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Bayon\";s:10:\"fontFamily\";s:17:\"Bayon, sans-serif\";s:4:\"slug\";s:5:\"bayon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/bayon/v33/9XUrlJNmn0LPFl-sOhYEd2NJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Bayon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/bayon/bayon-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/bayon/bayon.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:163;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Be Vietnam Pro\";s:10:\"fontFamily\";s:28:\"\"Be Vietnam Pro\", sans-serif\";s:4:\"slug\";s:14:\"be-vietnam-pro\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HRUBXoYYbAiah8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSYJIneh-waA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF83T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HScJ183T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Ew1D3s6ZKAi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HwyBXoYYbAiah8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HToIV83T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2Rb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF83T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3Rb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSQI183T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80Rb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il83T7wrcwap.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1Rb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Be Vietnam Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/be-vietnam-pro/be-vietnam-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:164;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Beau Rivage\";s:10:\"fontFamily\";s:22:\"\"Beau Rivage\", cursive\";s:4:\"slug\";s:11:\"beau-rivage\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmgyNZp8K2sL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Beau Rivage\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/beau-rivage/beau-rivage-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/beau-rivage/beau-rivage.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:165;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Bebas Neue\";s:10:\"fontFamily\";s:24:\"\"Bebas Neue\", sans-serif\";s:4:\"slug\";s:10:\"bebas-neue\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXooxWtrygbi49c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Bebas Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/bebas-neue/bebas-neue-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/bebas-neue/bebas-neue.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:166;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Belanosima\";s:10:\"fontFamily\";s:22:\"Belanosima, sans-serif\";s:4:\"slug\";s:10:\"belanosima\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/belanosima/v3/3y9k6bI8ejDo_3MfCDSLxAVbF3JBg54.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Belanosima\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/belanosima/belanosima-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/belanosima/v3/3y9n6bI8ejDo_3MfCDSL_Nh1M39qn5cdJ-4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Belanosima\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/belanosima/belanosima-600-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/belanosima/v3/3y9n6bI8ejDo_3MfCDSL_Lx0M39qn5cdJ-4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Belanosima\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/belanosima/belanosima-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/belanosima/belanosima.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:167;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Belgrano\";s:10:\"fontFamily\";s:15:\"Belgrano, serif\";s:4:\"slug\";s:8:\"belgrano\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMAirl08KDJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Belgrano\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/belgrano/belgrano-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/belgrano/belgrano.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:168;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Bellefair\";s:10:\"fontFamily\";s:16:\"Bellefair, serif\";s:4:\"slug\";s:9:\"bellefair\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19-vA2pOdvDA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Bellefair\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/bellefair/bellefair-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/bellefair/bellefair.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:169;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Belleza\";s:10:\"fontFamily\";s:19:\"Belleza, sans-serif\";s:4:\"slug\";s:7:\"belleza\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcPyawzruP8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Belleza\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/belleza/belleza-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/belleza/belleza.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:170;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Bellota\";s:10:\"fontFamily\";s:18:\"Bellota, system-ui\";s:4:\"slug\";s:7:\"bellota\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGYViblPtXs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Bellota\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfiJtKpXulTQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Bellota\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJdRtGs-lbA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Bellota\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbtUk7hbBWrA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Bellota\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGYViblPtXs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Bellota\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfiJtKpXulTQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Bellota\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/bellota/bellota.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:171;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Bellota Text\";s:10:\"fontFamily\";s:25:\"\"Bellota Text\", system-ui\";s:4:\"slug\";s:12:\"bellota-text\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bellotatext/v18/0FlMVP2VnlWS4f3-UE9hHXM5VfsqeAXwQy6yxg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bellota Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/bellotatext/v18/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_xYSuixmYK.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bellota Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/bellotatext/v18/0FlTVP2VnlWS4f3-UE9hHXMB_NMOdS7sSg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bellota Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/bellotatext/v18/0FlNVP2VnlWS4f3-UE9hHXMx-9kPVyv8Sjer.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bellota Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bellotatext/v18/0FlMVP2VnlWS4f3-UE9hHXM5RfwqeAXwQy6yxg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bellota Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/bellotatext/v18/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_xYSuixmYK.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Bellota Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/bellota-text/bellota-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:172;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"BenchNine\";s:10:\"fontFamily\";s:21:\"BenchNine, sans-serif\";s:4:\"slug\";s:9:\"benchnine\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"BenchNine\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/benchnine/benchnine-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrUsN1jU2gog.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"BenchNine\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/benchnine/benchnine-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"BenchNine\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/benchnine/benchnine-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/benchnine/benchnine.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:173;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Benne\";s:10:\"fontFamily\";s:12:\"Benne, serif\";s:4:\"slug\";s:5:\"benne\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vj0lt6qTDBN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Benne\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/benne/benne-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/benne/benne.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:174;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Bentham\";s:10:\"fontFamily\";s:14:\"Bentham, serif\";s:4:\"slug\";s:7:\"bentham\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWk7CJaK_y4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Bentham\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/bentham/bentham-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/bentham/bentham.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:175;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Berkshire Swash\";s:10:\"fontFamily\";s:26:\"\"Berkshire Swash\", cursive\";s:4:\"slug\";s:15:\"berkshire-swash\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/berkshireswash/v20/ptRRTi-cavZOGqCvnNJDl5m5XmNPqMQybX4pQA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Berkshire Swash\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/berkshire-swash/berkshire-swash-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/berkshire-swash/berkshire-swash.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:176;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Besley\";s:10:\"fontFamily\";s:13:\"Besley, serif\";s:4:\"slug\";s:6:\"besley\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdFoFPOl8-E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdFoFPOl8-E.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdFoFPOl8-E.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdFoFPOl8-E.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdFoFPOl8-E.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdFoFPOl8-E.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiFdGg4-E04A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diFdGg4-E04A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiFdGg4-E04A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiFdGg4-E04A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiFdGg4-E04A.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiFdGg4-E04A.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Besley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/besley/besley-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/besley/besley.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:177;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Beth Ellen\";s:10:\"fontFamily\";s:21:\"\"Beth Ellen\", cursive\";s:4:\"slug\";s:10:\"beth-ellen\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIUiVNo5xNY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Beth Ellen\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/beth-ellen/beth-ellen-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/beth-ellen/beth-ellen.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:178;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Bevan\";s:10:\"fontFamily\";s:12:\"Bevan, serif\";s:4:\"slug\";s:5:\"bevan\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/bevan/v24/4iCj6KZ0a9NXjF8fUir7tlSJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Bevan\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/bevan/bevan-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/bevan/v24/4iCt6KZ0a9NXjG8YWCvZs0SJD4U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Bevan\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/bevan/bevan-400-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/bevan/bevan.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:179;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"BhuTuka Expanded One\";s:10:\"fontFamily\";s:29:\"\"BhuTuka Expanded One\", serif\";s:4:\"slug\";s:20:\"bhutuka-expanded-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/bhutukaexpandedone/v7/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyS8pg_RVH1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"BhuTuka Expanded One\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/bhutuka-expanded-one/bhutuka-expanded-one-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/bhutuka-expanded-one/bhutuka-expanded-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:180;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Big Shoulders Display\";s:10:\"fontFamily\";s:34:\"\"Big Shoulders Display\", system-ui\";s:4:\"slug\";s:21:\"big-shoulders-display\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JFs6SRP4yZQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Big Shoulders Display\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display-900-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-display/big-shoulders-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:181;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:28:\"Big Shoulders Inline Display\";s:10:\"fontFamily\";s:41:\"\"Big Shoulders Inline Display\", system-ui\";s:4:\"slug\";s:28:\"big-shoulders-inline-display\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR8yPc2Huux.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Big Shoulders Inline Display\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display-900-normal.svg\";}}s:7:\"preview\";s:104:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-display/big-shoulders-inline-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:182;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Big Shoulders Inline Text\";s:10:\"fontFamily\";s:38:\"\"Big Shoulders Inline Text\", system-ui\";s:4:\"slug\";s:25:\"big-shoulders-inline-text\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGI7Y6Jsc8c.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Big Shoulders Inline Text\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text-900-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-inline-text/big-shoulders-inline-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:183;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:29:\"Big Shoulders Stencil Display\";s:10:\"fontFamily\";s:42:\"\"Big Shoulders Stencil Display\", system-ui\";s:4:\"slug\";s:29:\"big-shoulders-stencil-display\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PLXznJucP9w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Big Shoulders Stencil Display\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-900-normal.svg\";}}s:7:\"preview\";s:106:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-display/big-shoulders-stencil-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:184;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Big Shoulders Stencil Text\";s:10:\"fontFamily\";s:39:\"\"Big Shoulders Stencil Text\", system-ui\";s:4:\"slug\";s:26:\"big-shoulders-stencil-text\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIHC_Py_AWbQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Big Shoulders Stencil Text\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-900-normal.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-stencil-text/big-shoulders-stencil-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:185;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Big Shoulders Text\";s:10:\"fontFamily\";s:31:\"\"Big Shoulders Text\", system-ui\";s:4:\"slug\";s:18:\"big-shoulders-text\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TcPNl6P2pc.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Big Shoulders Text\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/big-shoulders-text/big-shoulders-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:186;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Bigelow Rules\";s:10:\"fontFamily\";s:26:\"\"Bigelow Rules\", system-ui\";s:4:\"slug\";s:13:\"bigelow-rules\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/bigelowrules/v29/RrQWboly8iR_I3KWSzeRuN0zT4ICH8WAJVk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Bigelow Rules\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/bigelow-rules/bigelow-rules-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/bigelow-rules/bigelow-rules.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:187;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Bigshot One\";s:10:\"fontFamily\";s:24:\"\"Bigshot One\", system-ui\";s:4:\"slug\";s:11:\"bigshot-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/bigshotone/v29/u-470qukhRkkO6BD_7cM_gxrUQJBXv_-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bigshot One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bigshot-one/bigshot-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/bigshot-one/bigshot-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:188;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Bilbo\";s:10:\"fontFamily\";s:14:\"Bilbo, cursive\";s:4:\"slug\";s:5:\"bilbo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210kpIRz4wxE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Bilbo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/bilbo/bilbo-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/bilbo/bilbo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:189;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Bilbo Swash Caps\";s:10:\"fontFamily\";s:27:\"\"Bilbo Swash Caps\", cursive\";s:4:\"slug\";s:16:\"bilbo-swash-caps\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAbopiRfKp8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Bilbo Swash Caps\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/bilbo-swash-caps/bilbo-swash-caps-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/bilbo-swash-caps/bilbo-swash-caps.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:190;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"BioRhyme\";s:10:\"fontFamily\";s:15:\"BioRhyme, serif\";s:4:\"slug\";s:8:\"biorhyme\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OrIimiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OmwimiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OjIimiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OgAimiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OuwlmiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OtUlmiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/biorhyme/v17/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OrIlmiOki-gkRDE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"BioRhyme\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme-800-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/biorhyme/biorhyme.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:191;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"BioRhyme Expanded\";s:10:\"fontFamily\";s:26:\"\"BioRhyme Expanded\", serif\";s:4:\"slug\";s:17:\"biorhyme-expanded\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSCSdTXrb_z.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"BioRhyme Expanded\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/biorhyme-expanded/biorhyme-expanded-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSCSdTXrb_z.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"BioRhyme Expanded\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/biorhyme-expanded/biorhyme-expanded-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dQIE1zZzytGswgU577CDY9LjbffySRRXCPYsje.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"BioRhyme Expanded\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/biorhyme-expanded/biorhyme-expanded-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSCSdTXrb_z.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"BioRhyme Expanded\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/biorhyme-expanded/biorhyme-expanded-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSCSdTXrb_z.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"BioRhyme Expanded\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/biorhyme-expanded/biorhyme-expanded-800-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/biorhyme-expanded/biorhyme-expanded.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:192;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Birthstone\";s:10:\"fontFamily\";s:19:\"Birthstone, cursive\";s:4:\"slug\";s:10:\"birthstone\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/birthstone/v14/8AtsGs2xO4yLRhy87sv_HLz5jRfZHzM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Birthstone\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/birthstone/birthstone-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/birthstone/birthstone.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:193;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Birthstone Bounce\";s:10:\"fontFamily\";s:28:\"\"Birthstone Bounce\", cursive\";s:4:\"slug\";s:17:\"birthstone-bounce\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/birthstonebounce/v11/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVMGIMYDo_8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Birthstone Bounce\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/birthstone-bounce/birthstone-bounce-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/birthstonebounce/v11/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacVJZP1LmD9.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Birthstone Bounce\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/birthstone-bounce/birthstone-bounce-500-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/birthstone-bounce/birthstone-bounce.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:194;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Biryani\";s:10:\"fontFamily\";s:19:\"Biryani, sans-serif\";s:4:\"slug\";s:7:\"biryani\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTVSU-J-RxQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTVSU-J-RxQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUkZPTh5T-s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTVSU-J-RxQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTVSU-J-RxQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTVSU-J-RxQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTVSU-J-RxQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Biryani\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/biryani/biryani.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:195;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Bitter\";s:10:\"fontFamily\";s:13:\"Bitter, serif\";s:4:\"slug\";s:6:\"bitter\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bitter/v33/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCLrEXFh2reU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bitter/v33/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOXXpzveWxBw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Bitter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/bitter/bitter.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:196;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Black And White Picture\";s:10:\"fontFamily\";s:36:\"\"Black And White Picture\", system-ui\";s:4:\"slug\";s:23:\"black-and-white-picture\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/blackandwhitepicture/v24/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5CbcMi-yWY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Black And White Picture\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/black-and-white-picture/black-and-white-picture-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/black-and-white-picture/black-and-white-picture.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:197;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Black Han Sans\";s:10:\"fontFamily\";s:28:\"\"Black Han Sans\", sans-serif\";s:4:\"slug\";s:14:\"black-han-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/blackhansans/v17/ea8Aad44WunzF9a-dL6toA8r8nqQIXSkH-Hc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Black Han Sans\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/black-han-sans/black-han-sans-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/black-han-sans/black-han-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:198;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Black Ops One\";s:10:\"fontFamily\";s:26:\"\"Black Ops One\", system-ui\";s:4:\"slug\";s:13:\"black-ops-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDnRtjkho4M.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Black Ops One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/black-ops-one/black-ops-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/black-ops-one/black-ops-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:199;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Blaka\";s:10:\"fontFamily\";s:16:\"Blaka, system-ui\";s:4:\"slug\";s:5:\"blaka\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/blaka/v7/8vIG7w8722p_6kdu20D2FV5e.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Blaka\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/blaka/blaka-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/blaka/blaka.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:200;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Blaka Hollow\";s:10:\"fontFamily\";s:25:\"\"Blaka Hollow\", system-ui\";s:4:\"slug\";s:12:\"blaka-hollow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/blakahollow/v7/MCoUzAL91sjRE2FsKsxUtezYAtoFyW_-oA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Blaka Hollow\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/blaka-hollow/blaka-hollow-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/blaka-hollow/blaka-hollow.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:201;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Blaka Ink\";s:10:\"fontFamily\";s:22:\"\"Blaka Ink\", system-ui\";s:4:\"slug\";s:9:\"blaka-ink\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/blakaink/v8/AlZy_zVVtpj22Znag2chcHf4XB0Tow.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Blaka Ink\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/blaka-ink/blaka-ink-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/blaka-ink/blaka-ink.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:202;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Blinker\";s:10:\"fontFamily\";s:19:\"Blinker, sans-serif\";s:4:\"slug\";s:7:\"blinker\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hYUsCkIt9QQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCyrYGkHgIs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Blinker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/blinker/blinker.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:203;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Bodoni Moda\";s:10:\"fontFamily\";s:20:\"\"Bodoni Moda\", serif\";s:4:\"slug\";s:11:\"bodoni-moda\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIVytVjMYwE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIVytVjMYwE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIVytVjMYwE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIVytVjMYwE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIVytVjMYwE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIVytVjMYwE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4tHrJcwHqoQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4tHrJcwHqoQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4tHrJcwHqoQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4tHrJcwHqoQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4tHrJcwHqoQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4tHrJcwHqoQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Bodoni Moda\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:204;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Bokor\";s:10:\"fontFamily\";s:16:\"Bokor, system-ui\";s:4:\"slug\";s:5:\"bokor\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2TdInbcaxE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Bokor\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/bokor/bokor-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/bokor/bokor.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:205;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Bona Nova\";s:10:\"fontFamily\";s:18:\"\"Bona Nova\", serif\";s:4:\"slug\";s:9:\"bona-nova\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJjqhqHK-CLA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Bona Nova\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/bona-nova/bona-nova-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJrPqqSLJYf.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Bona Nova\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/bona-nova/bona-nova-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOEYSeJY8GgQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Bona Nova\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/bona-nova/bona-nova-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/bona-nova/bona-nova.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:206;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Bonbon\";s:10:\"fontFamily\";s:15:\"Bonbon, cursive\";s:4:\"slug\";s:6:\"bonbon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/bonbon/v30/0FlVVPeVlFec4ee_dTEAbQY5-A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bonbon\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bonbon/bonbon-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/bonbon/bonbon.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:207;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Bonheur Royale\";s:10:\"fontFamily\";s:25:\"\"Bonheur Royale\", cursive\";s:4:\"slug\";s:14:\"bonheur-royale\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bonheurroyale/v13/c4m51nt_GMTrtX-b9GcG4-YRmYK6c0f1N5Ij.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Bonheur Royale\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/bonheur-royale/bonheur-royale-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/bonheur-royale/bonheur-royale.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:208;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Boogaloo\";s:10:\"fontFamily\";s:19:\"Boogaloo, system-ui\";s:4:\"slug\";s:8:\"boogaloo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/boogaloo/v23/kmK-Zq45GAvOdnaW6x1A_SrQo_1K.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Boogaloo\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/boogaloo/boogaloo-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/boogaloo/boogaloo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:209;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Borel\";s:10:\"fontFamily\";s:14:\"Borel, cursive\";s:4:\"slug\";s:5:\"borel\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/borel/v3/6qLOKZsftAPisgskYyMnOjwE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Borel\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/borel/borel-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/borel/borel.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:210;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Bowlby One\";s:10:\"fontFamily\";s:23:\"\"Bowlby One\", system-ui\";s:4:\"slug\";s:10:\"bowlby-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/bowlbyone/v23/taiPGmVuC4y96PFeqp8smouC_Z0wcK4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Bowlby One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/bowlby-one/bowlby-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/bowlby-one/bowlby-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:211;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Bowlby One SC\";s:10:\"fontFamily\";s:26:\"\"Bowlby One SC\", system-ui\";s:4:\"slug\";s:13:\"bowlby-one-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/bowlbyonesc/v25/DtVlJxerQqQm37tzN3wMug9Pzg38owhNjuE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Bowlby One SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/bowlby-one-sc/bowlby-one-sc-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/bowlby-one-sc/bowlby-one-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:212;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Braah One\";s:10:\"fontFamily\";s:23:\"\"Braah One\", sans-serif\";s:4:\"slug\";s:9:\"braah-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/braahone/v6/KFOlCnWUpt6LsxxxiylvBh05IsDqlA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Braah One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/braah-one/braah-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/braah-one/braah-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:213;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Brawler\";s:10:\"fontFamily\";s:14:\"Brawler, serif\";s:4:\"slug\";s:7:\"brawler\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgW7S9XdZN8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Brawler\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/brawler/brawler-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb9j2eNaPfk8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Brawler\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/brawler/brawler-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/brawler/brawler.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:214;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Bree Serif\";s:10:\"fontFamily\";s:19:\"\"Bree Serif\", serif\";s:4:\"slug\";s:10:\"bree-serif\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx6jj5pN1MwI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Bree Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/bree-serif/bree-serif-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/bree-serif/bree-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:215;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Bricolage Grotesque\";s:10:\"fontFamily\";s:33:\"\"Bricolage Grotesque\", sans-serif\";s:4:\"slug\";s:19:\"bricolage-grotesque\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvZviyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvUXiyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvRviyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvSniyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/bricolagegrotesque/v2/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvZvlyMgvs-wJDtw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Bricolage Grotesque\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque-800-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/bricolage-grotesque/bricolage-grotesque.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:216;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Bruno Ace\";s:10:\"fontFamily\";s:22:\"\"Bruno Ace\", system-ui\";s:4:\"slug\";s:9:\"bruno-ace\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/brunoace/v5/WwkcxPa2E06x4trkOj_kNaoMWNMg3Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Bruno Ace\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/bruno-ace/bruno-ace-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/bruno-ace/bruno-ace.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:217;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Bruno Ace SC\";s:10:\"fontFamily\";s:25:\"\"Bruno Ace SC\", system-ui\";s:4:\"slug\";s:12:\"bruno-ace-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/brunoacesc/v5/ptROTiycffFLBuiHjdJDl634KCFrpe8uZA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bruno Ace SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bruno-ace-sc/bruno-ace-sc-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/bruno-ace-sc/bruno-ace-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:218;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Brygada 1918\";s:10:\"fontFamily\";s:21:\"\"Brygada 1918\", serif\";s:4:\"slug\";s:12:\"brygada-1918\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/brygada1918/v22/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-VoWu5O3gbo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/brygada1918/v22/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-VoWu5O3gbo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/brygada1918/v22/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-VoWu5O3gbo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/brygada1918/v22/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-VoWu5O3gbo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/brygada1918/v22/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/brygada1918/v22/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/brygada1918/v22/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/brygada1918/v22/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Brygada 1918\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/brygada-1918/brygada-1918.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:219;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Bubblegum Sans\";s:10:\"fontFamily\";s:27:\"\"Bubblegum Sans\", system-ui\";s:4:\"slug\";s:14:\"bubblegum-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bubblegumsans/v20/AYCSpXb_Z9EORv1M5QTjEzMEtdaCzoPPb7R4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Bubblegum Sans\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/bubblegum-sans/bubblegum-sans-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/bubblegum-sans/bubblegum-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:220;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Bubbler One\";s:10:\"fontFamily\";s:25:\"\"Bubbler One\", sans-serif\";s:4:\"slug\";s:11:\"bubbler-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHC26MPePkt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Bubbler One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/bubbler-one/bubbler-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/bubbler-one/bubbler-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:221;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Buda\";s:10:\"fontFamily\";s:15:\"Buda, system-ui\";s:4:\"slug\";s:4:\"buda\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/buda/v29/GFDqWAN8mnyIJSSrG7ABr7pZKA0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Buda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/buda/buda-300-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/buda/buda.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:222;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Buenard\";s:10:\"fontFamily\";s:14:\"Buenard, serif\";s:4:\"slug\";s:7:\"buenard\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzL9qGi9HL4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Buenard\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/buenard/buenard-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGWWALepwss.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Buenard\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/buenard/buenard-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/buenard/buenard.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:223;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Bungee\";s:10:\"fontFamily\";s:17:\"Bungee, system-ui\";s:4:\"slug\";s:6:\"bungee\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/bungee/v13/N0bU2SZBIuF2PU_ED350Kd_PmA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Bungee\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/bungee/bungee-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/bungee/bungee.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:224;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Bungee Hairline\";s:10:\"fontFamily\";s:28:\"\"Bungee Hairline\", system-ui\";s:4:\"slug\";s:15:\"bungee-hairline\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/bungeehairline/v22/snfys0G548t04270a_ljTLUVrv-7ZR2dQ5ZPqQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Bungee Hairline\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/bungee-hairline/bungee-hairline-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/bungee-hairline/bungee-hairline.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:225;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Bungee Inline\";s:10:\"fontFamily\";s:26:\"\"Bungee Inline\", system-ui\";s:4:\"slug\";s:13:\"bungee-inline\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/bungeeinline/v15/Gg8zN58UcgnlCweMrih332VuDGd1-FEglsc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Bungee Inline\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/bungee-inline/bungee-inline-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/bungee-inline/bungee-inline.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:226;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Bungee Outline\";s:10:\"fontFamily\";s:27:\"\"Bungee Outline\", system-ui\";s:4:\"slug\";s:14:\"bungee-outline\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/bungeeoutline/v20/_6_mEDvmVP24UvU2MyiGDslL3QgyYhJqPXxo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Bungee Outline\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/bungee-outline/bungee-outline-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/bungee-outline/bungee-outline.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:227;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Bungee Shade\";s:10:\"fontFamily\";s:25:\"\"Bungee Shade\", system-ui\";s:4:\"slug\";s:12:\"bungee-shade\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/bungeeshade/v13/DtVkJxarWL0t2KdzK3oI_jks6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bungee Shade\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bungee-shade/bungee-shade-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/bungee-shade/bungee-shade.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:228;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Bungee Spice\";s:10:\"fontFamily\";s:25:\"\"Bungee Spice\", system-ui\";s:4:\"slug\";s:12:\"bungee-spice\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/bungeespice/v11/nwpTtK2nIhxE0q-IwgSpZBqCyiI-aMPF7Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Bungee Spice\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/bungee-spice/bungee-spice-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/bungee-spice/bungee-spice.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:229;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Butcherman\";s:10:\"fontFamily\";s:21:\"Butcherman, system-ui\";s:4:\"slug\";s:10:\"butcherman\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zCzq_5uT84.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Butcherman\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/butcherman/butcherman-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/butcherman/butcherman.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:230;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Butterfly Kids\";s:10:\"fontFamily\";s:25:\"\"Butterfly Kids\", cursive\";s:4:\"slug\";s:14:\"butterfly-kids\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/butterflykids/v25/ll8lK2CWTjuqAsXDqlnIbMNs5S4frxFrAX1D.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Butterfly Kids\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/butterfly-kids/butterfly-kids-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/butterfly-kids/butterfly-kids.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:231;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Cabin\";s:10:\"fontFamily\";s:17:\"Cabin, sans-serif\";s:4:\"slug\";s:5:\"cabin\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Svxm7rE_s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Svxm7rE_s.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Svxm7rE_s.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Svxm7rE_s.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/cabin/v27/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_Klx0zuA_u1Bg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/cabin/v27/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlx0zuA_u1Bg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/cabin/v27/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlx0zuA_u1Bg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/cabin/v27/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlx0zuA_u1Bg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Cabin\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin-700-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/cabin/cabin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:232;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Cabin Condensed\";s:10:\"fontFamily\";s:29:\"\"Cabin Condensed\", sans-serif\";s:4:\"slug\";s:15:\"cabin-condensed\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaZejZ5HZl8Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Cabin Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/cabin-condensed/cabin-condensed-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH96V15-K1oqQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Cabin Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/cabin-condensed/cabin-condensed-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb96V15-K1oqQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Cabin Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/cabin-condensed/cabin-condensed-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf96V15-K1oqQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Cabin Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/cabin-condensed/cabin-condensed-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/cabin-condensed/cabin-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:233;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Cabin Sketch\";s:10:\"fontFamily\";s:25:\"\"Cabin Sketch\", system-ui\";s:4:\"slug\";s:12:\"cabin-sketch\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/cabinsketch/v21/QGYpz_kZZAGCONcK2A4bGOjMmtJM6fnuKg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cabin Sketch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cabin-sketch/cabin-sketch-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cabinsketch/v21/QGY2z_kZZAGCONcK2A4bGOj0I_1o5NLyI4CMFw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cabin Sketch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cabin-sketch/cabin-sketch-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/cabin-sketch/cabin-sketch.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:234;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Caesar Dressing\";s:10:\"fontFamily\";s:28:\"\"Caesar Dressing\", system-ui\";s:4:\"slug\";s:15:\"caesar-dressing\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3dLb6LZttyg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Caesar Dressing\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/caesar-dressing/caesar-dressing-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/caesar-dressing/caesar-dressing.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:235;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Cagliostro\";s:10:\"fontFamily\";s:22:\"Cagliostro, sans-serif\";s:4:\"slug\";s:10:\"cagliostro\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGDEM4COoE4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cagliostro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cagliostro/cagliostro-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/cagliostro/cagliostro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:236;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Cairo\";s:10:\"fontFamily\";s:17:\"Cairo, sans-serif\";s:4:\"slug\";s:5:\"cairo\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1HoLQ-HmkA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cairo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/cairo/cairo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:237;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Cairo Play\";s:10:\"fontFamily\";s:24:\"\"Cairo Play\", sans-serif\";s:4:\"slug\";s:10:\"cairo-play\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq8iXa8GvzaA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Cairo Play\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/cairo-play/cairo-play.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:238;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Caladea\";s:10:\"fontFamily\";s:14:\"Caladea, serif\";s:4:\"slug\";s:7:\"caladea\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjRp3-9IztOc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Caladea\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/caladea/caladea-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19-vA2pOdvDA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Caladea\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/caladea/caladea-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY398YqO52FZ0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Caladea\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/caladea/caladea-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SqcxzBZ2lDA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Caladea\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/caladea/caladea-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/caladea/caladea.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:239;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Calistoga\";s:10:\"fontFamily\";s:20:\"Calistoga, system-ui\";s:4:\"slug\";s:9:\"calistoga\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/calistoga/v15/6NUU8F2OJg6MeR7l4e0vscYAwdRZfw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Calistoga\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/calistoga/calistoga-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/calistoga/calistoga.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:240;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Calligraffitti\";s:10:\"fontFamily\";s:23:\"Calligraffitti, cursive\";s:4:\"slug\";s:14:\"calligraffitti\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFcM5ZBpYN-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Calligraffitti\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/calligraffitti/calligraffitti-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/calligraffitti/calligraffitti.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:241;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Cambay\";s:10:\"fontFamily\";s:18:\"Cambay, sans-serif\";s:4:\"slug\";s:6:\"cambay\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGa7SIz9JsaA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cambay\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cambay/cambay-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6J7dd8aGZk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Cambay\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cambay/cambay-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0puswvlwYX99kA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cambay\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cambay/cambay-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvNxQ3ptkDMN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Cambay\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cambay/cambay-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/cambay/cambay.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:242;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Cambo\";s:10:\"fontFamily\";s:12:\"Cambo, serif\";s:4:\"slug\";s:5:\"cambo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk41_ok7xkPm8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cambo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cambo/cambo-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/cambo/cambo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:243;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Candal\";s:10:\"fontFamily\";s:18:\"Candal, sans-serif\";s:4:\"slug\";s:6:\"candal\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNBB4Jt9Yxlw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Candal\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/candal/candal-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/candal/candal.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:244;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Cantarell\";s:10:\"fontFamily\";s:21:\"Cantarell, sans-serif\";s:4:\"slug\";s:9:\"cantarell\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01JjqhqHK-CLA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cantarell\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cantarell/cantarell-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJrPqqSLJYf.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cantarell\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cantarell/cantarell-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOEYSeJY8GgQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cantarell\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cantarell/cantarell-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6fB4oWgWHB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cantarell\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cantarell/cantarell-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/cantarell/cantarell.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:245;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Cantata One\";s:10:\"fontFamily\";s:20:\"\"Cantata One\", serif\";s:4:\"slug\";s:11:\"cantata-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxBt8CwfGaD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Cantata One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/cantata-one/cantata-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/cantata-one/cantata-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:246;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Cantora One\";s:10:\"fontFamily\";s:25:\"\"Cantora One\", sans-serif\";s:4:\"slug\";s:11:\"cantora-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zYZ4vZVbgZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Cantora One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/cantora-one/cantora-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/cantora-one/cantora-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:247;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Caprasimo\";s:10:\"fontFamily\";s:20:\"Caprasimo, system-ui\";s:4:\"slug\";s:9:\"caprasimo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/caprasimo/v5/esDT31JQOPuXIUGBp72kkJUCGpG-GQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Caprasimo\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/caprasimo/caprasimo-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/caprasimo/caprasimo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:248;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Capriola\";s:10:\"fontFamily\";s:20:\"Capriola, sans-serif\";s:4:\"slug\";s:8:\"capriola\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_5L-AinG8y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Capriola\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/capriola/capriola-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/capriola/capriola.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:249;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Caramel\";s:10:\"fontFamily\";s:16:\"Caramel, cursive\";s:4:\"slug\";s:7:\"caramel\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCFuiZ-uydg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Caramel\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/caramel/caramel-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/caramel/caramel.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:250;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Carattere\";s:10:\"fontFamily\";s:18:\"Carattere, cursive\";s:4:\"slug\";s:9:\"carattere\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTsmaMH4V_gg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Carattere\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/carattere/carattere-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/carattere/carattere.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:251;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Cardo\";s:10:\"fontFamily\";s:12:\"Cardo, serif\";s:4:\"slug\";s:5:\"cardo\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv61oAZ2H5O.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cardo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cardo/cardo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IE73W5OcCk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Cardo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cardo/cardo-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQU82JHaTBX.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Cardo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/cardo/cardo-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/cardo/cardo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:252;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Carlito\";s:10:\"fontFamily\";s:19:\"Carlito, sans-serif\";s:4:\"slug\";s:7:\"carlito\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDWLTXUETuE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Carlito\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/carlito/carlito-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBTFcBXuFb0Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Carlito\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/carlito/carlito-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaXgvUuhCyOo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Carlito\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/carlito/carlito-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglU8pH2OprMQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Carlito\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/carlito/carlito-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/carlito/carlito.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:253;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Carme\";s:10:\"fontFamily\";s:17:\"Carme, sans-serif\";s:4:\"slug\";s:5:\"carme\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjDxLNrxfbZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Carme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/carme/carme-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/carme/carme.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:254;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Carrois Gothic\";s:10:\"fontFamily\";s:28:\"\"Carrois Gothic\", sans-serif\";s:4:\"slug\";s:14:\"carrois-gothic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmG3i7ajcJ-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Carrois Gothic\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/carrois-gothic/carrois-gothic-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/carrois-gothic/carrois-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:255;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Carrois Gothic SC\";s:10:\"fontFamily\";s:31:\"\"Carrois Gothic SC\", sans-serif\";s:4:\"slug\";s:17:\"carrois-gothic-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28iNHabY4dN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Carrois Gothic SC\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/carrois-gothic-sc/carrois-gothic-sc-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/carrois-gothic-sc/carrois-gothic-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:256;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Carter One\";s:10:\"fontFamily\";s:23:\"\"Carter One\", system-ui\";s:4:\"slug\";s:10:\"carter-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxF2hYxREMs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Carter One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/carter-one/carter-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/carter-one/carter-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:257;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Castoro\";s:10:\"fontFamily\";s:14:\"Castoro, serif\";s:4:\"slug\";s:7:\"castoro\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHY1EzOYenEU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Castoro\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/castoro/castoro-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOzcQbjEX5fw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Castoro\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/castoro/castoro-400-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/castoro/castoro.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:258;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Castoro Titling\";s:10:\"fontFamily\";s:28:\"\"Castoro Titling\", system-ui\";s:4:\"slug\";s:15:\"castoro-titling\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/castorotitling/v8/buEupouwccj03leTfjUAhEZWlrNqZwckeo9RMw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Castoro Titling\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/castoro-titling/castoro-titling-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/castoro-titling/castoro-titling.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:259;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Catamaran\";s:10:\"fontFamily\";s:21:\"Catamaran, sans-serif\";s:4:\"slug\";s:9:\"catamaran\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/catamaran/v19/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1azXuluiLyw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Catamaran\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/catamaran/catamaran.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:260;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Caudex\";s:10:\"fontFamily\";s:13:\"Caudex, serif\";s:4:\"slug\";s:6:\"caudex\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/caudex/v17/esDQ311QOP6BJUrIz_iAnb4eEw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Caudex\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caudex/caudex-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/caudex/v17/esDS311QOP6BJUr4yPKBv7sOE4in.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Caudex\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caudex/caudex-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/caudex/v17/esDT311QOP6BJUrwdtekkJUCGpG-GQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Caudex\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caudex/caudex-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/caudex/v17/esDV311QOP6BJUr4yMo4kJ8DOJSuGdLB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Caudex\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caudex/caudex-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/caudex/caudex.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:261;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Caveat\";s:10:\"fontFamily\";s:15:\"Caveat, cursive\";s:4:\"slug\";s:6:\"caveat\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIejYBxPigs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Caveat\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caveat/caveat-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIejYBxPigs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Caveat\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caveat/caveat-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIejYBxPigs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Caveat\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caveat/caveat-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIejYBxPigs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Caveat\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/caveat/caveat-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/caveat/caveat.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:262;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Caveat Brush\";s:10:\"fontFamily\";s:23:\"\"Caveat Brush\", cursive\";s:4:\"slug\";s:12:\"caveat-brush\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMXrmT03pdQw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Caveat Brush\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/caveat-brush/caveat-brush-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/caveat-brush/caveat-brush.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:263;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Cedarville Cursive\";s:10:\"fontFamily\";s:29:\"\"Cedarville Cursive\", cursive\";s:4:\"slug\";s:18:\"cedarville-cursive\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neILBxw8BeTg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Cedarville Cursive\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cedarville-cursive/cedarville-cursive-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/cedarville-cursive/cedarville-cursive.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:264;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Ceviche One\";s:10:\"fontFamily\";s:24:\"\"Ceviche One\", system-ui\";s:4:\"slug\";s:11:\"ceviche-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zYZ4vZVbgZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Ceviche One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ceviche-one/ceviche-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/ceviche-one/ceviche-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:265;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Chakra Petch\";s:10:\"fontFamily\";s:26:\"\"Chakra Petch\", sans-serif\";s:4:\"slug\";s:12:\"chakra-petch\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeNIhFRZXE3AY00g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_F_gMk0izH.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIf6MapbsEk7TDLdtEz1BwkmnaBhSL7Y1Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIfkMapbsEk7TDLdtEz1BwkWmqpgarvI1R8t.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkebIlFRZXE3AY00g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_F_gMk0izH.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeQI5FRZXE3AY00g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_F_gMk0izH.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeJI9FRZXE3AY00g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_F_gMk0izH.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Chakra Petch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/chakra-petch/chakra-petch.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:266;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Changa\";s:10:\"fontFamily\";s:18:\"Changa, sans-serif\";s:4:\"slug\";s:6:\"changa\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjXp9htf1ZM.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Changa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/changa/changa-800-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/changa/changa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:267;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Changa One\";s:10:\"fontFamily\";s:23:\"\"Changa One\", system-ui\";s:4:\"slug\";s:10:\"changa-one\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/changaone/v20/xfu00W3wXn3QLUJXhzq46APouLfbK64.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Changa One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/changa-one/changa-one-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/changaone/v20/xfu20W3wXn3QLUJXhzq42ATiuZXeO67ISw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Changa One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/changa-one/changa-one-400-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/changa-one/changa-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:268;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Chango\";s:10:\"fontFamily\";s:17:\"Chango, system-ui\";s:4:\"slug\";s:6:\"chango\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/chango/v27/2V0cKI0OB5U7WaJyyn24TFUaAw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Chango\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/chango/chango-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/chango/chango.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:269;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Charis SIL\";s:10:\"fontFamily\";s:19:\"\"Charis SIL\", serif\";s:4:\"slug\";s:10:\"charis-sil\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrP_mYjZ2Xn0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Charis SIL\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/charis-sil/charis-sil-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsYxRzTn2Ozw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Charis SIL\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/charis-sil/charis-sil-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRjtdQnSX1ko.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Charis SIL\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/charis-sil/charis-sil-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXQ1aSxkrMCQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Charis SIL\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/charis-sil/charis-sil-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/charis-sil/charis-sil.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:270;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Charm\";s:10:\"fontFamily\";s:14:\"Charm, cursive\";s:4:\"slug\";s:5:\"charm\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYqIe804WIo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Charm\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/charm/charm-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss5yn4hnCci.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Charm\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/charm/charm-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/charm/charm.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:271;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Charmonman\";s:10:\"fontFamily\";s:19:\"Charmonman, cursive\";s:4:\"slug\";s:10:\"charmonman\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJSovLdh6OE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Charmonman\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/charmonman/charmonman-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmLpK9OhmGnY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Charmonman\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/charmonman/charmonman-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/charmonman/charmonman.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:272;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Chathura\";s:10:\"fontFamily\";s:20:\"Chathura, sans-serif\";s:4:\"slug\";s:8:\"chathura\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0GbTvZyuDo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chathura\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chathura/chathura-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWS0YPp7oSNy.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chathura\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chathura/chathura-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418loUC5S-Zy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chathura\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chathura/chathura-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmS0YPp7oSNy.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chathura\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chathura/chathura-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWS0YPp7oSNy.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chathura\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chathura/chathura-800-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/chathura/chathura.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:273;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Chau Philomene One\";s:10:\"fontFamily\";s:32:\"\"Chau Philomene One\", sans-serif\";s:4:\"slug\";s:18:\"chau-philomene-one\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsmYx7QMISdQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Chau Philomene One\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/chau-philomene-one/chau-philomene-one-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ6YscCdXQB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Chau Philomene One\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/chau-philomene-one/chau-philomene-one-400-italic.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/chau-philomene-one/chau-philomene-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:274;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Chela One\";s:10:\"fontFamily\";s:22:\"\"Chela One\", system-ui\";s:4:\"slug\";s:9:\"chela-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy2lvWNTMwoQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Chela One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/chela-one/chela-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/chela-one/chela-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:275;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Chelsea Market\";s:10:\"fontFamily\";s:27:\"\"Chelsea Market\", system-ui\";s:4:\"slug\";s:14:\"chelsea-market\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhgLA4uKkWk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Chelsea Market\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/chelsea-market/chelsea-market-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/chelsea-market/chelsea-market.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:276;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Chenla\";s:10:\"fontFamily\";s:17:\"Chenla, system-ui\";s:4:\"slug\";s:6:\"chenla\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eWhfonUPL6Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Chenla\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/chenla/chenla-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/chenla/chenla.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:277;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Cherish\";s:10:\"fontFamily\";s:16:\"Cherish, cursive\";s:4:\"slug\";s:7:\"cherish\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iXCI6IJjg8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Cherish\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/cherish/cherish-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/cherish/cherish.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:278;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Cherry Bomb One\";s:10:\"fontFamily\";s:28:\"\"Cherry Bomb One\", system-ui\";s:4:\"slug\";s:15:\"cherry-bomb-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/cherrybombone/v8/y83DW4od1h6KlV3c6JJhRhGOdhrKCdpF41fr-w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Cherry Bomb One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/cherry-bomb-one/cherry-bomb-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/cherry-bomb-one/cherry-bomb-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:279;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Cherry Cream Soda\";s:10:\"fontFamily\";s:30:\"\"Cherry Cream Soda\", system-ui\";s:4:\"slug\";s:17:\"cherry-cream-soda\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd_Cd47DJ7G.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cherry Cream Soda\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cherry-cream-soda/cherry-cream-soda-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/cherry-cream-soda/cherry-cream-soda.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:280;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Cherry Swash\";s:10:\"fontFamily\";s:25:\"\"Cherry Swash\", system-ui\";s:4:\"slug\";s:12:\"cherry-swash\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/cherryswash/v20/i7dNIFByZjaNAMxtZcnfAy58RXi-EwWMbg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cherry Swash\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cherry-swash/cherry-swash-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cherryswash/v20/i7dSIFByZjaNAMxtZcnfAy5E_FeaHi6QZ3WfYg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cherry Swash\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cherry-swash/cherry-swash-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/cherry-swash/cherry-swash.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:281;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Chewy\";s:10:\"fontFamily\";s:16:\"Chewy, system-ui\";s:4:\"slug\";s:5:\"chewy\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk50IDMfO-ed.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chewy\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chewy/chewy-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/chewy/chewy.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:282;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Chicle\";s:10:\"fontFamily\";s:17:\"Chicle, system-ui\";s:4:\"slug\";s:6:\"chicle\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/chicle/v25/lJwG-pw9i2dqU-BDzGKuobYSxw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Chicle\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/chicle/chicle-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/chicle/chicle.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:283;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Chilanka\";s:10:\"fontFamily\";s:17:\"Chilanka, cursive\";s:4:\"slug\";s:8:\"chilanka\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJVI9EAZhTO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chilanka\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chilanka/chilanka-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/chilanka/chilanka.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:284;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Chivo\";s:10:\"fontFamily\";s:17:\"Chivo, sans-serif\";s:4:\"slug\";s:5:\"chivo\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_YhjukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_WxjukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjukmDSFXjQiQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Chivo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/chivo/chivo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:285;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Chivo Mono\";s:10:\"fontFamily\";s:23:\"\"Chivo Mono\", monospace\";s:4:\"slug\";s:10:\"chivo-mono\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Chivo Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono-900-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/chivo-mono/chivo-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:286;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Chokokutai\";s:10:\"fontFamily\";s:21:\"Chokokutai, system-ui\";s:4:\"slug\";s:10:\"chokokutai\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/chokokutai/v9/kmK4Zqw4HwvCeHGM8Fws9yvypu1Kr7I.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Chokokutai\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/chokokutai/chokokutai-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/chokokutai/chokokutai.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:287;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Chonburi\";s:10:\"fontFamily\";s:19:\"Chonburi, system-ui\";s:4:\"slug\";s:8:\"chonburi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/chonburi/v12/8AtqGs-wOpGRTBq66IWfFr3biAfZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Chonburi\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/chonburi/chonburi-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/chonburi/chonburi.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:288;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Cinzel\";s:10:\"fontFamily\";s:13:\"Cinzel, serif\";s:4:\"slug\";s:6:\"cinzel\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTY_vDE5ZdqU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cinzel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTY_vDE5ZdqU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cinzel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTY_vDE5ZdqU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cinzel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTY_vDE5ZdqU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cinzel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTY_vDE5ZdqU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cinzel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTY_vDE5ZdqU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cinzel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/cinzel/cinzel.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:289;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Cinzel Decorative\";s:10:\"fontFamily\";s:30:\"\"Cinzel Decorative\", system-ui\";s:4:\"slug\";s:17:\"cinzel-decorative\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cinzeldecorative/v16/daaCSScvJGqLYhG8nNt8KPPswUAPnh7RRs1LaCyC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cinzel Decorative\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cinzel-decorative/cinzel-decorative-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cinzeldecorative/v16/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelGQzCLlQXE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cinzel Decorative\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cinzel-decorative/cinzel-decorative-700-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cinzeldecorative/v16/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lGQzCLlQXE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cinzel Decorative\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cinzel-decorative/cinzel-decorative-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/cinzel-decorative/cinzel-decorative.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:290;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Clicker Script\";s:10:\"fontFamily\";s:25:\"\"Clicker Script\", cursive\";s:4:\"slug\";s:14:\"clicker-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rd2zqUKafv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Clicker Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/clicker-script/clicker-script-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/clicker-script/clicker-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:291;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Climate Crisis\";s:10:\"fontFamily\";s:27:\"\"Climate Crisis\", system-ui\";s:4:\"slug\";s:14:\"climate-crisis\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/climatecrisis/v7/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6iKUrGb7PsQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Climate Crisis\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/climate-crisis/climate-crisis-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/climate-crisis/climate-crisis.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:292;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Coda\";s:10:\"fontFamily\";s:15:\"Coda, system-ui\";s:4:\"slug\";s:4:\"coda\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUcMapaN39I.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Coda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/coda/coda-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTpumw9t1cX8.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Coda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/coda/coda-800-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/coda/coda.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:293;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Codystar\";s:10:\"fontFamily\";s:19:\"Codystar, system-ui\";s:4:\"slug\";s:8:\"codystar\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/codystar/v17/FwZf7-Q1xVk-40qxOuYsyuyuj0e29bfC.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Codystar\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/codystar/codystar-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/codystar/v17/FwZY7-Q1xVk-40qxOt6F4sijpFu_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Codystar\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/codystar/codystar-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/codystar/codystar.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:294;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Coiny\";s:10:\"fontFamily\";s:16:\"Coiny, system-ui\";s:4:\"slug\";s:5:\"coiny\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXweElSvO5Tc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Coiny\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/coiny/coiny-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/coiny/coiny.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:295;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Combo\";s:10:\"fontFamily\";s:16:\"Combo, system-ui\";s:4:\"slug\";s:5:\"combo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0nBu9y8Hf0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Combo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/combo/combo-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/combo/combo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:296;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Comfortaa\";s:10:\"fontFamily\";s:20:\"Comfortaa, system-ui\";s:4:\"slug\";s:9:\"comfortaa\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Comfortaa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/comfortaa/comfortaa-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Comfortaa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/comfortaa/comfortaa-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Comfortaa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/comfortaa/comfortaa-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Comfortaa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/comfortaa/comfortaa-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Comfortaa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/comfortaa/comfortaa-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/comfortaa/comfortaa.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:297;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Comforter\";s:10:\"fontFamily\";s:18:\"Comforter, cursive\";s:4:\"slug\";s:9:\"comforter\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/comforter/v7/H4clBXOCl8nQnlaql3Qa7ZG8iqeuag.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Comforter\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/comforter/comforter-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/comforter/comforter.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:298;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Comforter Brush\";s:10:\"fontFamily\";s:26:\"\"Comforter Brush\", cursive\";s:4:\"slug\";s:15:\"comforter-brush\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/comforterbrush/v7/Y4GTYa1xVSggrfzZI5WMjxRaOz0jxbL9Th8YYA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Comforter Brush\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/comforter-brush/comforter-brush-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/comforter-brush/comforter-brush.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:299;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Comic Neue\";s:10:\"fontFamily\";s:21:\"\"Comic Neue\", cursive\";s:4:\"slug\";s:10:\"comic-neue\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwp5eLwtHJlc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Comic Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplULilCNlcw_Q.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Comic Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx6jj5pN1MwI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Comic Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p57FwIwJePw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Comic Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwp5eLwtHJlc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Comic Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5ULilCNlcw_Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Comic Neue\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/comic-neue/comic-neue.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:300;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Coming Soon\";s:10:\"fontFamily\";s:22:\"\"Coming Soon\", cursive\";s:4:\"slug\";s:11:\"coming-soon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-XUjjzsykh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Coming Soon\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/coming-soon/coming-soon-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/coming-soon/coming-soon.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:301;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Comme\";s:10:\"fontFamily\";s:17:\"Comme, sans-serif\";s:4:\"slug\";s:5:\"comme\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Comme\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/comme/comme-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/comme/comme.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:302;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Commissioner\";s:10:\"fontFamily\";s:24:\"Commissioner, sans-serif\";s:4:\"slug\";s:12:\"commissioner\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPK7Fu0jUdk.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Commissioner\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/commissioner/commissioner.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:303;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Concert One\";s:10:\"fontFamily\";s:24:\"\"Concert One\", system-ui\";s:4:\"slug\";s:11:\"concert-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/concertone/v21/VEM1Ro9xs5PjtzCu-srDqRTghv-CuVAQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Concert One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/concert-one/concert-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/concert-one/concert-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:304;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Condiment\";s:10:\"fontFamily\";s:18:\"Condiment, cursive\";s:4:\"slug\";s:9:\"condiment\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/condiment/v24/pONk1hggFNmwvXALyH6Sron4o1vyCQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Condiment\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/condiment/condiment-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/condiment/condiment.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:305;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Content\";s:10:\"fontFamily\";s:18:\"Content, system-ui\";s:4:\"slug\";s:7:\"content\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaXyIiL0RCg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Content\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/content/content-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBi_fWCHvkAI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Content\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/content/content-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/content/content.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:306;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Contrail One\";s:10:\"fontFamily\";s:25:\"\"Contrail One\", system-ui\";s:4:\"slug\";s:12:\"contrail-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/contrailone/v19/eLGbP-j_JA-kG0_Zo51noafdYEvt_c092w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Contrail One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/contrail-one/contrail-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/contrail-one/contrail-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:307;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Convergence\";s:10:\"fontFamily\";s:23:\"Convergence, sans-serif\";s:4:\"slug\";s:11:\"convergence\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhfsU7Q8Cad.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Convergence\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/convergence/convergence-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/convergence/convergence.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:308;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Cookie\";s:10:\"fontFamily\";s:15:\"Cookie, cursive\";s:4:\"slug\";s:6:\"cookie\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/cookie/v21/syky-y18lb0tSbfNkACT9tPdpw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cookie\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cookie/cookie-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/cookie/cookie.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:309;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Copse\";s:10:\"fontFamily\";s:12:\"Copse, serif\";s:4:\"slug\";s:5:\"copse\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0dmHkihUb-A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Copse\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/copse/copse-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/copse/copse.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:310;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Corben\";s:10:\"fontFamily\";s:17:\"Corben, system-ui\";s:4:\"slug\";s:6:\"corben\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/corben/v21/LYjDdGzzklQtCMp9pQlEpVs3VQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Corben\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/corben/corben-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/corben/v21/LYjAdGzzklQtCMpFHCZgqHArXN7HWQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Corben\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/corben/corben-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/corben/corben.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:311;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Corinthia\";s:10:\"fontFamily\";s:18:\"Corinthia, cursive\";s:4:\"slug\";s:9:\"corinthia\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/corinthia/v11/wEO_EBrAnchaJyPMHE0FVPAL3EsHiA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Corinthia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/corinthia/corinthia-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/corinthia/v11/wEO6EBrAnchaJyPMHE097d8v0WAbgbLXQA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Corinthia\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/corinthia/corinthia-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/corinthia/corinthia.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:312;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Cormorant\";s:10:\"fontFamily\";s:16:\"Cormorant, serif\";s:4:\"slug\";s:9:\"cormorant\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Fg7A2uwYs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Fg7A2uwYs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Fg7A2uwYs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Fg7A2uwYs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Fg7A2uwYs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq7S-r0YvxdA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq7S-r0YvxdA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq7S-r0YvxdA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq7S-r0YvxdA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq7S-r0YvxdA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Cormorant\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:313;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Cormorant Garamond\";s:10:\"fontFamily\";s:27:\"\"Cormorant Garamond\", serif\";s:4:\"slug\";s:18:\"cormorant-garamond\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvvAWJ5heb_w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-IxBKL_y94.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjoq3FLsS6V7w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtKkyuF7w6C.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvvAWJ5heb_w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-IxBKL_y94.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vvAWJ5heb_w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-IxBKL_y94.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vvAWJ5heb_w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-IxBKL_y94.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Cormorant Garamond\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond-700-italic.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/cormorant-garamond/cormorant-garamond.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:314;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Cormorant Infant\";s:10:\"fontFamily\";s:25:\"\"Cormorant Infant\", serif\";s:4:\"slug\";s:16:\"cormorant-infant\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DYrQqcdJrk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhQ4UYNrn_Ig.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Uf2DsAXq4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DYrQqcdJrk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhQ4UYNrn_Ig.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DYrQqcdJrk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchQ4UYNrn_Ig.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DYrQqcdJrk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhQ4UYNrn_Ig.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Cormorant Infant\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant-700-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/cormorant-infant/cormorant-infant.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:315;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Cormorant SC\";s:10:\"fontFamily\";s:21:\"\"Cormorant SC\", serif\";s:4:\"slug\";s:12:\"cormorant-sc\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU-B3y8DOWGA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cormorant SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cormorant-sc/cormorant-sc-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwseqTow9Tbu-Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cormorant SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cormorant-sc/cormorant-sc-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU-B3y8DOWGA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cormorant SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cormorant-sc/cormorant-sc-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU-B3y8DOWGA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cormorant SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cormorant-sc/cormorant-sc-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU-B3y8DOWGA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Cormorant SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/cormorant-sc/cormorant-sc-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/cormorant-sc/cormorant-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:316;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Cormorant Unicase\";s:10:\"fontFamily\";s:26:\"\"Cormorant Unicase\", serif\";s:4:\"slug\";s:17:\"cormorant-unicase\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucq7Gy0DRzS.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Unicase\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-unicase/cormorant-unicase-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vWnsMnx3C9.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Unicase\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-unicase/cormorant-unicase-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cq7Gy0DRzS.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Unicase\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-unicase/cormorant-unicase-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcq7Gy0DRzS.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Unicase\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-unicase/cormorant-unicase-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecq7Gy0DRzS.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Unicase\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-unicase/cormorant-unicase-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/cormorant-unicase/cormorant-unicase.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:317;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Cormorant Upright\";s:10:\"fontFamily\";s:26:\"\"Cormorant Upright\", serif\";s:4:\"slug\";s:17:\"cormorant-upright\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDpU9X6RPzQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Upright\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-upright/cormorant-upright-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vQjjTkeMnz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Upright\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-upright/cormorant-upright-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDpU9X6RPzQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Upright\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-upright/cormorant-upright-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDpU9X6RPzQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Upright\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-upright/cormorant-upright-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDpU9X6RPzQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Cormorant Upright\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/cormorant-upright/cormorant-upright-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/cormorant-upright/cormorant-upright.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:318;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Courgette\";s:10:\"fontFamily\";s:18:\"Courgette, cursive\";s:4:\"slug\";s:9:\"courgette\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/courgette/v17/wEO_EBrAnc9BLjLQAUkFVPAL3EsHiA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Courgette\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/courgette/courgette-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/courgette/courgette.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:319;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Courier Prime\";s:10:\"fontFamily\";s:26:\"\"Courier Prime\", monospace\";s:4:\"slug\";s:13:\"courier-prime\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/courierprime/v9/u-450q2lgwslOqpF_6gQ8kELWwNjW-_-tvg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Courier Prime\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/courier-prime/courier-prime-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/courierprime/v9/u-4n0q2lgwslOqpF_6gQ8kELawRpWs37pvjxPA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Courier Prime\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/courier-prime/courier-prime-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/courierprime/v9/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-LVqvHoJXw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Courier Prime\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/courier-prime/courier-prime-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/courierprime/v9/u-4i0q2lgwslOqpF_6gQ8kELawRR4-Lfq9PtNXyeAg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Courier Prime\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/courier-prime/courier-prime-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/courier-prime/courier-prime.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:320;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Cousine\";s:10:\"fontFamily\";s:18:\"Cousine, monospace\";s:4:\"slug\";s:7:\"cousine\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/cousine/v27/d6lIkaiiRdih4SpPzSYlzTbtz9k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Cousine\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/cousine/cousine-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/cousine/v27/d6lKkaiiRdih4SpP_SEvzBTo39l8hw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Cousine\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/cousine/cousine-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/cousine/v27/d6lNkaiiRdih4SpP9Z8K6TvG09BlnmQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Cousine\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/cousine/cousine-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/cousine/v27/d6lPkaiiRdih4SpP_SEXdTvM0vJgjmRpOA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Cousine\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/cousine/cousine-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/cousine/cousine.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:321;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Coustard\";s:10:\"fontFamily\";s:15:\"Coustard, serif\";s:4:\"slug\";s:8:\"coustard\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UKvWXuROTd.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Coustard\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/coustard/coustard-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHjb_jU3eRL.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Coustard\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/coustard/coustard-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/coustard/coustard.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:322;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Covered By Your Grace\";s:10:\"fontFamily\";s:32:\"\"Covered By Your Grace\", cursive\";s:4:\"slug\";s:21:\"covered-by-your-grace\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Covered By Your Grace\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/covered-by-your-grace/covered-by-your-grace-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/covered-by-your-grace/covered-by-your-grace.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:323;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Crafty Girls\";s:10:\"fontFamily\";s:23:\"\"Crafty Girls\", cursive\";s:4:\"slug\";s:12:\"crafty-girls\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Crafty Girls\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crafty-girls/crafty-girls-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/crafty-girls/crafty-girls.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:324;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Creepster\";s:10:\"fontFamily\";s:20:\"Creepster, system-ui\";s:4:\"slug\";s:9:\"creepster\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hcHf4XB0Tow.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Creepster\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/creepster/creepster-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/creepster/creepster.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:325;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Crete Round\";s:10:\"fontFamily\";s:20:\"\"Crete Round\", serif\";s:4:\"slug\";s:11:\"crete-round\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1527zAKnxN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crete Round\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crete-round/crete-round-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0b3iL2xNhKc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crete Round\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crete-round/crete-round-400-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/crete-round/crete-round.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:326;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Crimson Pro\";s:10:\"fontFamily\";s:20:\"\"Crimson Pro\", serif\";s:4:\"slug\";s:11:\"crimson-pro\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8PZE_VNWoyQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/crimsonpro/v24/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs-dtC4yZNE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Crimson Pro\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/crimson-pro/crimson-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:327;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Crimson Text\";s:10:\"fontFamily\";s:21:\"\"Crimson Text\", serif\";s:4:\"slug\";s:12:\"crimson-text\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvbQJSA_JN3Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Crimson Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghTIfdd3ahG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Crimson Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2DtlR1LFffg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Crimson Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Crimson Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text-600-italic.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12DtlR1LFffg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Crimson Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Crimson Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/crimson-text/crimson-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:328;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Croissant One\";s:10:\"fontFamily\";s:26:\"\"Croissant One\", system-ui\";s:4:\"slug\";s:13:\"croissant-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/croissantone/v26/3y9n6bU9bTPg4m8NDy3Kq24UM39qn5cdJ-4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Croissant One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/croissant-one/croissant-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/croissant-one/croissant-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:329;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Crushed\";s:10:\"fontFamily\";s:18:\"Crushed, system-ui\";s:4:\"slug\";s:7:\"crushed\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/crushed/v29/U9Mc6dym6WXImTlFT1wfuIqyLzA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Crushed\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/crushed/crushed-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/crushed/crushed.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:330;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Cuprum\";s:10:\"fontFamily\";s:18:\"Cuprum, sans-serif\";s:4:\"slug\";s:6:\"cuprum\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjnSJjQjgnU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjnSJjQjgnU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjnSJjQjgnU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjnSJjQjgnU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YJxYmknUPEA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YJxYmknUPEA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYJxYmknUPEA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYJxYmknUPEA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Cuprum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/cuprum/cuprum.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:331;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Cute Font\";s:10:\"fontFamily\";s:22:\"\"Cute Font\", system-ui\";s:4:\"slug\";s:9:\"cute-font\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/cutefont/v22/Noaw6Uny2oWPbSHMrY6vnZNVNC9hkw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Cute Font\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/cute-font/cute-font-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/cute-font/cute-font.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:332;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Cutive\";s:10:\"fontFamily\";s:13:\"Cutive, serif\";s:4:\"slug\";s:6:\"cutive\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/cutive/v21/NaPZcZ_fHOhV3Ip7SvhDoyqlZQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Cutive\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/cutive/cutive-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/cutive/cutive.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:333;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Cutive Mono\";s:10:\"fontFamily\";s:24:\"\"Cutive Mono\", monospace\";s:4:\"slug\";s:11:\"cutive-mono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/cutivemono/v20/m8JWjfRfY7WVjVi2E-K9H5RARG-K3Mud.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Cutive Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/cutive-mono/cutive-mono-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/cutive-mono/cutive-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:334;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"DM Mono\";s:10:\"fontFamily\";s:20:\"\"DM Mono\", monospace\";s:4:\"slug\";s:7:\"dm-mono\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvrGyIYGnbKX9Rlk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/dmmono/v14/aFTT7PB1QTsUX8KYth-orYatbYf4VllXuA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYhhiaBYyMcKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/dmmono/v14/aFTW7PB1QTsUX8KYth-QBK6JYKzkXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/dmmono/v14/aFTT7PB1QTsUX8KYth-o9YetbYf4VllXuA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono-500-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/dm-mono/dm-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:335;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"DM Sans\";s:10:\"fontFamily\";s:21:\"\"DM Sans\", sans-serif\";s:4:\"slug\";s:7:\"dm-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAop1hS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpxhS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpthS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thS2f3ZGMZpg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDG32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8JDW32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat_XDW32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9XCm32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8JCm32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8gCm32RmYJpso5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"DM Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/dm-sans/dm-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:336;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"DM Serif Display\";s:10:\"fontFamily\";s:25:\"\"DM Serif Display\", serif\";s:4:\"slug\";s:16:\"dm-serif-display\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFnOHM81r4j6k0gjAW3mujVU2B2K_J709jy92k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"DM Serif Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/dm-serif-display/dm-serif-display-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx0vr352np3Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"DM Serif Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/dm-serif-display/dm-serif-display-400-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/dm-serif-display/dm-serif-display.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:337;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"DM Serif Text\";s:10:\"fontFamily\";s:22:\"\"DM Serif Text\", serif\";s:4:\"slug\";s:13:\"dm-serif-text\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"DM Serif Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dm-serif-text/dm-serif-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFXVAMArZKqQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"DM Serif Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dm-serif-text/dm-serif-text-400-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/dm-serif-text/dm-serif-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:338;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Dai Banna SIL\";s:10:\"fontFamily\";s:22:\"\"Dai Banna SIL\", serif\";s:4:\"slug\";s:13:\"dai-banna-sil\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tYKoDs_KOgMX95A.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyygsjAOyES55D3Vg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-4wj0AJWmpwGyJ2uEoA4I7jSuAKsLhJgo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-mwj0AJWmpwGyJ2uEoA4I7vSyKK-DkNgoO7g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tdqpDs_KOgMX95A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyy2snAOyES55D3Vg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tfauDs_KOgMX95A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyy9s7AOyES55D3Vg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tZKvDs_KOgMX95A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyyks_AOyES55D3Vg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Dai Banna SIL\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/dai-banna-sil/dai-banna-sil.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:339;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Damion\";s:10:\"fontFamily\";s:15:\"Damion, cursive\";s:4:\"slug\";s:6:\"damion\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUaGY3MTFgVg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Damion\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/damion/damion-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/damion/damion.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:340;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Dancing Script\";s:10:\"fontFamily\";s:25:\"\"Dancing Script\", cursive\";s:4:\"slug\";s:14:\"dancing-script\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHSOB9ptDqpw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Dancing Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/dancing-script/dancing-script-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHSOB9ptDqpw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Dancing Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/dancing-script/dancing-script-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HSOB9ptDqpw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Dancing Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/dancing-script/dancing-script-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HSOB9ptDqpw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Dancing Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/dancing-script/dancing-script-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/dancing-script/dancing-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:341;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Dangrek\";s:10:\"fontFamily\";s:18:\"Dangrek, system-ui\";s:4:\"slug\";s:7:\"dangrek\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/dangrek/v30/LYjCdG30nEgoH8E2gCZqqVIuTN4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Dangrek\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/dangrek/dangrek-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/dangrek/dangrek.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:342;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Darker Grotesque\";s:10:\"fontFamily\";s:30:\"\"Darker Grotesque\", sans-serif\";s:4:\"slug\";s:16:\"darker-grotesque\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXxpqn73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXw3qn73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXwFqn73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzprX73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzQrX73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXy3rX73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXyerX73-XFyZFUB.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Darker Grotesque\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/darker-grotesque/darker-grotesque.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:343;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Darumadrop One\";s:10:\"fontFamily\";s:27:\"\"Darumadrop One\", system-ui\";s:4:\"slug\";s:14:\"darumadrop-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/darumadropone/v10/cY9cfjeIW11dpCKgRLi675a87IhCBJOxZQPp.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Darumadrop One\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/darumadrop-one/darumadrop-one-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/darumadrop-one/darumadrop-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:344;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"David Libre\";s:10:\"fontFamily\";s:20:\"\"David Libre\", serif\";s:4:\"slug\";s:11:\"david-libre\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l56p6TYS-Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"David Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/david-libre/david-libre-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qeSjORSo9W.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"David Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/david-libre/david-libre-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqeSjORSo9W.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"David Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/david-libre/david-libre-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/david-libre/david-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:345;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Dawning of a New Day\";s:10:\"fontFamily\";s:31:\"\"Dawning of a New Day\", cursive\";s:4:\"slug\";s:20:\"dawning-of-a-new-day\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/dawningofanewday/v20/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8ehWJGNoBE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Dawning of a New Day\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/dawning-of-a-new-day/dawning-of-a-new-day-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/dawning-of-a-new-day/dawning-of-a-new-day.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:346;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Days One\";s:10:\"fontFamily\";s:22:\"\"Days One\", sans-serif\";s:4:\"slug\";s:8:\"days-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/daysone/v18/mem9YaCnxnKRiYZOCLYQeLkWVNBt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Days One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/days-one/days-one-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/days-one/days-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:347;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Dekko\";s:10:\"fontFamily\";s:14:\"Dekko, cursive\";s:4:\"slug\";s:5:\"dekko\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/dekko/v21/46khlb_wWjfSrttAR0vsfl1B.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dekko\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dekko/dekko-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/dekko/dekko.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:348;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Dela Gothic One\";s:10:\"fontFamily\";s:28:\"\"Dela Gothic One\", system-ui\";s:4:\"slug\";s:15:\"dela-gothic-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/delagothicone/v15/hESp6XxvMDRA-2eD0lXpDa6QkBAGQEsJQAlbUA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Dela Gothic One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/dela-gothic-one/dela-gothic-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/dela-gothic-one/dela-gothic-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:349;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Delicious Handrawn\";s:10:\"fontFamily\";s:29:\"\"Delicious Handrawn\", cursive\";s:4:\"slug\";s:18:\"delicious-handrawn\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/delicioushandrawn/v8/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ112ZpDd6u3AQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Delicious Handrawn\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/delicious-handrawn/delicious-handrawn-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/delicious-handrawn/delicious-handrawn.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:350;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Delius\";s:10:\"fontFamily\";s:15:\"Delius, cursive\";s:4:\"slug\";s:6:\"delius\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/delius/v19/PN_xRfK0pW_9e1rtZMI-jT3L_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Delius\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/delius/delius-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/delius/delius.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:351;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Delius Swash Caps\";s:10:\"fontFamily\";s:28:\"\"Delius Swash Caps\", cursive\";s:4:\"slug\";s:17:\"delius-swash-caps\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/deliusswashcaps/v23/oY1E8fPLr7v4JWCExZpWebxVKORpXXeYKmeBvEYs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Delius Swash Caps\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/delius-swash-caps/delius-swash-caps-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/delius-swash-caps/delius-swash-caps.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:352;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Delius Unicase\";s:10:\"fontFamily\";s:25:\"\"Delius Unicase\", cursive\";s:4:\"slug\";s:14:\"delius-unicase\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/deliusunicase/v28/845BNMEwEIOVT8BmgfSzIr_6mmLCd-73LXWs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Delius Unicase\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/delius-unicase/delius-unicase-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/deliusunicase/v28/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr6BmmlS5aw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Delius Unicase\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/delius-unicase/delius-unicase-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/delius-unicase/delius-unicase.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:353;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Della Respira\";s:10:\"fontFamily\";s:22:\"\"Della Respira\", serif\";s:4:\"slug\";s:13:\"della-respira\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dellarespira/v22/RLp5K5v44KaueWI6iEJQBiGPRfwSu6EuTHo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Della Respira\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/della-respira/della-respira-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/della-respira/della-respira.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:354;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Denk One\";s:10:\"fontFamily\";s:22:\"\"Denk One\", sans-serif\";s:4:\"slug\";s:8:\"denk-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/denkone/v19/dg4m_pzhrqcFb2IzROtCpbglShon.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Denk One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/denk-one/denk-one-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/denk-one/denk-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:355;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Devonshire\";s:10:\"fontFamily\";s:19:\"Devonshire, cursive\";s:4:\"slug\";s:10:\"devonshire\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/devonshire/v27/46kqlbDwWirWr4gtBD2BX0Bq01lYAZM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Devonshire\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/devonshire/devonshire-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/devonshire/devonshire.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:356;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Dhurjati\";s:10:\"fontFamily\";s:20:\"Dhurjati, sans-serif\";s:4:\"slug\";s:8:\"dhurjati\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/dhurjati/v24/_6_8ED3gSeatXfFiFX33SKQtuTA2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Dhurjati\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/dhurjati/dhurjati-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/dhurjati/dhurjati.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:357;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Didact Gothic\";s:10:\"fontFamily\";s:27:\"\"Didact Gothic\", sans-serif\";s:4:\"slug\";s:13:\"didact-gothic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUmSp0LlcyQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Didact Gothic\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/didact-gothic/didact-gothic-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/didact-gothic/didact-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:358;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Diphylleia\";s:10:\"fontFamily\";s:17:\"Diphylleia, serif\";s:4:\"slug\";s:10:\"diphylleia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/diphylleia/v1/DtVmJxCtRKMixK4_HXsIulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Diphylleia\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/diphylleia/diphylleia-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/diphylleia/diphylleia.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:359;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Diplomata\";s:10:\"fontFamily\";s:20:\"Diplomata, system-ui\";s:4:\"slug\";s:9:\"diplomata\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/diplomata/v31/Cn-0JtiMXwhNwp-wKxyfZWxYrdM9Sg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Diplomata\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/diplomata/diplomata-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/diplomata/diplomata.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:360;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Diplomata SC\";s:10:\"fontFamily\";s:25:\"\"Diplomata SC\", system-ui\";s:4:\"slug\";s:12:\"diplomata-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/diplomatasc/v28/buExpoi3ecvs3kidKgBJo2kf_f5Oaiw4cw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Diplomata SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/diplomata-sc/diplomata-sc-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/diplomata-sc/diplomata-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:361;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Do Hyeon\";s:10:\"fontFamily\";s:22:\"\"Do Hyeon\", sans-serif\";s:4:\"slug\";s:8:\"do-hyeon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/dohyeon/v18/TwMN-I8CRRU2zM86HFEyZwaH__-C.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Do Hyeon\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/do-hyeon/do-hyeon-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/do-hyeon/do-hyeon.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:362;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Dokdo\";s:10:\"fontFamily\";s:16:\"Dokdo, system-ui\";s:4:\"slug\";s:5:\"dokdo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/dokdo/v17/esDf315XNuCBLxLt4NaMlKcH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dokdo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dokdo/dokdo-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/dokdo/dokdo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:363;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Domine\";s:10:\"fontFamily\";s:13:\"Domine, serif\";s:4:\"slug\";s:6:\"domine\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/domine/v20/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI1gVErGuW8Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Domine\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/domine/domine-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/domine/v20/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI1gVErGuW8Q.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Domine\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/domine/domine-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/domine/v20/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI1gVErGuW8Q.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Domine\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/domine/domine-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/domine/v20/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI1gVErGuW8Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Domine\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/domine/domine-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/domine/domine.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:364;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Donegal One\";s:10:\"fontFamily\";s:20:\"\"Donegal One\", serif\";s:4:\"slug\";s:11:\"donegal-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRARG-K3Mud.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Donegal One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/donegal-one/donegal-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/donegal-one/donegal-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:365;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Dongle\";s:10:\"fontFamily\";s:18:\"Dongle, sans-serif\";s:4:\"slug\";s:6:\"dongle\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/dongle/v12/sJoG3Ltdjt6VPkqeEcxrZzWNzXvVPA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Dongle\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/dongle/dongle-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/dongle/v12/sJoF3Ltdjt6VPkqmuORPah6RxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Dongle\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/dongle/dongle-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/dongle/v12/sJoG3Ltdjt6VPkqeActrZzWNzXvVPA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Dongle\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/dongle/dongle-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/dongle/dongle.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:366;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Doppio One\";s:10:\"fontFamily\";s:24:\"\"Doppio One\", sans-serif\";s:4:\"slug\";s:10:\"doppio-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lg4hKGpe5Fg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Doppio One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/doppio-one/doppio-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/doppio-one/doppio-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:367;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Dorsa\";s:10:\"fontFamily\";s:17:\"Dorsa, sans-serif\";s:4:\"slug\";s:5:\"dorsa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/dorsa/v27/yYLn0hjd0OGwqo443XCFxAnQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dorsa\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dorsa/dorsa-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/dorsa/dorsa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:368;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Dosis\";s:10:\"fontFamily\";s:17:\"Dosis, sans-serif\";s:4:\"slug\";s:5:\"dosis\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Dosis\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis-800-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/dosis/dosis.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:369;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"DotGothic16\";s:10:\"fontFamily\";s:25:\"\"DotGothic16\", sans-serif\";s:4:\"slug\";s:12:\"dotgothic-16\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/dotgothic16/v17/v6-QGYjBJFKgyw5nSoDAGE7O435YPFrT.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"DotGothic16\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/dotgothic16/dotgothic16-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/dotgothic16/dotgothic16.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:370;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Dr Sugiyama\";s:10:\"fontFamily\";s:22:\"\"Dr Sugiyama\", cursive\";s:4:\"slug\";s:11:\"dr-sugiyama\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/drsugiyama/v28/HTxoL2k4N3O9n5I1boGI7abUM4-t-g7y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Dr Sugiyama\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/dr-sugiyama/dr-sugiyama-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/dr-sugiyama/dr-sugiyama.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:371;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Duru Sans\";s:10:\"fontFamily\";s:23:\"\"Duru Sans\", sans-serif\";s:4:\"slug\";s:9:\"duru-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxSvfYdN-WZw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Duru Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/duru-sans/duru-sans-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/duru-sans/duru-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:372;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"DynaPuff\";s:10:\"fontFamily\";s:19:\"DynaPuff, system-ui\";s:4:\"slug\";s:8:\"dynapuff\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6Y3rSRs4wn8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"DynaPuff\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/dynapuff/dynapuff-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6Y3rSRs4wn8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"DynaPuff\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/dynapuff/dynapuff-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6Y3rSRs4wn8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"DynaPuff\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/dynapuff/dynapuff-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6Y3rSRs4wn8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"DynaPuff\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/dynapuff/dynapuff-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/dynapuff/dynapuff.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:373;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Dynalight\";s:10:\"fontFamily\";s:20:\"Dynalight, system-ui\";s:4:\"slug\";s:9:\"dynalight\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/dynalight/v22/1Ptsg8LOU_aOmQvTsF4IT4trDfGGxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Dynalight\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/dynalight/dynalight-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/dynalight/dynalight.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:374;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"EB Garamond\";s:10:\"fontFamily\";s:20:\"\"EB Garamond\", serif\";s:4:\"slug\";s:11:\"eb-garamond\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUBoV-e6yHgQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUBoV-e6yHgQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUBoV-e6yHgQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUBoV-e6yHgQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUBoV-e6yHgQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI9_WamXgXFI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI9_WamXgXFI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-500-italic.svg\";}i:7;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR49_WamXgXFI.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR49_WamXgXFI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-700-italic.svg\";}i:9;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/ebgaramond/v27/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R49_WamXgXFI.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"EB Garamond\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond-800-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/eb-garamond/eb-garamond.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:375;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Eagle Lake\";s:10:\"fontFamily\";s:21:\"\"Eagle Lake\", cursive\";s:4:\"slug\";s:10:\"eagle-lake\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/eaglelake/v24/ptRMTiqbbuNJDOiKj9wG5OvyKQNute8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Eagle Lake\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/eagle-lake/eagle-lake-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/eagle-lake/eagle-lake.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:376;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"East Sea Dokdo\";s:10:\"fontFamily\";s:25:\"\"East Sea Dokdo\", cursive\";s:4:\"slug\";s:14:\"east-sea-dokdo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/eastseadokdo/v22/xfuo0Wn2V2_KanASqXSZp22m05_fGavYS18y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"East Sea Dokdo\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/east-sea-dokdo/east-sea-dokdo-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/east-sea-dokdo/east-sea-dokdo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:377;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Eater\";s:10:\"fontFamily\";s:16:\"Eater, system-ui\";s:4:\"slug\";s:5:\"eater\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/eater/v25/mtG04_FCK7bOvpuzu3FwsXsR.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Eater\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/eater/eater-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/eater/eater.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:378;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Economica\";s:10:\"fontFamily\";s:21:\"Economica, sans-serif\";s:4:\"slug\";s:9:\"economica\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/economica/v15/Qw3fZQZaHCLgIWa29ZBrNMgAAl1lfQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Economica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/economica/economica-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/economica/v15/Qw3ZZQZaHCLgIWa29ZBbM8IBIFh1fWUl.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Economica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/economica/economica-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/economica/v15/Qw3aZQZaHCLgIWa29ZBTjeckD3Z5dHw8iw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Economica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/economica/economica-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/economica/v15/Qw3EZQZaHCLgIWa29ZBbM_q4D3x4Vnksi4M7.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Economica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/economica/economica-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/economica/economica.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:379;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Eczar\";s:10:\"fontFamily\";s:12:\"Eczar, serif\";s:4:\"slug\";s:5:\"eczar\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WrDIVKWJKWg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Eczar\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/eczar/eczar-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WrDIVKWJKWg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Eczar\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/eczar/eczar-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWrDIVKWJKWg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Eczar\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/eczar/eczar-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWrDIVKWJKWg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Eczar\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/eczar/eczar-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWrDIVKWJKWg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Eczar\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/eczar/eczar-800-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/eczar/eczar.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:380;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Edu NSW ACT Foundation\";s:10:\"fontFamily\";s:33:\"\"Edu NSW ACT Foundation\", cursive\";s:4:\"slug\";s:22:\"edu-nsw-act-foundation\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGOeC-sfguJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu NSW ACT Foundation\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGOeC-sfguJ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu NSW ACT Foundation\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGOeC-sfguJ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu NSW ACT Foundation\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGOeC-sfguJ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu NSW ACT Foundation\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/edu-nsw-act-foundation/edu-nsw-act-foundation.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:381;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Edu QLD Beginner\";s:10:\"fontFamily\";s:27:\"\"Edu QLD Beginner\", cursive\";s:4:\"slug\";s:16:\"edu-qld-beginner\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oeei6vyVWCN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu QLD Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-qld-beginner/edu-qld-beginner-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oeei6vyVWCN.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu QLD Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-qld-beginner/edu-qld-beginner-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yeei6vyVWCN.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu QLD Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-qld-beginner/edu-qld-beginner-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yeei6vyVWCN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu QLD Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-qld-beginner/edu-qld-beginner-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/edu-qld-beginner/edu-qld-beginner.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:382;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Edu SA Beginner\";s:10:\"fontFamily\";s:26:\"\"Edu SA Beginner\", cursive\";s:4:\"slug\";s:15:\"edu-sa-beginner\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fohyBydUEDs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Edu SA Beginner\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/edu-sa-beginner/edu-sa-beginner-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fohyBydUEDs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Edu SA Beginner\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/edu-sa-beginner/edu-sa-beginner-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fohyBydUEDs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Edu SA Beginner\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/edu-sa-beginner/edu-sa-beginner-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fohyBydUEDs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Edu SA Beginner\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/edu-sa-beginner/edu-sa-beginner-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/edu-sa-beginner/edu-sa-beginner.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:383;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Edu TAS Beginner\";s:10:\"fontFamily\";s:27:\"\"Edu TAS Beginner\", cursive\";s:4:\"slug\";s:16:\"edu-tas-beginner\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkuBWRhvk02.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu TAS Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-tas-beginner/edu-tas-beginner-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkuBWRhvk02.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu TAS Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-tas-beginner/edu-tas-beginner-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkuBWRhvk02.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu TAS Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-tas-beginner/edu-tas-beginner-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkuBWRhvk02.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Edu TAS Beginner\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/edu-tas-beginner/edu-tas-beginner-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/edu-tas-beginner/edu-tas-beginner.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:384;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Edu VIC WA NT Beginner\";s:10:\"fontFamily\";s:33:\"\"Edu VIC WA NT Beginner\", cursive\";s:4:\"slug\";s:22:\"edu-vic-wa-nt-beginner\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmAXwnpkeGR.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu VIC WA NT Beginner\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmAXwnpkeGR.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu VIC WA NT Beginner\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mAXwnpkeGR.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu VIC WA NT Beginner\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mAXwnpkeGR.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Edu VIC WA NT Beginner\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:385;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"El Messiri\";s:10:\"fontFamily\";s:24:\"\"El Messiri\", sans-serif\";s:4:\"slug\";s:10:\"el-messiri\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65lhj3OoapG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"El Messiri\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/el-messiri/el-messiri-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65lhj3OoapG.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"El Messiri\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/el-messiri/el-messiri-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5lhj3OoapG.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"El Messiri\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/el-messiri/el-messiri-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5lhj3OoapG.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"El Messiri\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/el-messiri/el-messiri-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/el-messiri/el-messiri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:386;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Electrolize\";s:10:\"fontFamily\";s:23:\"Electrolize, sans-serif\";s:4:\"slug\";s:11:\"electrolize\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/electrolize/v18/cIf5Ma1dtE0zSiGSiED7AUEDso5tQafB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Electrolize\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/electrolize/electrolize-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/electrolize/electrolize.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:387;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Elsie\";s:10:\"fontFamily\";s:16:\"Elsie, system-ui\";s:4:\"slug\";s:5:\"elsie\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/elsie/v24/BCanqZABrez54yYr9slAeLgX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Elsie\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/elsie/elsie-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/elsie/v24/BCaqqZABrez54x6q2-1NU6QeXSBk.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Elsie\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/elsie/elsie-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/elsie/elsie.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:388;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Elsie Swash Caps\";s:10:\"fontFamily\";s:29:\"\"Elsie Swash Caps\", system-ui\";s:4:\"slug\";s:16:\"elsie-swash-caps\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/elsieswashcaps/v23/845DNN8xGZyVX5MVo_upKf7KnjK0fe_VKGWsUo8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Elsie Swash Caps\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/elsie-swash-caps/elsie-swash-caps-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/elsieswashcaps/v23/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DGiHToawrdU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Elsie Swash Caps\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/elsie-swash-caps/elsie-swash-caps-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/elsie-swash-caps/elsie-swash-caps.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:389;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Emblema One\";s:10:\"fontFamily\";s:24:\"\"Emblema One\", system-ui\";s:4:\"slug\";s:11:\"emblema-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIREHl57G_f_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Emblema One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/emblema-one/emblema-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/emblema-one/emblema-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:390;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Emilys Candy\";s:10:\"fontFamily\";s:25:\"\"Emilys Candy\", system-ui\";s:4:\"slug\";s:12:\"emilys-candy\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/emilyscandy/v19/2EbgL-1mD1Rnb0OGKudbk0y5qtxrX84JjA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Emilys Candy\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/emilys-candy/emilys-candy-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/emilys-candy/emilys-candy.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:391;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Encode Sans\";s:10:\"fontFamily\";s:25:\"\"Encode Sans\", sans-serif\";s:4:\"slug\";s:11:\"encode-sans\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtCP7FJCt2c.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Encode Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/encode-sans/encode-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:392;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Encode Sans Condensed\";s:10:\"fontFamily\";s:35:\"\"Encode Sans Condensed\", sans-serif\";s:4:\"slug\";s:21:\"encode-sans-condensed\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-MLQoFI2KR.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGhKWNDw8VIw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipAiQJKnuIFA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Encode Sans Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed-900-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-condensed/encode-sans-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:393;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Encode Sans Expanded\";s:10:\"fontFamily\";s:34:\"\"Encode Sans Expanded\", sans-serif\";s:4:\"slug\";s:20:\"encode-sans-expanded\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQZicoAbJlw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqonIwdAd5Ab.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNNXIwSP0XD.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Encode Sans Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded-900-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-expanded/encode-sans-expanded.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:394;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Encode Sans SC\";s:10:\"fontFamily\";s:28:\"\"Encode Sans SC\", sans-serif\";s:4:\"slug\";s:14:\"encode-sans-sc\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/encodesanssc/v9/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8cpNOEEClIc.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Encode Sans SC\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-sc/encode-sans-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:395;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Encode Sans Semi Condensed\";s:10:\"fontFamily\";s:40:\"\"Encode Sans Semi Condensed\", sans-serif\";s:4:\"slug\";s:26:\"encode-sans-semi-condensed\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MRtQ9jpVUA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yU_sVPRsjp.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FCbdTgTFmr.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Encode Sans Semi Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-900-normal.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-condensed/encode-sans-semi-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:396;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Encode Sans Semi Expanded\";s:10:\"fontFamily\";s:39:\"\"Encode Sans Semi Expanded\", sans-serif\";s:4:\"slug\";s:25:\"encode-sans-semi-expanded\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41LgrlKXeOEA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC48_LyjgOXc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyXLJX6XCWU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Encode Sans Semi Expanded\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-900-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/encode-sans-semi-expanded/encode-sans-semi-expanded.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:397;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Engagement\";s:10:\"fontFamily\";s:19:\"Engagement, cursive\";s:4:\"slug\";s:10:\"engagement\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/engagement/v26/x3dlckLDZbqa7RUs9MFVXN8ssybsHQI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Engagement\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/engagement/engagement-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/engagement/engagement.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:398;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Englebert\";s:10:\"fontFamily\";s:21:\"Englebert, sans-serif\";s:4:\"slug\";s:9:\"englebert\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/englebert/v21/xn7iYH8w2XGrC8AR4HSxSvfYdN-WZw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Englebert\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/englebert/englebert-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/englebert/englebert.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:399;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Enriqueta\";s:10:\"fontFamily\";s:16:\"Enriqueta, serif\";s:4:\"slug\";s:9:\"enriqueta\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/enriqueta/v17/goksH6L7AUFrRvV44HVTTkCjkP1Yog.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Enriqueta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/enriqueta/enriqueta-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/enriqueta/v17/gokpH6L7AUFrRvV44HVrv2mHndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Enriqueta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/enriqueta/enriqueta-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/enriqueta/v17/gokpH6L7AUFrRvV44HVrk26HndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Enriqueta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/enriqueta/enriqueta-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/enriqueta/v17/gokpH6L7AUFrRvV44HVr92-HndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Enriqueta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/enriqueta/enriqueta-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/enriqueta/enriqueta.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:400;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Ephesis\";s:10:\"fontFamily\";s:16:\"Ephesis, cursive\";s:4:\"slug\";s:7:\"ephesis\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/ephesis/v9/uU9PCBUS8IerL2VG7xbb3vyHmlI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ephesis\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ephesis/ephesis-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/ephesis/ephesis.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:401;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Epilogue\";s:10:\"fontFamily\";s:20:\"Epilogue, sans-serif\";s:4:\"slug\";s:8:\"epilogue\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiCZXVigHPVA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_UqATfVHNU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Epilogue\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/epilogue/epilogue.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:402;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Erica One\";s:10:\"fontFamily\";s:22:\"\"Erica One\", system-ui\";s:4:\"slug\";s:9:\"erica-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/ericaone/v27/WBLnrEXccV9VGrOKmGD1Xk_MJMGxiQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Erica One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/erica-one/erica-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/erica-one/erica-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:403;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Esteban\";s:10:\"fontFamily\";s:14:\"Esteban, serif\";s:4:\"slug\";s:7:\"esteban\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdO6D5jokU8E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Esteban\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/esteban/esteban-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/esteban/esteban.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:404;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Estonia\";s:10:\"fontFamily\";s:16:\"Estonia, cursive\";s:4:\"slug\";s:7:\"estonia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/estonia/v11/7Au_p_4ijSecA1yHCCf8zkwMIFg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Estonia\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/estonia/estonia-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/estonia/estonia.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:405;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Euphoria Script\";s:10:\"fontFamily\";s:26:\"\"Euphoria Script\", cursive\";s:4:\"slug\";s:15:\"euphoria-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/euphoriascript/v20/mFTpWb0X2bLb_cx6To2B8GpKoD5alvZT1D8x7Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Euphoria Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/euphoria-script/euphoria-script-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/euphoria-script/euphoria-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:406;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Ewert\";s:10:\"fontFamily\";s:16:\"Ewert, system-ui\";s:4:\"slug\";s:5:\"ewert\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/ewert/v25/va9I4kzO2tFODYBqS-J3kbDP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Ewert\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/ewert/ewert-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/ewert/ewert.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:407;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Exo\";s:10:\"fontFamily\";s:15:\"Exo, sans-serif\";s:4:\"slug\";s:3:\"exo\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t040FmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t040BmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t00UBmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/exo/v21/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmO3ws9Iu-uA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Exo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/exo/exo-900-italic.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/exo/exo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:408;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Exo 2\";s:10:\"fontFamily\";s:19:\"\"Exo 2\", sans-serif\";s:4:\"slug\";s:5:\"exo-2\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcO9q-rpvLpQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/exo2/v21/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC_jJ7bpQBL.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Exo 2\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/exo-2/exo-2.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:409;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Expletus Sans\";s:10:\"fontFamily\";s:26:\"\"Expletus Sans\", system-ui\";s:4:\"slug\";s:13:\"expletus-sans\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1tFQTcXfMm.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1tFQTcXfMm.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1tFQTcXfMm.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1tFQTcXfMm.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwX-WOMmKKY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwX-WOMmKKY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwX-WOMmKKY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwX-WOMmKKY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Expletus Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/expletus-sans/expletus-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:410;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Explora\";s:10:\"fontFamily\";s:16:\"Explora, cursive\";s:4:\"slug\";s:7:\"explora\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/explora/v9/tsstApxFfjUH4wrvc1-PonC3vqc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Explora\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/explora/explora-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/explora/explora.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:411;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Fahkwang\";s:10:\"fontFamily\";s:20:\"Fahkwang, sans-serif\";s:4:\"slug\";s:8:\"fahkwang\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlUFipxkwjx.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHCtTlhjxdw4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplUFipxkwjx.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHCtTlhjxdw4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqKsr1ZPTZ4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLx7OCZ4ihE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lUFipxkwjx.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHCtTlhjxdw4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlUFipxkwjx.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHCtTlhjxdw4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlUFipxkwjx.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHCtTlhjxdw4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fahkwang\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang-700-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/fahkwang/fahkwang.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:412;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Familjen Grotesk\";s:10:\"fontFamily\";s:30:\"\"Familjen Grotesk\", sans-serif\";s:4:\"slug\";s:16:\"familjen-grotesk\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSzoc1jcEYq2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSzoc1jcEYq2.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbizoc1jcEYq2.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubizoc1jcEYq2.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVn-FJq2Rv4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVn-FJq2Rv4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVn-FJq2Rv4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVn-FJq2Rv4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Familjen Grotesk\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk-700-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/familjen-grotesk/familjen-grotesk.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:413;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Fanwood Text\";s:10:\"fontFamily\";s:21:\"\"Fanwood Text\", serif\";s:4:\"slug\";s:12:\"fanwood-text\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Fanwood Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/fanwood-text/fanwood-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Fanwood Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/fanwood-text/fanwood-text-400-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/fanwood-text/fanwood-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:414;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Farro\";s:10:\"fontFamily\";s:17:\"Farro, sans-serif\";s:4:\"slug\";s:5:\"farro\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ67WkJUQUq7.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Farro\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/farro/farro-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVIHLq2cV5d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Farro\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/farro/farro-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ67WkJUQUq7.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Farro\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/farro/farro-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM567WkJUQUq7.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Farro\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/farro/farro-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/farro/farro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:415;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Farsan\";s:10:\"fontFamily\";s:17:\"Farsan, system-ui\";s:4:\"slug\";s:6:\"farsan\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/farsan/v22/VEMwRoJ0vY_zsyz636-pxDX9rQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Farsan\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/farsan/farsan-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/farsan/farsan.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:416;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fascinate\";s:10:\"fontFamily\";s:20:\"Fascinate, system-ui\";s:4:\"slug\";s:9:\"fascinate\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli0bbQRPyNrw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fascinate\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fascinate/fascinate-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fascinate/fascinate.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:417;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Fascinate Inline\";s:10:\"fontFamily\";s:29:\"\"Fascinate Inline\", system-ui\";s:4:\"slug\";s:16:\"fascinate-inline\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1gjCfRXxWZQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Fascinate Inline\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/fascinate-inline/fascinate-inline-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/fascinate-inline/fascinate-inline.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:418;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Faster One\";s:10:\"fontFamily\";s:23:\"\"Faster One\", system-ui\";s:4:\"slug\";s:10:\"faster-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyL6Shq63czE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Faster One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/faster-one/faster-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/faster-one/faster-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:419;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Fasthand\";s:10:\"fontFamily\";s:19:\"Fasthand, system-ui\";s:4:\"slug\";s:8:\"fasthand\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/fasthand/v30/0yb9GDohyKTYn_ZEESkrYkw2rQg1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fasthand\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fasthand/fasthand-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/fasthand/fasthand.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:420;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fauna One\";s:10:\"fontFamily\";s:18:\"\"Fauna One\", serif\";s:4:\"slug\";s:9:\"fauna-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx3ExLYClOCg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fauna One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fauna-one/fauna-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fauna-one/fauna-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:421;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Faustina\";s:10:\"fontFamily\";s:15:\"Faustina, serif\";s:4:\"slug\";s:8:\"faustina\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvHFWWe8tbEg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvHFWWe8tbEg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvHFWWe8tbEg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvHFWWe8tbEg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvHFWWe8tbEg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvHFWWe8tbEg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-XWc5LEnoF.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-300-italic.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-XWc5LEnoF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-XWc5LEnoF.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-500-italic.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-XWc5LEnoF.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-XWc5LEnoF.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-700-italic.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-XWc5LEnoF.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Faustina\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina-800-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/faustina/faustina.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:422;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Federant\";s:10:\"fontFamily\";s:19:\"Federant, system-ui\";s:4:\"slug\";s:8:\"federant\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/federant/v29/2sDdZGNfip_eirT0_U0mRUG0AqUc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Federant\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/federant/federant-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/federant/federant.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:423;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Federo\";s:10:\"fontFamily\";s:18:\"Federo, sans-serif\";s:4:\"slug\";s:6:\"federo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmiFOe2WTG7Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Federo\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/federo/federo-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/federo/federo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:424;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Felipa\";s:10:\"fontFamily\";s:15:\"Felipa, cursive\";s:4:\"slug\";s:6:\"felipa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/felipa/v25/FwZa7-owz1Eu4F_wTdSEwM2zpA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Felipa\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/felipa/felipa-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/felipa/felipa.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:425;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Fenix\";s:10:\"fontFamily\";s:12:\"Fenix, serif\";s:4:\"slug\";s:5:\"fenix\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5osoKzAFvs8o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Fenix\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/fenix/fenix-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/fenix/fenix.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:426;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Festive\";s:10:\"fontFamily\";s:16:\"Festive, cursive\";s:4:\"slug\";s:7:\"festive\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/festive/v9/cY9Ffj6KX1xcoDWhFtLgy9HTkak.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Festive\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/festive/festive-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/festive/festive.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:427;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Figtree\";s:10:\"fontFamily\";s:19:\"Figtree, sans-serif\";s:4:\"slug\";s:7:\"figtree\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-900-normal.svg\";}i:7;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-300-italic.svg\";}i:8;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-400-italic.svg\";}i:9;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-600-italic.svg\";}i:11;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-800-italic.svg\";}i:13;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEA25WTybO8.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Figtree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/figtree/figtree.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:428;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Finger Paint\";s:10:\"fontFamily\";s:25:\"\"Finger Paint\", system-ui\";s:4:\"slug\";s:12:\"finger-paint\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/fingerpaint/v19/0QInMXVJ-o-oRn_7dron8YWO9pbS8ANesw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Finger Paint\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/finger-paint/finger-paint-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/finger-paint/finger-paint.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:429;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Finlandica\";s:10:\"fontFamily\";s:22:\"Finlandica, sans-serif\";s:4:\"slug\";s:10:\"finlandica\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEj09i5ss3a3.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEj09i5ss3a3.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0j09i5ss3a3.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0j09i5ss3a3.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Finlandica\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/finlandica/finlandica.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:430;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fira Code\";s:10:\"fontFamily\";s:22:\"\"Fira Code\", monospace\";s:4:\"slug\";s:9:\"fira-code\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVLxN87gsj0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Code\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-code/fira-code-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVLxN87gsj0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Code\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-code/fira-code-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVLxN87gsj0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Code\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-code/fira-code-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVLxN87gsj0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Code\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-code/fira-code-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVLxN87gsj0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Code\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-code/fira-code-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fira-code/fira-code.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:431;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fira Mono\";s:10:\"fontFamily\";s:22:\"\"Fira Mono\", monospace\";s:4:\"slug\";s:9:\"fira-mono\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQJPTTkdbJYA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-mono/fira-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33nP3VaZBRBQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-mono/fira-mono-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3nP3VaZBRBQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-mono/fira-mono-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fira-mono/fira-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:432;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fira Sans\";s:10:\"fontFamily\";s:23:\"\"Fira Sans\", sans-serif\";s:4:\"slug\";s:9:\"fira-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjLazP3dUTP.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTLVcFTPj0s.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VflYLKSTbndQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojLazP3dUTP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uRB37fF3Wlg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf6XljGllLX.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Fira Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fira-sans/fira-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:433;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Fira Sans Condensed\";s:10:\"fontFamily\";s:33:\"\"Fira Sans Condensed\", sans-serif\";s:4:\"slug\";s:19:\"fira-sans-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtrelQfx9CjA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONRXRpSjJcu.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfTnrMtVbx8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtrelQfx9CjA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMZ-cxZblY4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0cjRehY43EA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Fira Sans Condensed\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed-900-italic.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-condensed/fira-sans-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:434;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Fira Sans Extra Condensed\";s:10:\"fontFamily\";s:39:\"\"Fira Sans Extra Condensed\", sans-serif\";s:4:\"slug\";s:25:\"fira-sans-extra-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ZyuulWarE9ncg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-bjkp3cn22.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5f2ku3efvE8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquulWarE9ncg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3q0oEZ-a2Q.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-oWR7e2SvJQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Fira Sans Extra Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-900-italic.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/fira-sans-extra-condensed/fira-sans-extra-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:435;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Fjalla One\";s:10:\"fontFamily\";s:24:\"\"Fjalla One\", sans-serif\";s:4:\"slug\";s:10:\"fjalla-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnONwkxgtUb8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Fjalla One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/fjalla-one/fjalla-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/fjalla-one/fjalla-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:436;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fjord One\";s:10:\"fontFamily\";s:18:\"\"Fjord One\", serif\";s:4:\"slug\";s:9:\"fjord-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr7O5As-FeiQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fjord One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fjord-one/fjord-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fjord-one/fjord-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:437;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Flamenco\";s:10:\"fontFamily\";s:19:\"Flamenco, system-ui\";s:4:\"slug\";s:8:\"flamenco\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIk3epH9qGsf.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Flamenco\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/flamenco/flamenco-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWDHK06UY30.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Flamenco\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/flamenco/flamenco-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/flamenco/flamenco.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:438;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Flavors\";s:10:\"fontFamily\";s:18:\"Flavors, system-ui\";s:4:\"slug\";s:7:\"flavors\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/flavors/v26/FBV2dDrhxqmveJTpbknlNqkG9UY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Flavors\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/flavors/flavors-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/flavors/flavors.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:439;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Fleur De Leah\";s:10:\"fontFamily\";s:24:\"\"Fleur De Leah\", cursive\";s:4:\"slug\";s:13:\"fleur-de-leah\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/fleurdeleah/v9/AYCNpXX7ftYZWLhv9UmPJTMC5vOt4I_Gdq0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Fleur De Leah\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/fleur-de-leah/fleur-de-leah-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/fleur-de-leah/fleur-de-leah.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:440;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Flow Block\";s:10:\"fontFamily\";s:23:\"\"Flow Block\", system-ui\";s:4:\"slug\";s:10:\"flow-block\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/flowblock/v11/wlp0gwfPCEB65UmTk-d6-WNlbCBXE_I.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Flow Block\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/flow-block/flow-block-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/flow-block/flow-block.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:441;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Flow Circular\";s:10:\"fontFamily\";s:26:\"\"Flow Circular\", system-ui\";s:4:\"slug\";s:13:\"flow-circular\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/flowcircular/v11/lJwB-pc4j2F-H8YKuyvfxdZ45iLpWdr2rIg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Flow Circular\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/flow-circular/flow-circular-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/flow-circular/flow-circular.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:442;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Flow Rounded\";s:10:\"fontFamily\";s:25:\"\"Flow Rounded\", system-ui\";s:4:\"slug\";s:12:\"flow-rounded\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/flowrounded/v11/-zki91mtwsU9qlLiGwD4oQX3pJX-Xup87g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Flow Rounded\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/flow-rounded/flow-rounded-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/flow-rounded/flow-rounded.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:443;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Foldit\";s:10:\"fontFamily\";s:17:\"Foldit, system-ui\";s:4:\"slug\";s:6:\"foldit\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4Mma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4Lma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLma9UYLHkN80.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Foldit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/foldit/foldit.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:444;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Fondamento\";s:10:\"fontFamily\";s:19:\"Fondamento, cursive\";s:4:\"slug\";s:10:\"fondamento\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/fondamento/v20/4UaHrEJGsxNmFTPDnkaJx6jj5pN1MwI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Fondamento\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/fondamento/fondamento-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/fondamento/v20/4UaFrEJGsxNmFTPDnkaJ96_p57FwIwJePw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Fondamento\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/fondamento/fondamento-400-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/fondamento/fondamento.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:445;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Fontdiner Swanky\";s:10:\"fontFamily\";s:29:\"\"Fontdiner Swanky\", system-ui\";s:4:\"slug\";s:16:\"fontdiner-swanky\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/fontdinerswanky/v23/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uQfKiGvxts.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Fontdiner Swanky\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/fontdiner-swanky/fontdiner-swanky-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/fontdiner-swanky/fontdiner-swanky.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:446;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Forum\";s:10:\"fontFamily\";s:16:\"Forum, system-ui\";s:4:\"slug\";s:5:\"forum\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/forum/v18/6aey4Ky-Vb8Ew_ITMJMa3mnT.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Forum\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/forum/forum-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/forum/forum.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:447;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Fragment Mono\";s:10:\"fontFamily\";s:26:\"\"Fragment Mono\", monospace\";s:4:\"slug\";s:13:\"fragment-mono\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Fragment Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/fragment-mono/fragment-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iC16K5wfMRRjxp0DA6-2CLnB4ZHhqcN71URtQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Fragment Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/fragment-mono/fragment-mono-400-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/fragment-mono/fragment-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:448;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Francois One\";s:10:\"fontFamily\";s:26:\"\"Francois One\", sans-serif\";s:4:\"slug\";s:12:\"francois-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNwwKQu_avAg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Francois One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/francois-one/francois-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/francois-one/francois-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:449;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Frank Ruhl Libre\";s:10:\"fontFamily\";s:25:\"\"Frank Ruhl Libre\", serif\";s:4:\"slug\";s:16:\"frank-ruhl-libre\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqVPxR2EUR_.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Frank Ruhl Libre\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/frank-ruhl-libre/frank-ruhl-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:450;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Fraunces\";s:10:\"fontFamily\";s:15:\"Fraunces, serif\";s:4:\"slug\";s:8:\"fraunces\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:145:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjC_TShUtWNg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:147:\"https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Tp05GNi3k.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Fraunces\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/fraunces/fraunces.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:451;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Freckle Face\";s:10:\"fontFamily\";s:25:\"\"Freckle Face\", system-ui\";s:4:\"slug\";s:12:\"freckle-face\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0VlK2w9lb4g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Freckle Face\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/freckle-face/freckle-face-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/freckle-face/freckle-face.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:452;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Fredericka the Great\";s:10:\"fontFamily\";s:33:\"\"Fredericka the Great\", system-ui\";s:4:\"slug\";s:20:\"fredericka-the-great\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/frederickathegreat/v21/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Shz7Ylch2L.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Fredericka the Great\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/fredericka-the-great/fredericka-the-great-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/fredericka-the-great/fredericka-the-great.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:453;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Fredoka\";s:10:\"fontFamily\";s:19:\"Fredoka, sans-serif\";s:4:\"slug\";s:7:\"fredoka\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLME-OLlNldbw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fredoka\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fredoka/fredoka-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLME-OLlNldbw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fredoka\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fredoka/fredoka-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLME-OLlNldbw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fredoka\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fredoka/fredoka-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXME-OLlNldbw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fredoka\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fredoka/fredoka-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXME-OLlNldbw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fredoka\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fredoka/fredoka-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/fredoka/fredoka.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:454;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Freehand\";s:10:\"fontFamily\";s:19:\"Freehand, system-ui\";s:4:\"slug\";s:8:\"freehand\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/freehand/v31/cIf-Ma5eqk01VjKTgAmETmUOmZJk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Freehand\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/freehand/freehand-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/freehand/freehand.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:455;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Fresca\";s:10:\"fontFamily\";s:18:\"Fresca, sans-serif\";s:4:\"slug\";s:6:\"fresca\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/fresca/v22/6ae94K--SKgCzbM2H70W13DKPA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Fresca\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/fresca/fresca-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/fresca/fresca.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:456;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Frijole\";s:10:\"fontFamily\";s:18:\"Frijole, system-ui\";s:4:\"slug\";s:7:\"frijole\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xbb3vyHmlI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Frijole\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/frijole/frijole-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/frijole/frijole.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:457;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Fruktur\";s:10:\"fontFamily\";s:18:\"Fruktur, system-ui\";s:4:\"slug\";s:7:\"fruktur\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfzjGkUrS8DI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fruktur\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fruktur/fruktur-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MkGjX4DJXgQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Fruktur\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fruktur/fruktur-400-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/fruktur/fruktur.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:458;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Fugaz One\";s:10:\"fontFamily\";s:22:\"\"Fugaz One\", system-ui\";s:4:\"slug\";s:9:\"fugaz-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/fugazone/v19/rax_HiWKp9EAITukFslMARJek0vA8A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Fugaz One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/fugaz-one/fugaz-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/fugaz-one/fugaz-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:459;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Fuggles\";s:10:\"fontFamily\";s:16:\"Fuggles, cursive\";s:4:\"slug\";s:7:\"fuggles\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/fuggles/v12/k3kQo8UEJOlD1hpOTdviL0nAMaM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Fuggles\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/fuggles/fuggles-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/fuggles/fuggles.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:460;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Fuzzy Bubbles\";s:10:\"fontFamily\";s:24:\"\"Fuzzy Bubbles\", cursive\";s:4:\"slug\";s:13:\"fuzzy-bubbles\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/fuzzybubbles/v7/6qLGKZMbrgv9pwtjPEVNV0F2Nnb5Zxsreko.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Fuzzy Bubbles\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/fuzzy-bubbles/fuzzy-bubbles-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/fuzzybubbles/v7/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxYAZkM1pn4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Fuzzy Bubbles\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/fuzzy-bubbles/fuzzy-bubbles-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/fuzzy-bubbles/fuzzy-bubbles.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:461;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"GFS Didot\";s:10:\"fontFamily\";s:18:\"\"GFS Didot\", serif\";s:4:\"slug\";s:9:\"gfs-didot\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiEufGFSCGAA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"GFS Didot\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gfs-didot/gfs-didot-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/gfs-didot/gfs-didot.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:462;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"GFS Neohellenic\";s:10:\"fontFamily\";s:29:\"\"GFS Neohellenic\", sans-serif\";s:4:\"slug\";s:15:\"gfs-neohellenic\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TKKhP46UDUw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"GFS Neohellenic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/gfs-neohellenic/gfs-neohellenic-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JOwaATU91X.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"GFS Neohellenic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/gfs-neohellenic/gfs-neohellenic-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"GFS Neohellenic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/gfs-neohellenic/gfs-neohellenic-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQeeMFe985V.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"GFS Neohellenic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/gfs-neohellenic/gfs-neohellenic-700-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/gfs-neohellenic/gfs-neohellenic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:463;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Gabarito\";s:10:\"fontFamily\";s:19:\"Gabarito, system-ui\";s:4:\"slug\";s:8:\"gabarito\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gabarito/v4/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj248K0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabarito\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gabarito/v4/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj20cK0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabarito\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gabarito/v4/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj2PcW0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabarito\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gabarito/v4/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj2BMW0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabarito\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gabarito/v4/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj2Y8W0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabarito\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gabarito/v4/QGYwz_0dZAGKJJ4t3FFkc3Q8AkNP9Pj2SsW0EwItq6bFIg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabarito\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/gabarito/gabarito.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:464;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Gabriela\";s:10:\"fontFamily\";s:15:\"Gabriela, serif\";s:4:\"slug\";s:8:\"gabriela\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/gabriela/v20/qkBWXvsO6sreR8E-b_m7zrpHmRzC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gabriela\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gabriela/gabriela-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/gabriela/gabriela.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:465;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Gaegu\";s:10:\"fontFamily\";s:14:\"Gaegu, cursive\";s:4:\"slug\";s:5:\"gaegu\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/gaegu/v17/TuGSUVB6Up9NU57nifw-4sdtBk0x.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Gaegu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/gaegu/gaegu-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/gaegu/v17/TuGfUVB6Up9NU6ZOodgzydtk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Gaegu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/gaegu/gaegu-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/gaegu/v17/TuGSUVB6Up9NU573jvw-4sdtBk0x.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Gaegu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/gaegu/gaegu-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/gaegu/gaegu.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:466;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gafata\";s:10:\"fontFamily\";s:18:\"Gafata, sans-serif\";s:4:\"slug\";s:6:\"gafata\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/gafata/v20/XRXV3I6Cn0VJKon4N-yAbsrVcA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gafata\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gafata/gafata-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gafata/gafata.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:467;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Gajraj One\";s:10:\"fontFamily\";s:23:\"\"Gajraj One\", system-ui\";s:4:\"slug\";s:10:\"gajraj-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/gajrajone/v5/1cX2aUDCDpXsuWVb1jIjr1SqhcitzeM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Gajraj One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/gajraj-one/gajraj-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/gajraj-one/gajraj-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:468;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Galada\";s:10:\"fontFamily\";s:17:\"Galada, system-ui\";s:4:\"slug\";s:6:\"galada\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/galada/v18/H4cmBXyGmcjXlUX-9yw-4Lqggw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Galada\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/galada/galada-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/galada/galada.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:469;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Galdeano\";s:10:\"fontFamily\";s:20:\"Galdeano, sans-serif\";s:4:\"slug\";s:8:\"galdeano\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDP08PCOg0uX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Galdeano\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/galdeano/galdeano-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/galdeano/galdeano.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:470;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Galindo\";s:10:\"fontFamily\";s:18:\"Galindo, system-ui\";s:4:\"slug\";s:7:\"galindo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/galindo/v24/HI_KiYMeLqVKqwyuQ5TiRp-dhpQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Galindo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/galindo/galindo-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/galindo/galindo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:471;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Gamja Flower\";s:10:\"fontFamily\";s:23:\"\"Gamja Flower\", cursive\";s:4:\"slug\";s:12:\"gamja-flower\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/gamjaflower/v22/6NUR8FiKJg-Pa0rM6uN40Z4kzP9Fdty2ew.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gamja Flower\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gamja-flower/gamja-flower-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/gamja-flower/gamja-flower.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:472;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Gantari\";s:10:\"fontFamily\";s:19:\"Gantari, sans-serif\";s:4:\"slug\";s:7:\"gantari\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT31a5GD2qnm.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZCh37nmpWc.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gantari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/gantari/gantari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:473;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Gasoek One\";s:10:\"fontFamily\";s:24:\"\"Gasoek One\", sans-serif\";s:4:\"slug\";s:10:\"gasoek-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/gasoekone/v3/EJRTQgQ_UMUKvDgnlX80zr-_cyb-vco.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Gasoek One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/gasoek-one/gasoek-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/gasoek-one/gasoek-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:474;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Gayathri\";s:10:\"fontFamily\";s:20:\"Gayathri, sans-serif\";s:4:\"slug\";s:8:\"gayathri\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/gayathri/v17/MCoWzAb429DbBilWLLhc-p7SA_gA2W8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gayathri\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gayathri/gayathri-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/gayathri/v17/MCoQzAb429DbBilWLIA98J_wBugA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gayathri\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gayathri/gayathri-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/gayathri/v17/MCoXzAb429DbBilWLLiE37v9LfQJwHbn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gayathri\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gayathri/gayathri-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/gayathri/gayathri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:475;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Gelasio\";s:10:\"fontFamily\";s:14:\"Gelasio, serif\";s:4:\"slug\";s:7:\"gelasio\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCyrYGkHgIs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhYUsCkIt9QQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImnaBhSL7Y1Q.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-500-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmnaBhSL7Y1Q.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-600-italic.svg\";}i:6;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmnaBhSL7Y1Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Gelasio\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/gelasio/gelasio.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:476;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Gemunu Libre\";s:10:\"fontFamily\";s:26:\"\"Gemunu Libre\", sans-serif\";s:4:\"slug\";s:12:\"gemunu-libre\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvGLeMXPIWA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gemunu Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/gemunu-libre/gemunu-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:477;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Genos\";s:10:\"fontFamily\";s:17:\"Genos, sans-serif\";s:4:\"slug\";s:5:\"genos\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknoqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjoqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjoqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjoqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjoqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_oqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_oqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_oqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_oqEK6K7ZsAg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui7CbN8Ard7.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Genos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/genos/genos-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/genos/genos.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:478;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Gentium Book Plus\";s:10:\"fontFamily\";s:26:\"\"Gentium Book Plus\", serif\";s:4:\"slug\";s:17:\"gentium-book-plus\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKadbLOrdPV.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Gentium Book Plus\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/gentium-book-plus/gentium-book-plus-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7PsqMPVZb4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Gentium Book Plus\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/gentium-book-plus/gentium-book-plus-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbDhs_cfKe1.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Gentium Book Plus\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/gentium-book-plus/gentium-book-plus-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjM7-ebe1Els.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Gentium Book Plus\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/gentium-book-plus/gentium-book-plus-700-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/gentium-book-plus/gentium-book-plus.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:479;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Gentium Plus\";s:10:\"fontFamily\";s:21:\"\"Gentium Plus\", serif\";s:4:\"slug\";s:12:\"gentium-plus\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpiZtM6G0t9w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gentium Plus\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gentium-plus/gentium-plus-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFNymg9957e.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Gentium Plus\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gentium-plus/gentium-plus-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo5UYx_ofHsw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gentium Plus\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gentium-plus/gentium-plus-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uww3ILXs-h6.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Gentium Plus\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gentium-plus/gentium-plus-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/gentium-plus/gentium-plus.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:480;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Geo\";s:10:\"fontFamily\";s:15:\"Geo, sans-serif\";s:4:\"slug\";s:3:\"geo\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:64:\"https://fonts.gstatic.com/s/geo/v21/CSRz4zRZlufVKnBmQjlCbQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Geo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/geo/geo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/geo/v21/CSRx4zRZluflLXpnYDxSbf8r.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"Geo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/geo/geo-400-italic.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/geo/geo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:481;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Geologica\";s:10:\"fontFamily\";s:21:\"Geologica, sans-serif\";s:4:\"slug\";s:9:\"geologica\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_qQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_rQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD0HrQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_rQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDy3rQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD8HsQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD_jsQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_sQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:146:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD7bsQ-YYAXWnqFs.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Geologica\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/geologica/geologica.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:482;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Georama\";s:10:\"fontFamily\";s:19:\"Georama, sans-serif\";s:4:\"slug\";s:7:\"georama\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tnAsL5_tgbg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Georama\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/georama/georama-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/georama/georama.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:483;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Geostar\";s:10:\"fontFamily\";s:18:\"Geostar, system-ui\";s:4:\"slug\";s:7:\"geostar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/geostar/v26/sykz-yx4n701VLOftS-9-trEvlQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Geostar\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/geostar/geostar-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/geostar/geostar.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:484;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Geostar Fill\";s:10:\"fontFamily\";s:25:\"\"Geostar Fill\", system-ui\";s:4:\"slug\";s:12:\"geostar-fill\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/geostarfill/v26/AMOWz4SWuWiXFfjEohxQ9os0VlK2w9lb4g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Geostar Fill\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/geostar-fill/geostar-fill-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/geostar-fill/geostar-fill.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:485;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Germania One\";s:10:\"fontFamily\";s:25:\"\"Germania One\", system-ui\";s:4:\"slug\";s:12:\"germania-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3eyQJONau6ew.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Germania One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/germania-one/germania-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/germania-one/germania-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:486;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Gideon Roman\";s:10:\"fontFamily\";s:25:\"\"Gideon Roman\", system-ui\";s:4:\"slug\";s:12:\"gideon-roman\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/gideonroman/v11/e3tmeuGrVOys8sxzZgWlmXogfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gideon Roman\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gideon-roman/gideon-roman-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/gideon-roman/gideon-roman.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:487;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gidugu\";s:10:\"fontFamily\";s:18:\"Gidugu, sans-serif\";s:4:\"slug\";s:6:\"gidugu\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/gidugu/v25/L0x8DFMkk1Uf6w3RufCmRSlUig.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gidugu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gidugu/gidugu-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gidugu/gidugu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:488;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Gilda Display\";s:10:\"fontFamily\";s:22:\"\"Gilda Display\", serif\";s:4:\"slug\";s:13:\"gilda-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/gildadisplay/v18/t5tmIRoYMoaYG0WEOh7HwMeR7TzFrpOHYh4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Gilda Display\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/gilda-display/gilda-display-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/gilda-display/gilda-display.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:489;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Girassol\";s:10:\"fontFamily\";s:19:\"Girassol, system-ui\";s:4:\"slug\";s:8:\"girassol\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/girassol/v22/JTUUjIo_-DK48laaNC9Iz2pJzxbi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Girassol\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/girassol/girassol-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/girassol/girassol.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:490;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Give You Glory\";s:10:\"fontFamily\";s:25:\"\"Give You Glory\", cursive\";s:4:\"slug\";s:14:\"give-you-glory\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc12B4ZD6rwa.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Give You Glory\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/give-you-glory/give-you-glory-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/give-you-glory/give-you-glory.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:491;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Glass Antiqua\";s:10:\"fontFamily\";s:26:\"\"Glass Antiqua\", system-ui\";s:4:\"slug\";s:13:\"glass-antiqua\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glassantiqua/v24/xfu30Wr0Wn3NOQM2piC0uXOjnLrwN6fRUkY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Glass Antiqua\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/glass-antiqua/glass-antiqua-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/glass-antiqua/glass-antiqua.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:492;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Glegoo\";s:10:\"fontFamily\";s:13:\"Glegoo, serif\";s:4:\"slug\";s:6:\"glegoo\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/glegoo/v16/_Xmt-HQyrTKWaw2JjqmZAI91xw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Glegoo\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/glegoo/glegoo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/glegoo/v16/_Xmu-HQyrTKWaw2xN4a9DaRpzimMsg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Glegoo\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/glegoo/glegoo-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/glegoo/glegoo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:493;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gloock\";s:10:\"fontFamily\";s:13:\"Gloock, serif\";s:4:\"slug\";s:6:\"gloock\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/gloock/v6/Iurb6YFw84WUY4N5ihylBrdRjQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gloock\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gloock/gloock-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gloock/gloock.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:494;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Gloria Hallelujah\";s:10:\"fontFamily\";s:28:\"\"Gloria Hallelujah\", cursive\";s:4:\"slug\";s:17:\"gloria-hallelujah\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/gloriahallelujah/v21/LYjYdHv3kUk9BMV96EIswT9DIbW-MLS33TKEvkCF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Gloria Hallelujah\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/gloria-hallelujah/gloria-hallelujah-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/gloria-hallelujah/gloria-hallelujah.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:495;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Glory\";s:10:\"fontFamily\";s:17:\"Glory, sans-serif\";s:4:\"slug\";s:5:\"glory\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDo3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQQImDo3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQnomDo3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQwImDo3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDo3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Do3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Do3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Do3-dDi9EOQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-100-italic.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-200-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-300-italic.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-400-italic.svg\";}i:12;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-500-italic.svg\";}i:13;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-600-italic.svg\";}i:14;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-700-italic.svg\";}i:15;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Glory\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/glory/glory-800-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/glory/glory.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:496;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gluten\";s:10:\"fontFamily\";s:17:\"Gluten, system-ui\";s:4:\"slug\";s:6:\"gluten\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Ouni7ciJh.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gluten\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gluten/gluten.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:497;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Goblin One\";s:10:\"fontFamily\";s:23:\"\"Goblin One\", system-ui\";s:4:\"slug\";s:10:\"goblin-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/goblinone/v26/CSR64z1ZnOqZRjRCBVY_TOIATNt_pOU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Goblin One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/goblin-one/goblin-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/goblin-one/goblin-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:498;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Gochi Hand\";s:10:\"fontFamily\";s:21:\"\"Gochi Hand\", cursive\";s:4:\"slug\";s:10:\"gochi-hand\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/gochihand/v23/hES06XlsOjtJsgCkx1PkTov1-n0nXWA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Gochi Hand\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/gochi-hand/gochi-hand-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/gochi-hand/gochi-hand.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:499;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Goldman\";s:10:\"fontFamily\";s:18:\"Goldman, system-ui\";s:4:\"slug\";s:7:\"goldman\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/goldman/v19/pe0uMIWbN4JFplR2LDd4Bt-7G98.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Goldman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/goldman/goldman-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/goldman/v19/pe0rMIWbN4JFplR2FI5XItKQB9Zra1U.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Goldman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/goldman/goldman-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/goldman/goldman.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:500;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Golos Text\";s:10:\"fontFamily\";s:24:\"\"Golos Text\", sans-serif\";s:4:\"slug\";s:10:\"golos-text\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5ZEr8zXcyx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Golos Text\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5ZEr8zXcyx.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Golos Text\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5ZEr8zXcyx.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Golos Text\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5ZEr8zXcyx.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Golos Text\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5ZEr8zXcyx.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Golos Text\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5ZEr8zXcyx.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Golos Text\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/golos-text/golos-text.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:501;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Gorditas\";s:10:\"fontFamily\";s:19:\"Gorditas, system-ui\";s:4:\"slug\";s:8:\"gorditas\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/gorditas/v22/ll8_K2aTVD26DsPEtQDtDa4AlxYb.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gorditas\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gorditas/gorditas-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/gorditas/v22/ll84K2aTVD26DsPEtThUIooNvAoShA1i.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gorditas\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gorditas/gorditas-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/gorditas/gorditas.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:502;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Gothic A1\";s:10:\"fontFamily\";s:23:\"\"Gothic A1\", sans-serif\";s:4:\"slug\";s:10:\"gothic-a-1\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcvYtd2vfwk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6ac0uQNJmvQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gothic A1\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/gothic-a1/gothic-a1.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:503;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Gotu\";s:10:\"fontFamily\";s:16:\"Gotu, sans-serif\";s:4:\"slug\";s:4:\"gotu\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/gotu/v16/o-0FIpksx3QOlHgLioh6-hU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Gotu\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/gotu/gotu-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/gotu/gotu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:504;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Goudy Bookletter 1911\";s:10:\"fontFamily\";s:30:\"\"Goudy Bookletter 1911\", serif\";s:4:\"slug\";s:21:\"goudy-bookletter-1911\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/goudybookletter1911/v19/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5sBbXZ4IXAA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Goudy Bookletter 1911\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/goudy-bookletter-1911/goudy-bookletter-1911-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/goudy-bookletter-1911/goudy-bookletter-1911.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:505;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Gowun Batang\";s:10:\"fontFamily\";s:21:\"\"Gowun Batang\", serif\";s:4:\"slug\";s:12:\"gowun-batang\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhWbH-yuAtLw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gowun Batang\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gowun-batang/gowun-batang-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7ax8sxJii23w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gowun Batang\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gowun-batang/gowun-batang-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/gowun-batang/gowun-batang.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:506;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Gowun Dodum\";s:10:\"fontFamily\";s:25:\"\"Gowun Dodum\", sans-serif\";s:4:\"slug\";s:11:\"gowun-dodum\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0AfORL0fNy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Gowun Dodum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/gowun-dodum/gowun-dodum-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/gowun-dodum/gowun-dodum.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:507;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Graduate\";s:10:\"fontFamily\";s:15:\"Graduate, serif\";s:4:\"slug\";s:8:\"graduate\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/graduate/v17/C8cg4cs3o2n15t_2YxgU6X2NZAn2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Graduate\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/graduate/graduate-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/graduate/graduate.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:508;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Grand Hotel\";s:10:\"fontFamily\";s:22:\"\"Grand Hotel\", cursive\";s:4:\"slug\";s:11:\"grand-hotel\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/grandhotel/v19/7Au7p_IgjDKdCRWuR1azpmQIEl0O0kEx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Grand Hotel\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/grand-hotel/grand-hotel-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/grand-hotel/grand-hotel.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:509;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Grandiflora One\";s:10:\"fontFamily\";s:24:\"\"Grandiflora One\", serif\";s:4:\"slug\";s:15:\"grandiflora-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/grandifloraone/v3/0ybmGD0g27bCk_5MGWZcKWhxwnUU-B3y8DOWGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Grandiflora One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/grandiflora-one/grandiflora-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/grandiflora-one/grandiflora-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:510;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Grandstander\";s:10:\"fontFamily\";s:23:\"Grandstander, system-ui\";s:4:\"slug\";s:12:\"grandstander\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D33WttFGmQk.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9Zzvct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91Tvct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9Zzzct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9Tjzct_NDiQlBYQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Grandstander\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander-900-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/grandstander/grandstander.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:511;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Grape Nuts\";s:10:\"fontFamily\";s:21:\"\"Grape Nuts\", cursive\";s:4:\"slug\";s:10:\"grape-nuts\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/grapenuts/v5/syk2-yF4iLM2RfKj4F7k3tfvol2RN1E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Grape Nuts\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/grape-nuts/grape-nuts-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/grape-nuts/grape-nuts.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:512;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Gravitas One\";s:10:\"fontFamily\";s:25:\"\"Gravitas One\", system-ui\";s:4:\"slug\";s:12:\"gravitas-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/gravitasone/v19/5h1diZ4hJ3cblKy3LWakKQmaCGRNr3DzbQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Gravitas One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/gravitas-one/gravitas-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/gravitas-one/gravitas-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:513;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Great Vibes\";s:10:\"fontFamily\";s:22:\"\"Great Vibes\", cursive\";s:4:\"slug\";s:11:\"great-vibes\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/greatvibes/v18/RWmMoKWR9v4ksMfaWd_JN-XHg6UKDXlq.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Great Vibes\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/great-vibes/great-vibes-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/great-vibes/great-vibes.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:514;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Grechen Fuemen\";s:10:\"fontFamily\";s:25:\"\"Grechen Fuemen\", cursive\";s:4:\"slug\";s:14:\"grechen-fuemen\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/grechenfuemen/v9/vEFI2_tHEQ4d5ObgKxBzZh0MAWgZ-NaXXq7H.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grechen Fuemen\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grechen-fuemen/grechen-fuemen-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/grechen-fuemen/grechen-fuemen.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:515;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Grenze\";s:10:\"fontFamily\";s:13:\"Grenze, serif\";s:4:\"slug\";s:6:\"grenze\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2ImuAkalnmd.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsgg4k2md0kI.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3-mgnmgwKlg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WImuAkalnmd.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDlycWn2CEyw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0XvWWUy1uW.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Grenze\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/grenze/grenze.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:516;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Grenze Gotisch\";s:10:\"fontFamily\";s:27:\"\"Grenze Gotisch\", system-ui\";s:4:\"slug\";s:14:\"grenze-gotisch\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUdYCdYPSd_w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Grenze Gotisch\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/grenze-gotisch/grenze-gotisch.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:517;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Grey Qo\";s:10:\"fontFamily\";s:18:\"\"Grey Qo\", cursive\";s:4:\"slug\";s:7:\"grey-qo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/greyqo/v9/BXRrvF_Nmv_TyXxNDO5Q9Wf0QcE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Grey Qo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/grey-qo/grey-qo-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/grey-qo/grey-qo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:518;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Griffy\";s:10:\"fontFamily\";s:17:\"Griffy, system-ui\";s:4:\"slug\";s:6:\"griffy\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwTdSEwM2zpA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Griffy\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/griffy/griffy-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/griffy/griffy.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:519;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gruppo\";s:10:\"fontFamily\";s:18:\"Gruppo, sans-serif\";s:4:\"slug\";s:6:\"gruppo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/gruppo/v21/WwkfxPmzE06v_ZWFXHDAOIEQUQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gruppo\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gruppo/gruppo-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gruppo/gruppo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:520;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Gudea\";s:10:\"fontFamily\";s:17:\"Gudea, sans-serif\";s:4:\"slug\";s:5:\"gudea\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CK9IGON7Ez.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Gudea\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/gudea/gudea-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oCsMqEzSJQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Gudea\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/gudea/gudea-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WDHK06UY30.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Gudea\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/gudea/gudea-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/gudea/gudea.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:521;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Gugi\";s:10:\"fontFamily\";s:15:\"Gugi, system-ui\";s:4:\"slug\";s:4:\"gugi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/gugi/v15/A2BVn5dXywshVAuA9DEfgqM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Gugi\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/gugi/gugi-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/gugi/gugi.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:522;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gulzar\";s:10:\"fontFamily\";s:13:\"Gulzar, serif\";s:4:\"slug\";s:6:\"gulzar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/gulzar/v12/Wnz6HAc9eB3HB2ILZDwZqg_MPQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gulzar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gulzar/gulzar-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gulzar/gulzar.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:523;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Gupter\";s:10:\"fontFamily\";s:13:\"Gupter, serif\";s:4:\"slug\";s:6:\"gupter\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUZJa_Wu_lpA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gupter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gupter/gupter-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bV8T5rZhaZg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gupter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gupter/gupter-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbV8T5rZhaZg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Gupter\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/gupter/gupter-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/gupter/gupter.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:524;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Gurajada\";s:10:\"fontFamily\";s:15:\"Gurajada, serif\";s:4:\"slug\";s:8:\"gurajada\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/gurajada/v19/FwZY7-Qx308m-l-0Kd6F4sijpFu_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Gurajada\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/gurajada/gurajada-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/gurajada/gurajada.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:525;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Gwendolyn\";s:10:\"fontFamily\";s:18:\"Gwendolyn, cursive\";s:4:\"slug\";s:9:\"gwendolyn\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/gwendolyn/v7/qkBXXvoO_M3CSss-d7ee4ZRLkAXbMQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gwendolyn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gwendolyn/gwendolyn-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/gwendolyn/v7/qkBSXvoO_M3CSss-d7emWLtvnS7HONiSFQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Gwendolyn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/gwendolyn/gwendolyn-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/gwendolyn/gwendolyn.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:526;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Habibi\";s:10:\"fontFamily\";s:13:\"Habibi, serif\";s:4:\"slug\";s:6:\"habibi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCTxJeZOYySQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Habibi\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/habibi/habibi-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/habibi/habibi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:527;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Hachi Maru Pop\";s:10:\"fontFamily\";s:25:\"\"Hachi Maru Pop\", cursive\";s:4:\"slug\";s:14:\"hachi-maru-pop\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/hachimarupop/v19/HI_TiYoRLqpLrEiMAuO9Ysfz7rWwEM_btd8u.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hachi Maru Pop\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hachi-maru-pop/hachi-maru-pop-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/hachi-maru-pop/hachi-maru-pop.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:528;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Hahmlet\";s:10:\"fontFamily\";s:14:\"Hahmlet, serif\";s:4:\"slug\";s:7:\"hahmlet\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jtbsO-aVxn.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hahmlet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/hahmlet/hahmlet.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:529;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Halant\";s:10:\"fontFamily\";s:13:\"Halant, serif\";s:4:\"slug\";s:6:\"halant\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCngZqcwdRXg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Halant\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/halant/halant-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX2tJmky12eg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Halant\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/halant/halant-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCngZqcwdRXg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Halant\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/halant/halant-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCngZqcwdRXg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Halant\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/halant/halant-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CngZqcwdRXg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Halant\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/halant/halant-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/halant/halant.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:530;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Hammersmith One\";s:10:\"fontFamily\";s:29:\"\"Hammersmith One\", sans-serif\";s:4:\"slug\";s:15:\"hammersmith-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbtxsks4MRXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Hammersmith One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/hammersmith-one/hammersmith-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/hammersmith-one/hammersmith-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:531;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Hanalei\";s:10:\"fontFamily\";s:18:\"Hanalei, system-ui\";s:4:\"slug\";s:7:\"hanalei\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXz0mVydREus.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hanalei\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hanalei/hanalei-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/hanalei/hanalei.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:532;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Hanalei Fill\";s:10:\"fontFamily\";s:25:\"\"Hanalei Fill\", system-ui\";s:4:\"slug\";s:12:\"hanalei-fill\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMUgLBplm9aw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Hanalei Fill\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/hanalei-fill/hanalei-fill-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/hanalei-fill/hanalei-fill.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:533;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Handjet\";s:10:\"fontFamily\";s:18:\"Handjet, system-ui\";s:4:\"slug\";s:7:\"handjet\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHTmbUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHbmaUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHWeaUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHTmaUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHQuaUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHeedUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHd6dUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHbmdUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHZCdUkAsEHFAH2A.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handjet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/handjet/handjet.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:534;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Handlee\";s:10:\"fontFamily\";s:16:\"Handlee, cursive\";s:4:\"slug\";s:7:\"handlee\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/handlee/v18/-F6xfjBsISg9aMakDm_6oilJ3ik.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Handlee\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/handlee/handlee-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/handlee/handlee.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:535;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Hanken Grotesk\";s:10:\"fontFamily\";s:28:\"\"Hanken Grotesk\", sans-serif\";s:4:\"slug\";s:14:\"hanken-grotesk\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa5PpNzXhRKA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Hanken Grotesk\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/hanken-grotesk/hanken-grotesk.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:536;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Hanuman\";s:10:\"fontFamily\";s:14:\"Hanuman, serif\";s:4:\"slug\";s:7:\"hanuman\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdOaNiaRpFvg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hanuman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hanuman/hanuman-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hanuman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hanuman/hanuman-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKPXOIFneRo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hanuman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hanuman/hanuman-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hanuman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hanuman/hanuman-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Hanuman\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/hanuman/hanuman-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/hanuman/hanuman.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:537;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Happy Monkey\";s:10:\"fontFamily\";s:25:\"\"Happy Monkey\", system-ui\";s:4:\"slug\";s:12:\"happy-monkey\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OAAgD2bWqVjw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Happy Monkey\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/happy-monkey/happy-monkey-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/happy-monkey/happy-monkey.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:538;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Harmattan\";s:10:\"fontFamily\";s:21:\"Harmattan, sans-serif\";s:4:\"slug\";s:9:\"harmattan\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/harmattan/v19/goksH6L2DkFvVvRp9XpTTkCjkP1Yog.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Harmattan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/harmattan/harmattan-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprv2mHndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Harmattan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/harmattan/harmattan-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprk26HndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Harmattan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/harmattan/harmattan-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xpr92-HndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Harmattan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/harmattan/harmattan-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/harmattan/harmattan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:539;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Headland One\";s:10:\"fontFamily\";s:21:\"\"Headland One\", serif\";s:4:\"slug\";s:12:\"headland-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx1flTeZ3mJA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Headland One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/headland-one/headland-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/headland-one/headland-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:540;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Hedvig Letters Sans\";s:10:\"fontFamily\";s:33:\"\"Hedvig Letters Sans\", sans-serif\";s:4:\"slug\";s:19:\"hedvig-letters-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/hedvigletterssans/v2/CHy_V_PfGVjobSBkihHWDT98RVp37w8jQJhN3Twgi1w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Hedvig Letters Sans\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/hedvig-letters-sans/hedvig-letters-sans-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/hedvig-letters-sans/hedvig-letters-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:541;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Hedvig Letters Serif\";s:10:\"fontFamily\";s:29:\"\"Hedvig Letters Serif\", serif\";s:4:\"slug\";s:20:\"hedvig-letters-serif\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/hedviglettersserif/v2/OD5puN2I2mekHmyoU1Kj2AXOd5_7v7gIDlX8quj7viQ_N1HixEAZerfcvSGpZg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Hedvig Letters Serif\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/hedvig-letters-serif/hedvig-letters-serif-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/hedvig-letters-serif/hedvig-letters-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:542;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Heebo\";s:10:\"fontFamily\";s:17:\"Heebo, sans-serif\";s:4:\"slug\";s:5:\"heebo\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1Euyycd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1Ebiucd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/heebo/v22/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucd0Onz02SXQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Heebo\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/heebo/heebo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:543;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Henny Penny\";s:10:\"fontFamily\";s:24:\"\"Henny Penny\", system-ui\";s:4:\"slug\";s:11:\"henny-penny\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQvt3M7tMDT.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Henny Penny\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/henny-penny/henny-penny-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/henny-penny/henny-penny.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:544;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Hepta Slab\";s:10:\"fontFamily\";s:19:\"\"Hepta Slab\", serif\";s:4:\"slug\";s:10:\"hepta-slab\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfeY5B0NBkz.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Hepta Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/hepta-slab/hepta-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:545;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Herr Von Muellerhoff\";s:10:\"fontFamily\";s:31:\"\"Herr Von Muellerhoff\", cursive\";s:4:\"slug\";s:20:\"herr-von-muellerhoff\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/herrvonmuellerhoff/v21/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c__qJY3QPQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Herr Von Muellerhoff\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/herr-von-muellerhoff/herr-von-muellerhoff-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/herr-von-muellerhoff/herr-von-muellerhoff.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:546;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Hi Melody\";s:10:\"fontFamily\";s:20:\"\"Hi Melody\", cursive\";s:4:\"slug\";s:9:\"hi-melody\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/himelody/v15/46ktlbP8Vnz0pJcqCTbEem9E31BBGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Hi Melody\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/hi-melody/hi-melody-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/hi-melody/hi-melody.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:547;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Hina Mincho\";s:10:\"fontFamily\";s:20:\"\"Hina Mincho\", serif\";s:4:\"slug\";s:11:\"hina-mincho\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/hinamincho/v12/2sDaZGBRhpXa2Jjz5w5LAGW5KbkVZTHR.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Hina Mincho\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/hina-mincho/hina-mincho-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/hina-mincho/hina-mincho.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:548;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Hind\";s:10:\"fontFamily\";s:16:\"Hind, sans-serif\";s:4:\"slug\";s:4:\"hind\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIR6YjDpf5Vw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Hind\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/hind/hind-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRGtyBROzkDM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Hind\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/hind/hind-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIR6YjDpf5Vw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Hind\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/hind/hind-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIR6YjDpf5Vw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Hind\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/hind/hind-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIR6YjDpf5Vw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Hind\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/hind/hind-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/hind/hind.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:549;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Hind Guntur\";s:10:\"fontFamily\";s:25:\"\"Hind Guntur\", sans-serif\";s:4:\"slug\";s:11:\"hind-guntur\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1c2n9zaj5Ju.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Hind Guntur\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/hind-guntur/hind-guntur-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qvt3M7tMDT.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Hind Guntur\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/hind-guntur/hind-guntur-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlc2n9zaj5Ju.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Hind Guntur\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/hind-guntur/hind-guntur-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVc2n9zaj5Ju.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Hind Guntur\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/hind-guntur/hind-guntur-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFc2n9zaj5Ju.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Hind Guntur\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/hind-guntur/hind-guntur-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/hind-guntur/hind-guntur.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:550;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Hind Madurai\";s:10:\"fontFamily\";s:26:\"\"Hind Madurai\", sans-serif\";s:4:\"slug\";s:12:\"hind-madurai\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnfMsoMJ0b_g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Hind Madurai\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/hind-madurai/hind-madurai-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn9I0DceA0OQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Hind Madurai\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/hind-madurai/hind-madurai-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnfMsoMJ0b_g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Hind Madurai\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/hind-madurai/hind-madurai-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnfMsoMJ0b_g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Hind Madurai\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/hind-madurai/hind-madurai-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInfMsoMJ0b_g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Hind Madurai\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/hind-madurai/hind-madurai-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/hind-madurai/hind-madurai.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:551;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Hind Siliguri\";s:10:\"fontFamily\";s:27:\"\"Hind Siliguri\", sans-serif\";s:4:\"slug\";s:13:\"hind-siliguri\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uQfKiGvxts.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Siliguri\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-siliguri/hind-siliguri-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJ7Qxuk0Nig.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Siliguri\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-siliguri/hind-siliguri-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uQfKiGvxts.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Siliguri\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-siliguri/hind-siliguri-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uQfKiGvxts.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Siliguri\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-siliguri/hind-siliguri-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uQfKiGvxts.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Siliguri\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-siliguri/hind-siliguri-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/hind-siliguri/hind-siliguri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:552;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Hind Vadodara\";s:10:\"fontFamily\";s:27:\"\"Hind Vadodara\", sans-serif\";s:4:\"slug\";s:13:\"hind-vadodara\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXY0oSOL2Yw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Vadodara\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-vadodara/hind-vadodara-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJDfrXsfvSo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Vadodara\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-vadodara/hind-vadodara-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXY0oSOL2Yw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Vadodara\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-vadodara/hind-vadodara-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXY0oSOL2Yw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Vadodara\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-vadodara/hind-vadodara-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXY0oSOL2Yw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Hind Vadodara\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/hind-vadodara/hind-vadodara-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/hind-vadodara/hind-vadodara.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:553;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Holtwood One SC\";s:10:\"fontFamily\";s:24:\"\"Holtwood One SC\", serif\";s:4:\"slug\";s:15:\"holtwood-one-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/holtwoodonesc/v20/yYLx0hLR0P-3vMFSk1TCq3Txg5B3dLb6LZttyg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Holtwood One SC\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/holtwood-one-sc/holtwood-one-sc-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/holtwood-one-sc/holtwood-one-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:554;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Homemade Apple\";s:10:\"fontFamily\";s:25:\"\"Homemade Apple\", cursive\";s:4:\"slug\";s:14:\"homemade-apple\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/homemadeapple/v22/Qw3EZQFXECDrI2q789EKQZJob3x4Vnksi4M7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Homemade Apple\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/homemade-apple/homemade-apple-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/homemade-apple/homemade-apple.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:555;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Homenaje\";s:10:\"fontFamily\";s:20:\"Homenaje, sans-serif\";s:4:\"slug\";s:8:\"homenaje\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6F4sijpFu_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Homenaje\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/homenaje/homenaje-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/homenaje/homenaje.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:556;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Hubballi\";s:10:\"fontFamily\";s:20:\"Hubballi, sans-serif\";s:4:\"slug\";s:8:\"hubballi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/hubballi/v7/o-0JIpUj3WIZ1RFN56B-yBBNYuSF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Hubballi\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/hubballi/hubballi-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/hubballi/hubballi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:557;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Hurricane\";s:10:\"fontFamily\";s:18:\"Hurricane, cursive\";s:4:\"slug\";s:9:\"hurricane\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/hurricane/v7/pe0sMIuULZxTolZ5YldyB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Hurricane\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/hurricane/hurricane-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/hurricane/hurricane.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:558;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"IBM Plex Mono\";s:10:\"fontFamily\";s:26:\"\"IBM Plex Mono\", monospace\";s:4:\"slug\";s:13:\"ibm-plex-mono\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq131hj-sNFQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndgre4dFcFh.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8lJPg-IUDNg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFgsARHNh4zg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8lJPg-IUDNg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFgsARHNh4zg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5i0g1l9kn-s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq131hj-sNFQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lJPg-IUDNg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFgsARHNh4zg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8lJPg-IUDNg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFgsARHNh4zg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8lJPg-IUDNg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFgsARHNh4zg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-mono/ibm-plex-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:559;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"IBM Plex Sans\";s:10:\"fontFamily\";s:27:\"\"IBM Plex Sans\", sans-serif\";s:4:\"slug\";s:13:\"ibm-plex-sans\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeFaxIedbzDw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZJW9PjD3N8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MINmdd_qFmo.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2IdsdP3vBmpl8A.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MINmdd_qFmo.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRsdP3vBmpl8A.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdPUFI5NadY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeFaxIedbzDw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MINmdd_qFmo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVsdP3vBmpl8A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MINmdd_qFmo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJsdP3vBmpl8A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MINmdd_qFmo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINsdP3vBmpl8A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"IBM Plex Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans/ibm-plex-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:560;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"IBM Plex Sans Arabic\";s:10:\"fontFamily\";s:34:\"\"IBM Plex Sans Arabic\", sans-serif\";s:4:\"slug\";s:20:\"ibm-plex-sans-arabic\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PW5eMlAMg0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCWVsVJKxTs.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCWVsVJKxTs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs_1vSbfdlA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CWVsVJKxTs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCWVsVJKxTs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCWVsVJKxTs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Arabic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-700-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:561;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"IBM Plex Sans Condensed\";s:10:\"fontFamily\";s:37:\"\"IBM Plex Sans Condensed\", sans-serif\";s:4:\"slug\";s:23:\"ibm-plex-sans-condensed\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyK7BgYsMDhM.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LgKkJHhOgBg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvur4cFFwq5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYYnEhq5H1w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovur4cFFwq5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYYnEhq5H1w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbarwq_jhJsM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyK7BgYsMDhM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vur4cFFwq5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYYnEhq5H1w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivur4cFFwq5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYYnEhq5H1w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvur4cFFwq5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYYnEhq5H1w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"IBM Plex Sans Condensed\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-700-italic.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:562;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"IBM Plex Sans Devanagari\";s:10:\"fontFamily\";s:38:\"\"IBM Plex Sans Devanagari\", sans-serif\";s:4:\"slug\";s:24:\"ibm-plex-sans-devanagari\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUj1UcjwCEQq.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQfub8AV0z0w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQfub8AV0z0w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__UEL0c83gCA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQfub8AV0z0w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQfub8AV0z0w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qfub8AV0z0w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"IBM Plex Sans Devanagari\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-700-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:563;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"IBM Plex Sans Hebrew\";s:10:\"fontFamily\";s:34:\"\"IBM Plex Sans Hebrew\", sans-serif\";s:4:\"slug\";s:20:\"ibm-plex-sans-hebrew\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-lgVqDaM7C4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt2306hjqF9Tc2.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H06hjqF9Tc2.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2g8Fk3rSaM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X06hjqF9Tc2.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n06hjqF9Tc2.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ3306hjqF9Tc2.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IBM Plex Sans Hebrew\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-700-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:564;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"IBM Plex Sans JP\";s:10:\"fontFamily\";s:30:\"\"IBM Plex Sans JP\", sans-serif\";s:4:\"slug\";s:16:\"ibm-plex-sans-jp\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yifB7twdmHQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrN9Vuw5_BAM.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrN9Vuw5_BAM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1C_4iNJ-pwc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrN9Vuw5_BAM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrN9Vuw5_BAM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrN9Vuw5_BAM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans JP\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-jp/ibm-plex-sans-jp.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:565;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"IBM Plex Sans KR\";s:10:\"fontFamily\";s:30:\"\"IBM Plex Sans KR\", sans-serif\";s:4:\"slug\";s:16:\"ibm-plex-sans-kr\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_WpzCpMrMfA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7PsqMPVZb4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7PsqMPVZb4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8te1W77HtMo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7PsqMPVZb4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7PsqMPVZb4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7PsqMPVZb4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"IBM Plex Sans KR\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-kr/ibm-plex-sans-kr.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:566;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"IBM Plex Sans Thai\";s:10:\"fontFamily\";s:32:\"\"IBM Plex Sans Thai\", sans-serif\";s:4:\"slug\";s:18:\"ibm-plex-sans-thai\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYgR8ZKUqcX.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFaOhGW74OXw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFaOhGW74OXw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8C9whZcNaUg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFaOhGW74OXw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFaOhGW74OXw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFaOhGW74OXw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IBM Plex Sans Thai\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai/ibm-plex-sans-thai.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:567;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"IBM Plex Sans Thai Looped\";s:10:\"fontFamily\";s:39:\"\"IBM Plex Sans Thai Looped\", sans-serif\";s:4:\"slug\";s:25:\"ibm-plex-sans-thai-looped\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKoXOtFCQ76Q.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFyDGC0i8Cc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFyDGC0i8Cc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBeAoFGoBCQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFyDGC0i8Cc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFyDGC0i8Cc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFyDGC0i8Cc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"IBM Plex Sans Thai Looped\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-700-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:568;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"IBM Plex Serif\";s:10:\"fontFamily\";s:23:\"\"IBM Plex Serif\", serif\";s:4:\"slug\";s:14:\"ibm-plex-serif\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zcZj1bIkNo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTjnTNgNq55w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hI2oVrBicOg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq1vjjNOg_oc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RI2oVrBicOg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq1vjjNOg_oc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUd0TY7ikbI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zcZj1bIkNo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BI2oVrBicOg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq1vjjNOg_oc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xI2oVrBicOg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q1vjjNOg_oc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hI2oVrBicOg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q1vjjNOg_oc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"IBM Plex Serif\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif-700-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/ibm-plex-serif/ibm-plex-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:569;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"IM Fell DW Pica\";s:10:\"fontFamily\";s:24:\"\"IM Fell DW Pica\", serif\";s:4:\"slug\";s:15:\"im-fell-dw-pica\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9YQPUvi88MQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"IM Fell DW Pica\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/im-fell-dw-pica/im-fell-dw-pica-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnVnCosMXm0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"IM Fell DW Pica\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/im-fell-dw-pica/im-fell-dw-pica-400-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/im-fell-dw-pica/im-fell-dw-pica.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:570;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"IM Fell DW Pica SC\";s:10:\"fontFamily\";s:27:\"\"IM Fell DW Pica SC\", serif\";s:4:\"slug\";s:18:\"im-fell-dw-pica-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW_RiKEUiBGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IM Fell DW Pica SC\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/im-fell-dw-pica-sc/im-fell-dw-pica-sc-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/im-fell-dw-pica-sc/im-fell-dw-pica-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:571;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"IM Fell Double Pica\";s:10:\"fontFamily\";s:28:\"\"IM Fell Double Pica\", serif\";s:4:\"slug\";s:19:\"im-fell-double-pica\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0G1UL5Ayp0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"IM Fell Double Pica\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/im-fell-double-pica/im-fell-double-pica-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_UZxF2p2G8g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"IM Fell Double Pica\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/im-fell-double-pica/im-fell-double-pica-400-italic.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/im-fell-double-pica/im-fell-double-pica.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:572;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"IM Fell Double Pica SC\";s:10:\"fontFamily\";s:31:\"\"IM Fell Double Pica SC\", serif\";s:4:\"slug\";s:22:\"im-fell-double-pica-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4YgEeru2dGg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"IM Fell Double Pica SC\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/im-fell-double-pica-sc/im-fell-double-pica-sc-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/im-fell-double-pica-sc/im-fell-double-pica-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:573;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"IM Fell English\";s:10:\"fontFamily\";s:24:\"\"IM Fell English\", serif\";s:4:\"slug\";s:15:\"im-fell-english\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3EqmZVY9Y5w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"IM Fell English\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/im-fell-english/im-fell-english-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOYd4pI59zg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"IM Fell English\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/im-fell-english/im-fell-english-400-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/im-fell-english/im-fell-english.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:574;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"IM Fell English SC\";s:10:\"fontFamily\";s:27:\"\"IM Fell English SC\", serif\";s:4:\"slug\";s:18:\"im-fell-english-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLPogOg0shzA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"IM Fell English SC\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/im-fell-english-sc/im-fell-english-sc-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/im-fell-english-sc/im-fell-english-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:575;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"IM Fell French Canon\";s:10:\"fontFamily\";s:29:\"\"IM Fell French Canon\", serif\";s:4:\"slug\";s:20:\"im-fell-french-canon\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coQPt1ozoPz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IM Fell French Canon\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/im-fell-french-canon/im-fell-french-canon-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNxKy5PzzrU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"IM Fell French Canon\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/im-fell-french-canon/im-fell-french-canon-400-italic.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/im-fell-french-canon/im-fell-french-canon.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:576;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"IM Fell French Canon SC\";s:10:\"fontFamily\";s:32:\"\"IM Fell French Canon SC\", serif\";s:4:\"slug\";s:23:\"im-fell-french-canon-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3cxUBCVIVqH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IM Fell French Canon SC\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/im-fell-french-canon-sc/im-fell-french-canon-sc-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/im-fell-french-canon-sc/im-fell-french-canon-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:577;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"IM Fell Great Primer\";s:10:\"fontFamily\";s:29:\"\"IM Fell Great Primer\", serif\";s:4:\"slug\";s:20:\"im-fell-great-primer\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorSvDo3SQY1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"IM Fell Great Primer\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/im-fell-great-primer/im-fell-great-primer-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtjsVTBY1N6U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"IM Fell Great Primer\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/im-fell-great-primer/im-fell-great-primer-400-italic.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/im-fell-great-primer/im-fell-great-primer.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:578;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"IM Fell Great Primer SC\";s:10:\"fontFamily\";s:32:\"\"IM Fell Great Primer SC\", serif\";s:4:\"slug\";s:23:\"im-fell-great-primer-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf4BXz0s8FG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"IM Fell Great Primer SC\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/im-fell-great-primer-sc/im-fell-great-primer-sc-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/im-fell-great-primer-sc/im-fell-great-primer-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:579;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Ibarra Real Nova\";s:10:\"fontFamily\";s:25:\"\"Ibarra Real Nova\", serif\";s:4:\"slug\";s:16:\"ibarra-real-nova\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDoVT9TWIvS.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDoVT9TWIvS.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DoVT9TWIvS.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DoVT9TWIvS.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXz5xXZvSkTo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXz5xXZvSkTo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXz5xXZvSkTo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXz5xXZvSkTo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Ibarra Real Nova\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova-700-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/ibarra-real-nova/ibarra-real-nova.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:580;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Iceberg\";s:10:\"fontFamily\";s:18:\"Iceberg, system-ui\";s:4:\"slug\";s:7:\"iceberg\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/iceberg/v24/8QIJdijAiM7o-qnZuI0Oq7jkAOw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Iceberg\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/iceberg/iceberg-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/iceberg/iceberg.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:581;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Iceland\";s:10:\"fontFamily\";s:18:\"Iceland, system-ui\";s:4:\"slug\";s:7:\"iceland\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/iceland/v20/rax9HiuFsdMNOnWPWKlGADBbg0s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Iceland\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/iceland/iceland-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/iceland/iceland.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:582;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Imbue\";s:10:\"fontFamily\";s:12:\"Imbue, serif\";s:4:\"slug\";s:5:\"imbue\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/imbue/v27/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfO4NNK-Q4xY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Imbue\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/imbue/imbue.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:583;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Imperial Script\";s:10:\"fontFamily\";s:26:\"\"Imperial Script\", cursive\";s:4:\"slug\";s:15:\"imperial-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/imperialscript/v6/5DCPAKrpzy_H98IV2ISnZBbGrVNvOOnlvttWNg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Imperial Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/imperial-script/imperial-script-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/imperial-script/imperial-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:584;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Imprima\";s:10:\"fontFamily\";s:19:\"Imprima, sans-serif\";s:4:\"slug\";s:7:\"imprima\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oCHyDzktPo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Imprima\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/imprima/imprima-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/imprima/imprima.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:585;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Inclusive Sans\";s:10:\"fontFamily\";s:28:\"\"Inclusive Sans\", sans-serif\";s:4:\"slug\";s:14:\"inclusive-sans\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/inclusivesans/v1/0nkxC9biPuwflXcJ46P4PGWE097wowa2LB4i.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inclusive Sans\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inclusive-sans/inclusive-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/inclusivesans/v1/0nkzC9biPuwflXcJ46P4PGWE0-73qQeUKQ4iT6o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Inclusive Sans\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inclusive-sans/inclusive-sans-400-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/inclusive-sans/inclusive-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:586;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Inconsolata\";s:10:\"fontFamily\";s:22:\"Inconsolata, monospace\";s:4:\"slug\";s:11:\"inconsolata\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aR_8lleY2co.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inconsolata\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/inconsolata/inconsolata.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:587;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Inder\";s:10:\"fontFamily\";s:17:\"Inder, sans-serif\";s:4:\"slug\";s:5:\"inder\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq_pw-P3U4O.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inder\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inder/inder-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/inder/inder.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:588;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Indie Flower\";s:10:\"fontFamily\";s:23:\"\"Indie Flower\", cursive\";s:4:\"slug\";s:12:\"indie-flower\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/indieflower/v21/m8JVjfNVeKWVnh3QMuKkFcZla0GG1dKEDw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Indie Flower\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/indie-flower/indie-flower-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/indie-flower/indie-flower.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:589;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Ingrid Darling\";s:10:\"fontFamily\";s:25:\"\"Ingrid Darling\", cursive\";s:4:\"slug\";s:14:\"ingrid-darling\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/ingriddarling/v5/LDIrapaJNxUtSuFdw-9yf4rCPsLLub458jGL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ingrid Darling\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ingrid-darling/ingrid-darling-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/ingrid-darling/ingrid-darling.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:590;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Inika\";s:10:\"fontFamily\";s:12:\"Inika, serif\";s:4:\"slug\";s:5:\"inika\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTCRcc2s2XH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inika\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inika/inika-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM7mHnOSOuk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inika\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inika/inika-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/inika/inika.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:591;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Inknut Antiqua\";s:10:\"fontFamily\";s:23:\"\"Inknut Antiqua\", serif\";s:4:\"slug\";s:14:\"inknut-antiqua\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj8bBoIYJNf.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUG6pzxRwYB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j8bBoIYJNf.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj8bBoIYJNf.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj8bBoIYJNf.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj8bBoIYJNf.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j8bBoIYJNf.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Inknut Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/inknut-antiqua/inknut-antiqua.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:592;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Inria Sans\";s:10:\"fontFamily\";s:24:\"\"Inria Sans\", sans-serif\";s:4:\"slug\";s:10:\"inria-sans\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQ5FqeY3fX4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Inria Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPqMQybX4pQA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Inria Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5OvyKQNute8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Inria Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4KCFrpe8uZA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Inria Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQ5FqeY3fX4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Inria Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PqMQybX4pQA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Inria Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/inria-sans/inria-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:593;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Inria Serif\";s:10:\"fontFamily\";s:20:\"\"Inria Serif\", serif\";s:4:\"slug\";s:11:\"inria-serif\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/inriaserif/v16/fC14PYxPY3rXxEndZJAzN3wAVQjAhFyta3xN.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inria Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/inriaserif/v16/fC16PYxPY3rXxEndZJAzN3SuT4THjl2PbmxN0_E.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inria Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/inriaserif/v16/fC1lPYxPY3rXxEndZJAzN0SpfSzNr0Ck.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inria Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/inriaserif/v16/fC1nPYxPY3rXxEndZJAzN3Sudy3vqlCkcmU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inria Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/inriaserif/v16/fC14PYxPY3rXxEndZJAzN3wQUgjAhFyta3xN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inria Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/inriaserif/v16/fC16PYxPY3rXxEndZJAzN3SuT5TAjl2PbmxN0_E.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inria Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif-700-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/inria-serif/inria-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:594;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Inspiration\";s:10:\"fontFamily\";s:20:\"Inspiration, cursive\";s:4:\"slug\";s:11:\"inspiration\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/inspiration/v6/x3dkckPPZa6L4wIg5cZOEvoDnSrlBBsy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inspiration\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inspiration/inspiration-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/inspiration/inspiration.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:595;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Instrument Sans\";s:10:\"fontFamily\";s:29:\"\"Instrument Sans\", sans-serif\";s:4:\"slug\";s:15:\"instrument-sans\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gfwmS0v3_7Y.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kywN2u7YUwU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kywN2u7YUwU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkywN2u7YUwU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Instrument Sans\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans-700-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/instrument-sans/instrument-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:596;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Instrument Serif\";s:10:\"fontFamily\";s:25:\"\"Instrument Serif\", serif\";s:4:\"slug\";s:16:\"instrument-serif\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zcZj1bIkNo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Instrument Serif\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/instrument-serif/instrument-serif-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATjnTNgNq55w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Instrument Serif\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/instrument-serif/instrument-serif-400-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/instrument-serif/instrument-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:597;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Inter\";s:10:\"fontFamily\";s:17:\"Inter, sans-serif\";s:4:\"slug\";s:5:\"inter\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Inter\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/inter/inter-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/inter/inter.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:598;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Inter Tight\";s:10:\"fontFamily\";s:25:\"\"Inter Tight\", sans-serif\";s:4:\"slug\";s:11:\"inter-tight\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqWSRToK8EPg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5SgqoUPvi5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Inter Tight\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/inter-tight/inter-tight.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:599;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Irish Grover\";s:10:\"fontFamily\";s:25:\"\"Irish Grover\", system-ui\";s:4:\"slug\";s:12:\"irish-grover\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf_f5Oaiw4cw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Irish Grover\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/irish-grover/irish-grover-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/irish-grover/irish-grover.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:600;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Island Moments\";s:10:\"fontFamily\";s:25:\"\"Island Moments\", cursive\";s:4:\"slug\";s:14:\"island-moments\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/islandmoments/v6/NaPBcZfVGvBdxIt7Ar0qzkXJF-TDIohbZ6SY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Island Moments\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/island-moments/island-moments-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/island-moments/island-moments.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:601;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Istok Web\";s:10:\"fontFamily\";s:23:\"\"Istok Web\", sans-serif\";s:4:\"slug\";s:9:\"istok-web\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/istokweb/v24/3qTvojGmgSyUukBzKslZBGF-9kIIaQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Istok Web\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/istok-web/istok-web-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/istokweb/v24/3qTpojGmgSyUukBzKslpA2t_1EcYaQ7F.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Istok Web\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/istok-web/istok-web-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/istokweb/v24/3qTqojGmgSyUukBzKslhvU5a-2kUYBfcMw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Istok Web\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/istok-web/istok-web-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/istokweb/v24/3qT0ojGmgSyUukBzKslpA1PG-2MVQhLMMygN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Istok Web\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/istok-web/istok-web-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/istok-web/istok-web.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:602;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Italiana\";s:10:\"fontFamily\";s:15:\"Italiana, serif\";s:4:\"slug\";s:8:\"italiana\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/italiana/v20/QldNNTtLsx4E__B0XTmUY31Wx7Vv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Italiana\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/italiana/italiana-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/italiana/italiana.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:603;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Italianno\";s:10:\"fontFamily\";s:18:\"Italianno, cursive\";s:4:\"slug\";s:9:\"italianno\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6RnipYpQwM-gg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Italianno\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/italianno/italianno-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/italianno/italianno.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:604;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Itim\";s:10:\"fontFamily\";s:13:\"Itim, cursive\";s:4:\"slug\";s:4:\"itim\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/itim/v14/0nknC9ziJOYewAFKkc7ZdwU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Itim\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/itim/itim-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/itim/itim.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:605;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Jacques Francois\";s:10:\"fontFamily\";s:25:\"\"Jacques Francois\", serif\";s:4:\"slug\";s:16:\"jacques-francois\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/jacquesfrancois/v24/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcbqoeRWfbs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Jacques Francois\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/jacques-francois/jacques-francois-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/jacques-francois/jacques-francois.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:606;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Jacques Francois Shadow\";s:10:\"fontFamily\";s:36:\"\"Jacques Francois Shadow\", system-ui\";s:4:\"slug\";s:23:\"jacques-francois-shadow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jacquesfrancoisshadow/v25/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8QsHuV5ULS.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Jacques Francois Shadow\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/jacques-francois-shadow/jacques-francois-shadow-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/jacques-francois-shadow/jacques-francois-shadow.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:607;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Jaldi\";s:10:\"fontFamily\";s:17:\"Jaldi, sans-serif\";s:4:\"slug\";s:5:\"jaldi\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NRZpD_B6g8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Jaldi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/jaldi/jaldi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbTyLLQ1niPn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Jaldi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/jaldi/jaldi-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/jaldi/jaldi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:608;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"JetBrains Mono\";s:10:\"fontFamily\";s:27:\"\"JetBrains Mono\", monospace\";s:4:\"slug\";s:14:\"jetbrains-mono\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjOFmUsaaDhw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-100-italic.svg\";}i:9;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-200-italic.svg\";}i:10;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-300-italic.svg\";}i:11;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-400-italic.svg\";}i:12;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-500-italic.svg\";}i:13;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-600-italic.svg\";}i:14;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-700-italic.svg\";}i:15;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOVk6OThxPA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"JetBrains Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono-800-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/jetbrains-mono/jetbrains-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:609;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Jim Nightshade\";s:10:\"fontFamily\";s:25:\"\"Jim Nightshade\", cursive\";s:4:\"slug\";s:14:\"jim-nightshade\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS9V3qKaMxD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Jim Nightshade\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/jim-nightshade/jim-nightshade-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/jim-nightshade/jim-nightshade.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:610;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Joan\";s:10:\"fontFamily\";s:11:\"Joan, serif\";s:4:\"slug\";s:4:\"joan\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:65:\"https://fonts.gstatic.com/s/joan/v9/ZXupe1oZsqWRbRJH8X1p_Ng.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Joan\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/joan/joan-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/joan/joan.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:611;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Jockey One\";s:10:\"fontFamily\";s:24:\"\"Jockey One\", sans-serif\";s:4:\"slug\";s:10:\"jockey-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/jockeyone/v21/HTxpL2g2KjCFj4x8WI6ArIP7HYOk4xc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Jockey One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/jockey-one/jockey-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/jockey-one/jockey-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:612;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Jolly Lodger\";s:10:\"fontFamily\";s:25:\"\"Jolly Lodger\", system-ui\";s:4:\"slug\";s:12:\"jolly-lodger\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VXOrT3ZyuqA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Jolly Lodger\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/jolly-lodger/jolly-lodger-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/jolly-lodger/jolly-lodger.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:613;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Jomhuria\";s:10:\"fontFamily\";s:19:\"Jomhuria, system-ui\";s:4:\"slug\";s:8:\"jomhuria\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/jomhuria/v20/Dxxp8j-TMXf-llKur2bwMOGbC3Dh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Jomhuria\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/jomhuria/jomhuria-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/jomhuria/jomhuria.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:614;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Jomolhari\";s:10:\"fontFamily\";s:16:\"Jomolhari, serif\";s:4:\"slug\";s:9:\"jomolhari\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/jomolhari/v18/EvONzA1M1Iw_CBd2hsQCElIZKq5INg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Jomolhari\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/jomolhari/jomolhari-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/jomolhari/jomolhari.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:615;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Josefin Sans\";s:10:\"fontFamily\";s:26:\"\"Josefin Sans\", sans-serif\";s:4:\"slug\";s:12:\"josefin-sans\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMRrLgTsQV0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-100-italic.svg\";}i:8;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhLybpUV3MEQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/josefin-sans/josefin-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:616;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Josefin Slab\";s:10:\"fontFamily\";s:21:\"\"Josefin Slab\", serif\";s:4:\"slug\";s:12:\"josefin-slab\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3w3K6CcEyI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-100-italic.svg\";}i:8;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09KoKZAyK43w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Josefin Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/josefin-slab/josefin-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:617;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Jost\";s:10:\"fontFamily\";s:16:\"Jost, sans-serif\";s:4:\"slug\";s:4:\"jost\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7myjJAVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7mwjJQVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7mz9JQVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7myjJQVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7myRJQVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7mx9IgVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7mxEIgVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7mwjIgVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7mwKIgVDPokMmuHL.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/jost/v15/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNIgun_HLMEo.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Jost\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jost/jost-900-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/jost/jost.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:618;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Joti One\";s:10:\"fontFamily\";s:21:\"\"Joti One\", system-ui\";s:4:\"slug\";s:8:\"joti-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/jotione/v26/Z9XVDmdJQAmWm9TwaYTb4u2El6GC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Joti One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/joti-one/joti-one-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/joti-one/joti-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:619;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Jua\";s:10:\"fontFamily\";s:15:\"Jua, sans-serif\";s:4:\"slug\";s:3:\"jua\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:64:\"https://fonts.gstatic.com/s/jua/v15/co3KmW9ljjAjduDZCsKgsg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Jua\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/jua/jua-400-normal.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/jua/jua.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:620;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Judson\";s:10:\"fontFamily\";s:13:\"Judson, serif\";s:4:\"slug\";s:6:\"judson\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRCrN01bV7kg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Judson\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/judson/judson-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDbl197BrknZf.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Judson\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/judson/judson-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ2J5nm29Gww.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Judson\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/judson/judson-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/judson/judson.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:621;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Julee\";s:10:\"fontFamily\";s:14:\"Julee, cursive\";s:4:\"slug\";s:5:\"julee\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZOodgzydtk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Julee\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/julee/julee-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/julee/julee.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:622;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Julius Sans One\";s:10:\"fontFamily\";s:29:\"\"Julius Sans One\", sans-serif\";s:4:\"slug\";s:15:\"julius-sans-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5W-wHEW6aGXHw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Julius Sans One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/julius-sans-one/julius-sans-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/julius-sans-one/julius-sans-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:623;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Junge\";s:10:\"fontFamily\";s:12:\"Junge, serif\";s:4:\"slug\";s:5:\"junge\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/junge/v24/gokgH670Gl1lUqAYvhB7SnKm.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Junge\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/junge/junge-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/junge/junge.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:624;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Jura\";s:10:\"fontFamily\";s:16:\"Jura, sans-serif\";s:4:\"slug\";s:4:\"jura\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7aukTfmrH_rt.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jura/jura-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7aukTfmrH_rt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jura/jura-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7aukTfmrH_rt.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jura/jura-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6qukTfmrH_rt.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jura/jura-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP266qukTfmrH_rt.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Jura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/jura/jura-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/jura/jura.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:625;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Just Another Hand\";s:10:\"fontFamily\";s:28:\"\"Just Another Hand\", cursive\";s:4:\"slug\";s:17:\"just-another-hand\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr6BmmlS5aw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Just Another Hand\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/just-another-hand/just-another-hand-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/just-another-hand/just-another-hand.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:626;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Just Me Again Down Here\";s:10:\"fontFamily\";s:34:\"\"Just Me Again Down Here\", cursive\";s:4:\"slug\";s:23:\"just-me-again-down-here\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwCvqDwc_fg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Just Me Again Down Here\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/just-me-again-down-here/just-me-again-down-here-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/just-me-again-down-here/just-me-again-down-here.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:627;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"K2D\";s:10:\"fontFamily\";s:17:\"\"K2D\", sans-serif\";s:4:\"slug\";s:5:\"k-2-d\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/k2d/v11/J7aRnpF2V0ErE6UsvrIw74NL.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/k2d/v11/J7afnpF2V0EjdZ1NtLMS6pNLAjk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Erv4QJkZw85ppSGw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ3hlZY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Er24cJkZw85ppSGw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ2FlpY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:64:\"https://fonts.gstatic.com/s/k2d/v11/J7aTnpF2V0ETcq8tnLcg7w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/k2d/v11/J7aRnpF2V0EjdaUsvrIw74NL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Erg4YJkZw85ppSGw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ3dl5Y9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Err4EJkZw85ppSGw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ3xkJY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Ery4AJkZw85ppSGw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ2VkZY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Er14MJkZw85ppSGw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ2JkpY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"K2D\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d-800-italic.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/k2d/k2d.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:628;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Kablammo\";s:10:\"fontFamily\";s:19:\"Kablammo, system-ui\";s:4:\"slug\";s:8:\"kablammo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/kablammo/v1/bWtm7fHPcgrhC-J3lcXhcQTY5Ixs6Au9YgCjih0Rf4YDKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Kablammo\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/kablammo/kablammo-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/kablammo/kablammo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:629;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kadwa\";s:10:\"fontFamily\";s:12:\"Kadwa, serif\";s:4:\"slug\";s:5:\"kadwa\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTCRcc2s2XH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kadwa\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kadwa/kadwa-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM7mHnOSOuk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kadwa\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kadwa/kadwa-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kadwa/kadwa.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:630;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Kaisei Decol\";s:10:\"fontFamily\";s:21:\"\"Kaisei Decol\", serif\";s:4:\"slug\";s:12:\"kaisei-decol\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyXlEP22OjoA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Kaisei Decol\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/kaisei-decol/kaisei-decol-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr1ki_qb57kA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Kaisei Decol\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/kaisei-decol/kaisei-decol-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r1ki_qb57kA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Kaisei Decol\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/kaisei-decol/kaisei-decol-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/kaisei-decol/kaisei-decol.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:631;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Kaisei HarunoUmi\";s:10:\"fontFamily\";s:25:\"\"Kaisei HarunoUmi\", serif\";s:4:\"slug\";s:16:\"kaisei-harunoumi\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGs75sM8u3mk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Kaisei HarunoUmi\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/kaisei-harunoumi/kaisei-harunoumi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMIFwmC9FAU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Kaisei HarunoUmi\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/kaisei-harunoumi/kaisei-harunoumi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMIFwmC9FAU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Kaisei HarunoUmi\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/kaisei-harunoumi/kaisei-harunoumi-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/kaisei-harunoumi/kaisei-harunoumi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:632;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Kaisei Opti\";s:10:\"fontFamily\";s:20:\"\"Kaisei Opti\", serif\";s:4:\"slug\";s:11:\"kaisei-opti\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFlb7KlmxuHx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Kaisei Opti\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/kaisei-opti/kaisei-opti-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1r7f34DYwn.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Kaisei Opti\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/kaisei-opti/kaisei-opti-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41r7f34DYwn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Kaisei Opti\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/kaisei-opti/kaisei-opti-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/kaisei-opti/kaisei-opti.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:633;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Kaisei Tokumin\";s:10:\"fontFamily\";s:23:\"\"Kaisei Tokumin\", serif\";s:4:\"slug\";s:14:\"kaisei-tokumin\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJa1l0pj946.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kaisei Tokumin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kaisei-tokumin/kaisei-tokumin-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3kkpMIzeI6v.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kaisei Tokumin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kaisei-tokumin/kaisei-tokumin-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkkpMIzeI6v.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kaisei Tokumin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kaisei-tokumin/kaisei-tokumin-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkkpMIzeI6v.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kaisei Tokumin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kaisei-tokumin/kaisei-tokumin-800-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/kaisei-tokumin/kaisei-tokumin.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:634;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kalam\";s:10:\"fontFamily\";s:14:\"Kalam, cursive\";s:4:\"slug\";s:5:\"kalam\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLOmCUItqGt.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kalam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kalam/kalam-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhTMibDszkB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kalam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kalam/kalam-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLOmCUItqGt.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kalam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kalam/kalam-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kalam/kalam.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:635;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Kalnia\";s:10:\"fontFamily\";s:13:\"Kalnia, serif\";s:4:\"slug\";s:6:\"kalnia\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW9il2xUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW_ilmxUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW88lmxUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW9ilmxUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW9QlmxUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW-8kWxUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/kalnia/v2/11hqGpPCwUbbYwZZP0RBuDY62BQZhjvOytM_sLzi-TFWAW-FkWxUGNcykIZc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kalnia\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/kalnia/kalnia.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:636;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Kameron\";s:10:\"fontFamily\";s:14:\"Kameron, serif\";s:4:\"slug\";s:7:\"kameron\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/kameron/v16/vm8pdR7vXErQxuznqrUS3z1Uw3nq4Ne3cbcevZPxCDLR.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Kameron\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/kameron/kameron-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/kameron/v16/vm8pdR7vXErQxuznqrUS3z1Uw3nq4NeFcbcevZPxCDLR.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Kameron\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/kameron/kameron-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/kameron/v16/vm8pdR7vXErQxuznqrUS3z1Uw3nq4NdpdrcevZPxCDLR.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Kameron\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/kameron/kameron-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/kameron/v16/vm8pdR7vXErQxuznqrUS3z1Uw3nq4NdQdrcevZPxCDLR.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Kameron\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/kameron/kameron-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/kameron/kameron.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:637;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kanit\";s:10:\"fontFamily\";s:17:\"Kanit, sans-serif\";s:4:\"slug\";s:5:\"kanit\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kanit/v15/nKKX-Go6G5tXcr72GwCKcaxALFs.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/kanit/v15/nKKV-Go6G5tXcraQI2GAcI5FPFtrGw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5aOiWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI82hVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4-OSWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI6miVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/kanit/v15/nKKZ-Go6G5tXcoaXEQGodLxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kanit/v15/nKKX-Go6G5tXcraQGwCKcaxALFs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5mOCWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI_GjVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5KPyWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI92kVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4uPiWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI7mlVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4yPSWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI6WmVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4WPCWlX6BJNUJy.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI4GnVaFrMFJyAu4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kanit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kanit/kanit.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:638;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Kantumruy Pro\";s:10:\"fontFamily\";s:27:\"\"Kantumruy Pro\", sans-serif\";s:4:\"slug\";s:13:\"kantumruy-pro\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUsxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEsxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEsxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEsxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEsxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0sxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0sxM34dR6dW.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-100-italic.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOX8_QrdWlcU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Kantumruy Pro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/kantumruy-pro/kantumruy-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:639;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Karantina\";s:10:\"fontFamily\";s:20:\"Karantina, system-ui\";s:4:\"slug\";s:9:\"karantina\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf_f5Oaiw4cw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Karantina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/karantina/karantina-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ9QA78NVSYw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Karantina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/karantina/karantina-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f_f5Oaiw4cw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Karantina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/karantina/karantina-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/karantina/karantina.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:640;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Karla\";s:10:\"fontFamily\";s:17:\"Karla, sans-serif\";s:4:\"slug\";s:5:\"karla\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-200-italic.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-300-italic.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-400-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-500-italic.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-700-italic.svg\";}i:13;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/karla/v31/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElKZbLXGxGR.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Karla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karla/karla-800-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/karla/karla.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:641;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Karma\";s:10:\"fontFamily\";s:12:\"Karma, serif\";s:4:\"slug\";s:5:\"karma\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z6uqzGQC_-.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karma\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karma/karma-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBqS-J3kbDP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karma\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karma/karma-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ6uqzGQC_-.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karma\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karma/karma-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ6uqzGQC_-.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karma\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karma/karma-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ6uqzGQC_-.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Karma\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/karma/karma-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/karma/karma.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:642;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Katibeh\";s:10:\"fontFamily\";s:18:\"Katibeh, system-ui\";s:4:\"slug\";s:7:\"katibeh\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/katibeh/v19/ZGjXol5MQJog4bxDaChRVDNdGDs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Katibeh\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/katibeh/katibeh-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/katibeh/katibeh.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:643;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Kaushan Script\";s:10:\"fontFamily\";s:25:\"\"Kaushan Script\", cursive\";s:4:\"slug\";s:14:\"kaushan-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kaushanscript/v16/vm8vdRfvXFLG3OLnsO15WYS5DF76ytN3M48a.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kaushan Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kaushan-script/kaushan-script-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/kaushan-script/kaushan-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:644;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Kavivanar\";s:10:\"fontFamily\";s:18:\"Kavivanar, cursive\";s:4:\"slug\";s:9:\"kavivanar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/kavivanar/v20/o-0IIpQgyXYSwhxP7_Jb5z5Ba_2c7A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kavivanar\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kavivanar/kavivanar-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/kavivanar/kavivanar.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:645;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Kavoon\";s:10:\"fontFamily\";s:17:\"Kavoon, system-ui\";s:4:\"slug\";s:6:\"kavoon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kavoon/v23/pxiFyp4_scRYhlU4Mbr6f1pdEQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kavoon\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kavoon/kavoon-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/kavoon/kavoon.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:646;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Kay Pho Du\";s:10:\"fontFamily\";s:19:\"\"Kay Pho Du\", serif\";s:4:\"slug\";s:10:\"kay-pho-du\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/kayphodu/v2/jizfREFPvGNOx-jhPwHR4OynLD0Z4zM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kay Pho Du\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kay-pho-du/kay-pho-du-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/kayphodu/v2/jizcREFPvGNOx-jhPwHR2B2OCDAy_zoyk18.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kay Pho Du\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kay-pho-du/kay-pho-du-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/kayphodu/v2/jizcREFPvGNOx-jhPwHR2DGJCDAy_zoyk18.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kay Pho Du\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kay-pho-du/kay-pho-du-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/kayphodu/v2/jizcREFPvGNOx-jhPwHR2FWICDAy_zoyk18.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kay Pho Du\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kay-pho-du/kay-pho-du-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/kay-pho-du/kay-pho-du.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:647;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Kdam Thmor Pro\";s:10:\"fontFamily\";s:28:\"\"Kdam Thmor Pro\", sans-serif\";s:4:\"slug\";s:14:\"kdam-thmor-pro\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kdamthmorpro/v4/EJRPQgAzVdcI-Qdvt34jzurnGA76j89I8ZWb.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kdam Thmor Pro\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kdam-thmor-pro/kdam-thmor-pro-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/kdam-thmor-pro/kdam-thmor-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:648;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Keania One\";s:10:\"fontFamily\";s:23:\"\"Keania One\", system-ui\";s:4:\"slug\";s:10:\"keania-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/keaniaone/v24/zOL54pXJk65E8pXardnuycFuv-hHkOs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Keania One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/keania-one/keania-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/keania-one/keania-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:649;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Kelly Slab\";s:10:\"fontFamily\";s:23:\"\"Kelly Slab\", system-ui\";s:4:\"slug\";s:10:\"kelly-slab\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/kellyslab/v17/-W_7XJX0Rz3cxUnJC5t6TkYBf50kbiM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kelly Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kelly-slab/kelly-slab-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/kelly-slab/kelly-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:650;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kenia\";s:10:\"fontFamily\";s:16:\"Kenia, system-ui\";s:4:\"slug\";s:5:\"kenia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/kenia/v28/jizURE5PuHQH9qCLNUGswfGM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kenia\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kenia/kenia-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kenia/kenia.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:651;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Khand\";s:10:\"fontFamily\";s:17:\"Khand, sans-serif\";s:4:\"slug\";s:5:\"khand\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFEyZwaH__-C.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khand\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khand/khand-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpQWHU_TBqO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khand\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khand/khand-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVEyZwaH__-C.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khand\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khand/khand-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlEyZwaH__-C.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khand\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khand/khand-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1EyZwaH__-C.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khand\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khand/khand-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/khand/khand.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:652;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Khmer\";s:10:\"fontFamily\";s:17:\"Khmer, sans-serif\";s:4:\"slug\";s:5:\"khmer\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/khmer/v29/MjQImit_vPPwpF-EpN2EeYmD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khmer\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khmer/khmer-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/khmer/khmer.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:653;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Khula\";s:10:\"fontFamily\";s:17:\"Khula, sans-serif\";s:4:\"slug\";s:5:\"khula\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvRrC59XwXD.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khula\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khula/khula-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcMpA_chzJ0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khula\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khula/khula-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivRrC59XwXD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khula\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khula/khula-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvRrC59XwXD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khula\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khula/khula-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvRrC59XwXD.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Khula\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/khula/khula-800-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/khula/khula.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:654;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kings\";s:10:\"fontFamily\";s:14:\"Kings, cursive\";s:4:\"slug\";s:5:\"kings\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/kings/v7/8AtnGsK4O5CYXU_Nq6GSPaHS.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kings\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kings/kings-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kings/kings.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:655;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Kirang Haerang\";s:10:\"fontFamily\";s:27:\"\"Kirang Haerang\", system-ui\";s:4:\"slug\";s:14:\"kirang-haerang\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqqWPaJq4no.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Kirang Haerang\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/kirang-haerang/kirang-haerang-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/kirang-haerang/kirang-haerang.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:656;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Kite One\";s:10:\"fontFamily\";s:22:\"\"Kite One\", sans-serif\";s:4:\"slug\";s:8:\"kite-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1e6HnGO4uA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Kite One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/kite-one/kite-one-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/kite-one/kite-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:657;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Kiwi Maru\";s:10:\"fontFamily\";s:18:\"\"Kiwi Maru\", serif\";s:4:\"slug\";s:9:\"kiwi-maru\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Uhn9R5ShnA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kiwi Maru\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kiwi-maru/kiwi-maru-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YnQCQXzLhTg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kiwi Maru\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kiwi-maru/kiwi-maru-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Uhn9R5ShnA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kiwi Maru\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kiwi-maru/kiwi-maru-500-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/kiwi-maru/kiwi-maru.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:658;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Klee One\";s:10:\"fontFamily\";s:19:\"\"Klee One\", cursive\";s:4:\"slug\";s:8:\"klee-one\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4FOeekWPrP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Klee One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/klee-one/klee-one-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Opc-bGkqIw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Klee One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/klee-one/klee-one-600-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/klee-one/klee-one.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:659;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Knewave\";s:10:\"fontFamily\";s:18:\"Knewave, system-ui\";s:4:\"slug\";s:7:\"knewave\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItS-9-trEvlQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Knewave\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/knewave/knewave-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/knewave/knewave.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:660;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"KoHo\";s:10:\"fontFamily\";s:16:\"KoHo, sans-serif\";s:4:\"slug\";s:4:\"koho\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJv5JoKhHys.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zJ6CkDyvqZA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJv5JoKhHys.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzJ6CkDyvqZA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBiwefJbSOos.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUfbTXKou4Bg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJv5JoKhHys.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zJ6CkDyvqZA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJv5JoKhHys.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzJ6CkDyvqZA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJv5JoKhHys.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzJ6CkDyvqZA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"KoHo\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/koho/koho-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/koho/koho.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:661;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Kodchasan\";s:10:\"fontFamily\";s:21:\"Kodchasan, sans-serif\";s:4:\"slug\";s:9:\"kodchasan\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1CghOqo3eMeoA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCp_-YOoIgN.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1OghOqo3eMeoA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cp_-YOoIgN.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJminuEicG01A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGFq8Sk1PoH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1KghOqo3eMeoA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCp_-YOoIgN.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1WghOqo3eMeoA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCp_-YOoIgN.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1SghOqo3eMeoA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCp_-YOoIgN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Kodchasan\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/kodchasan/kodchasan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:662;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Koh Santepheap\";s:10:\"fontFamily\";s:23:\"\"Koh Santepheap\", serif\";s:4:\"slug\";s:14:\"koh-santepheap\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/kohsantepheap/v11/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVmTtjNJUWU.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Koh Santepheap\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/koh-santepheap/koh-santepheap-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/kohsantepheap/v11/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y8mD9ASHz5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Koh Santepheap\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/koh-santepheap/koh-santepheap-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kohsantepheap/v11/gNMdW3p6SJbwyGj2rBZyeOrTjOPkF1ixsyNJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Koh Santepheap\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/koh-santepheap/koh-santepheap-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/kohsantepheap/v11/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy8mD9ASHz5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Koh Santepheap\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/koh-santepheap/koh-santepheap-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/kohsantepheap/v11/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny8mD9ASHz5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Koh Santepheap\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/koh-santepheap/koh-santepheap-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/koh-santepheap/koh-santepheap.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:663;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Kolker Brush\";s:10:\"fontFamily\";s:23:\"\"Kolker Brush\", cursive\";s:4:\"slug\";s:12:\"kolker-brush\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/kolkerbrush/v6/iJWDBXWRZjfKWdvmzwvvog3-6aJ6x8qNUQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Kolker Brush\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/kolker-brush/kolker-brush-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/kolker-brush/kolker-brush.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:664;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Konkhmer Sleokchher\";s:10:\"fontFamily\";s:32:\"\"Konkhmer Sleokchher\", system-ui\";s:4:\"slug\";s:19:\"konkhmer-sleokchher\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3t07E0d-W0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Konkhmer Sleokchher\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/konkhmer-sleokchher/konkhmer-sleokchher-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/konkhmer-sleokchher/konkhmer-sleokchher.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:665;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Kosugi\";s:10:\"fontFamily\";s:18:\"Kosugi, sans-serif\";s:4:\"slug\";s:6:\"kosugi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4Mbr6f1pdEQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kosugi\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kosugi/kosugi-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/kosugi/kosugi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:666;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Kosugi Maru\";s:10:\"fontFamily\";s:25:\"\"Kosugi Maru\", sans-serif\";s:4:\"slug\";s:11:\"kosugi-maru\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTvivr9iBq_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Kosugi Maru\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/kosugi-maru/kosugi-maru-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/kosugi-maru/kosugi-maru.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:667;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Kotta One\";s:10:\"fontFamily\";s:18:\"\"Kotta One\", serif\";s:4:\"slug\";s:9:\"kotta-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPGQ3s5dwt7w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kotta One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kotta-one/kotta-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/kotta-one/kotta-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:668;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Koulen\";s:10:\"fontFamily\";s:17:\"Koulen, system-ui\";s:4:\"slug\";s:6:\"koulen\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/koulen/v27/AMOQz46as3KIBPeWh3A9kuYMUg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Koulen\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/koulen/koulen-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/koulen/koulen.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:669;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Kranky\";s:10:\"fontFamily\";s:17:\"Kranky, system-ui\";s:4:\"slug\";s:6:\"kranky\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kranky/v28/hESw6XVgJzlPsFnMoxeEZo_H_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kranky\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kranky/kranky-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/kranky/kranky.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:670;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kreon\";s:10:\"fontFamily\";s:12:\"Kreon, serif\";s:4:\"slug\";s:5:\"kreon\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimfzUfp2dWNg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kreon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kreon/kreon-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimfzUfp2dWNg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kreon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kreon/kreon-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimfzUfp2dWNg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kreon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kreon/kreon-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mfzUfp2dWNg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kreon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kreon/kreon-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mfzUfp2dWNg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kreon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kreon/kreon-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kreon/kreon.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:671;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Kristi\";s:10:\"fontFamily\";s:15:\"Kristi, cursive\";s:4:\"slug\";s:6:\"kristi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kristi/v21/uK_y4ricdeU6zwdRDx0TMv6EXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kristi\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kristi/kristi-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/kristi/kristi.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:672;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Krona One\";s:10:\"fontFamily\";s:23:\"\"Krona One\", sans-serif\";s:4:\"slug\";s:9:\"krona-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCNI-h3cWkWg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Krona One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/krona-one/krona-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/krona-one/krona-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:673;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Krub\";s:10:\"fontFamily\";s:16:\"Krub, sans-serif\";s:4:\"slug\";s:4:\"krub\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLR4R6gWaf8.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByRooTef_6gQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLR4R6gWaf8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyRooTef_6gQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:65:\"https://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkMQDLlTW6E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaDZtWS6EPcA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLR4R6gWaf8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyRooTef_6gQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLR4R6gWaf8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyRooTef_6gQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLR4R6gWaf8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyRooTef_6gQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Krub\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/krub/krub-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/krub/krub.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:674;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Kufam\";s:10:\"fontFamily\";s:17:\"Kufam, sans-serif\";s:4:\"slug\";s:5:\"kufam\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kufam/v21/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7rACJHvIwYg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kufam/v21/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7rACJHvIwYg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kufam/v21/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47rACJHvIwYg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kufam/v21/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47rACJHvIwYg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kufam/v21/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47rACJHvIwYg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kufam/v21/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647rACJHvIwYg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kufam/v21/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqIPPcgYp0i.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kufam/v21/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqIPPcgYp0i.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kufam/v21/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqIPPcgYp0i.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kufam/v21/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqIPPcgYp0i.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kufam/v21/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqIPPcgYp0i.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/kufam/v21/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqIPPcgYp0i.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Kufam\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/kufam/kufam.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:675;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Kulim Park\";s:10:\"fontFamily\";s:24:\"\"Kulim Park\", sans-serif\";s:4:\"slug\";s:10:\"kulim-park\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwataZbUvGjU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QZJcqCjVVUA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwataZbUvGjU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQZJcqCjVVUA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtFsm5aZxebw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws5IR0abw2Aw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwataZbUvGjU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQZJcqCjVVUA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwataZbUvGjU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQZJcqCjVVUA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Kulim Park\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/kulim-park/kulim-park.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:676;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Kumar One\";s:10:\"fontFamily\";s:22:\"\"Kumar One\", system-ui\";s:4:\"slug\";s:9:\"kumar-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/kumarone/v21/bMr1mS-P958wYi6YaGeGMe6WU3oT0g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Kumar One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/kumar-one/kumar-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/kumar-one/kumar-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:677;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Kumar One Outline\";s:10:\"fontFamily\";s:30:\"\"Kumar One Outline\", system-ui\";s:4:\"slug\";s:17:\"kumar-one-outline\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zD1RQu8EGKF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Kumar One Outline\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/kumar-one-outline/kumar-one-outline-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/kumar-one-outline/kumar-one-outline.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:678;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Kumbh Sans\";s:10:\"fontFamily\";s:24:\"\"Kumbh Sans\", sans-serif\";s:4:\"slug\";s:10:\"kumbh-sans\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA9LTuUkqaLg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Kumbh Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/kumbh-sans/kumbh-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:679;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Kurale\";s:10:\"fontFamily\";s:13:\"Kurale, serif\";s:4:\"slug\";s:6:\"kurale\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6fQT3v02QFg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Kurale\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/kurale/kurale-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/kurale/kurale.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:680;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"La Belle Aurore\";s:10:\"fontFamily\";s:26:\"\"La Belle Aurore\", cursive\";s:4:\"slug\";s:15:\"la-belle-aurore\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/labelleaurore/v20/RrQIbot8-mNYKnGNDkWlocovHeIIHueFNVmULg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"La Belle Aurore\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/la-belle-aurore/la-belle-aurore-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/la-belle-aurore/la-belle-aurore.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:681;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Labrada\";s:10:\"fontFamily\";s:14:\"Labrada, serif\";s:4:\"slug\";s:7:\"labrada\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM9QPdUej17.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvZ2fy17-dE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Labrada\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/labrada/labrada.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:682;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Lacquer\";s:10:\"fontFamily\";s:18:\"Lacquer, system-ui\";s:4:\"slug\";s:7:\"lacquer\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7qAXhttQ5I.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Lacquer\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/lacquer/lacquer-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/lacquer/lacquer.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:683;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Laila\";s:10:\"fontFamily\";s:17:\"Laila, sans-serif\";s:4:\"slug\";s:5:\"laila\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLzxogNFh14nVcfe.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Laila\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/laila/laila-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/laila/v15/LYjMdG_8nE8jDIRYiidIrEIu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Laila\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/laila/laila-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLypowNFh14nVcfe.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Laila\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/laila/laila-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLyFpANFh14nVcfe.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Laila\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/laila/laila-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLzhpQNFh14nVcfe.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Laila\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/laila/laila-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/laila/laila.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:684;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lakki Reddy\";s:10:\"fontFamily\";s:22:\"\"Lakki Reddy\", cursive\";s:4:\"slug\";s:11:\"lakki-reddy\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/lakkireddy/v21/S6u5w49MUSzD9jlCPmvLZQftx9k97-xZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lakki Reddy\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lakki-reddy/lakki-reddy-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lakki-reddy/lakki-reddy.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:685;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Lalezar\";s:10:\"fontFamily\";s:18:\"Lalezar, system-ui\";s:4:\"slug\";s:7:\"lalezar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaXyIiL0RCg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Lalezar\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/lalezar/lalezar-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/lalezar/lalezar.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:686;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Lancelot\";s:10:\"fontFamily\";s:19:\"Lancelot, system-ui\";s:4:\"slug\";s:8:\"lancelot\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lancelot/v26/J7acnppxBGtQEulG4JY9xJ9CGyAa.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lancelot\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lancelot/lancelot-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/lancelot/lancelot.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:687;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Langar\";s:10:\"fontFamily\";s:17:\"Langar, system-ui\";s:4:\"slug\";s:6:\"langar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVqDVZ99sqrQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Langar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/langar/langar-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/langar/langar.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:688;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Lateef\";s:10:\"fontFamily\";s:13:\"Lateef, serif\";s:4:\"slug\";s:6:\"lateef\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lateef/v30/hESz6XVnNCxEvkb0bjyga6Tb9nQ-RA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lateef/v30/hESz6XVnNCxEvkb0Cj-ga6Tb9nQ-RA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/lateef/v30/hESw6XVnNCxEvkbMoxeEZo_H_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lateef/v30/hESz6XVnNCxEvkb0Uj6ga6Tb9nQ-RA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lateef/v30/hESz6XVnNCxEvkb0fjmga6Tb9nQ-RA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lateef/v30/hESz6XVnNCxEvkb0Gjiga6Tb9nQ-RA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lateef/v30/hESz6XVnNCxEvkb0Bjuga6Tb9nQ-RA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lateef\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef-800-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/lateef/lateef.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:689;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Lato\";s:10:\"fontFamily\";s:16:\"Lato, sans-serif\";s:4:\"slug\";s:4:\"lato\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wXiWrFCbw7A.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-qNiPg7MU0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USewqFGC_p9dw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PGQ3s5dwt7w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswXiWrFCbw7A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPGQ3s5dwt7w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-700-italic.svg\";}i:8;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XewqFGC_p9dw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPGQ3s5dwt7w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lato\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lato/lato-900-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/lato/lato.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:690;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Lavishly Yours\";s:10:\"fontFamily\";s:25:\"\"Lavishly Yours\", cursive\";s:4:\"slug\";s:14:\"lavishly-yours\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/lavishlyyours/v5/jizDREVIvGwH5OjiZmX9r5z_WxUd0TY7ikbI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Lavishly Yours\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/lavishly-yours/lavishly-yours-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/lavishly-yours/lavishly-yours.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:691;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"League Gothic\";s:10:\"fontFamily\";s:27:\"\"League Gothic\", sans-serif\";s:4:\"slug\";s:13:\"league-gothic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/leaguegothic/v11/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-ajidQ6Q9hn.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"League Gothic\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/league-gothic/league-gothic-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/league-gothic/league-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:692;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"League Script\";s:10:\"fontFamily\";s:24:\"\"League Script\", cursive\";s:4:\"slug\";s:13:\"league-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/leaguescript/v28/CSR54zpSlumSWj9CGVsoBZdeaNZUuOwkC2s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"League Script\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/league-script/league-script-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/league-script/league-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:693;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"League Spartan\";s:10:\"fontFamily\";s:28:\"\"League Spartan\", sans-serif\";s:4:\"slug\";s:14:\"league-spartan\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpAcdcFguczA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"League Spartan\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/league-spartan/league-spartan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:694;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Leckerli One\";s:10:\"fontFamily\";s:23:\"\"Leckerli One\", cursive\";s:4:\"slug\";s:12:\"leckerli-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/leckerlione/v20/V8mCoQH8VCsNttEnxnGQ-1itKJxcBtItFw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Leckerli One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/leckerli-one/leckerli-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/leckerli-one/leckerli-one.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:695;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ledger\";s:10:\"fontFamily\";s:13:\"Ledger, serif\";s:4:\"slug\";s:6:\"ledger\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxnsDwHTBhHw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ledger\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ledger/ledger-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ledger/ledger.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:696;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Lekton\";s:10:\"fontFamily\";s:18:\"Lekton, sans-serif\";s:4:\"slug\";s:6:\"lekton\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeWhfonUPL6Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lekton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lekton/lekton-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3pv0bb6StO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Lekton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lekton/lekton-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMkGjX4DJXgQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lekton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lekton/lekton-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/lekton/lekton.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:697;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Lemon\";s:10:\"fontFamily\";s:16:\"Lemon, system-ui\";s:4:\"slug\";s:5:\"lemon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/lemon/v17/HI_EiYEVKqRMq0jESZXAQ4-d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Lemon\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/lemon/lemon-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/lemon/lemon.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:698;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Lemonada\";s:10:\"fontFamily\";s:19:\"Lemonada, system-ui\";s:4:\"slug\";s:8:\"lemonada\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2nPWc3Z2pTg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lemonada\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lemonada/lemonada-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2nPWc3Z2pTg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lemonada\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lemonada/lemonada-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2nPWc3Z2pTg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lemonada\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lemonada/lemonada-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2nPWc3Z2pTg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lemonada\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lemonada/lemonada-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2nPWc3Z2pTg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lemonada\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lemonada/lemonada-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/lemonada/lemonada.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:699;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Lexend\";s:10:\"fontFamily\";s:18:\"Lexend, sans-serif\";s:4:\"slug\";s:6:\"lexend\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Lexend\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/lexend/lexend.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:700;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lexend Deca\";s:10:\"fontFamily\";s:25:\"\"Lexend Deca\", sans-serif\";s:4:\"slug\";s:11:\"lexend-deca\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxAqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1AqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1AqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1AqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1AqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspAqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pAqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpAqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpAqRPCqLNflg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Deca\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lexend-deca/lexend-deca.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:701;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Lexend Exa\";s:10:\"fontFamily\";s:24:\"\"Lexend Exa\", sans-serif\";s:4:\"slug\";s:10:\"lexend-exa\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabCHJ8BRq0b.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lexend Exa\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/lexend-exa/lexend-exa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:702;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lexend Giga\";s:10:\"fontFamily\";s:25:\"\"Lexend Giga\", sans-serif\";s:4:\"slug\";s:11:\"lexend-giga\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendgiga/v25/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Giga\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lexend-giga/lexend-giga.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:703;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lexend Mega\";s:10:\"fontFamily\";s:25:\"\"Lexend Mega\", sans-serif\";s:4:\"slug\";s:11:\"lexend-mega\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendmega/v25/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vuOyiq9EqQw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Mega\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lexend-mega/lexend-mega.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:704;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lexend Peta\";s:10:\"fontFamily\";s:25:\"\"Lexend Peta\", sans-serif\";s:4:\"slug\";s:11:\"lexend-peta\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyXlYuRTsnfw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Peta\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lexend-peta/lexend-peta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:705;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lexend Tera\";s:10:\"fontFamily\";s:25:\"\"Lexend Tera\", sans-serif\";s:4:\"slug\";s:11:\"lexend-tera\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTc5z0fYxcrQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lexend Tera\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lexend-tera/lexend-tera.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:706;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Lexend Zetta\";s:10:\"fontFamily\";s:26:\"\"Lexend Zetta\", sans-serif\";s:4:\"slug\";s:12:\"lexend-zetta\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0ztjbs8qbts.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Lexend Zetta\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/lexend-zetta/lexend-zetta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:707;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Libre Barcode 128\";s:10:\"fontFamily\";s:30:\"\"Libre Barcode 128\", system-ui\";s:4:\"slug\";s:17:\"libre-barcode-128\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/librebarcode128/v28/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_F_gMk0izH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Libre Barcode 128\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-128/libre-barcode-128-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-128/libre-barcode-128.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:708;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Libre Barcode 128 Text\";s:10:\"fontFamily\";s:35:\"\"Libre Barcode 128 Text\", system-ui\";s:4:\"slug\";s:22:\"libre-barcode-128-text\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/librebarcode128text/v28/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cVjY6M90w4k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Libre Barcode 128 Text\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-128-text/libre-barcode-128-text-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-128-text/libre-barcode-128-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:709;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Libre Barcode 39\";s:10:\"fontFamily\";s:29:\"\"Libre Barcode 39\", system-ui\";s:4:\"slug\";s:16:\"libre-barcode-39\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/librebarcode39/v21/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_J709jy92k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Libre Barcode 39\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39/libre-barcode-39-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39/libre-barcode-39.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:710;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Libre Barcode 39 Extended\";s:10:\"fontFamily\";s:38:\"\"Libre Barcode 39 Extended\", system-ui\";s:4:\"slug\";s:25:\"libre-barcode-39-extended\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/librebarcode39extended/v27/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNFCOZ1GOBw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Libre Barcode 39 Extended\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39-extended/libre-barcode-39-extended-400-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39-extended/libre-barcode-39-extended.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:711;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:30:\"Libre Barcode 39 Extended Text\";s:10:\"fontFamily\";s:43:\"\"Libre Barcode 39 Extended Text\", system-ui\";s:4:\"slug\";s:30:\"libre-barcode-39-extended-text\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:123:\"https://fonts.gstatic.com/s/librebarcode39extendedtext/v27/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68ebIiPopNNA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:30:\"Libre Barcode 39 Extended Text\";s:7:\"preview\";s:119:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39-extended-text/libre-barcode-39-extended-text-400-normal.svg\";}}s:7:\"preview\";s:108:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39-extended-text/libre-barcode-39-extended-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:712;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Libre Barcode 39 Text\";s:10:\"fontFamily\";s:34:\"\"Libre Barcode 39 Text\", system-ui\";s:4:\"slug\";s:21:\"libre-barcode-39-text\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/librebarcode39text/v28/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-030BRL-9rYaw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Libre Barcode 39 Text\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39-text/libre-barcode-39-text-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-39-text/libre-barcode-39-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:713;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Libre Barcode EAN13 Text\";s:10:\"fontFamily\";s:37:\"\"Libre Barcode EAN13 Text\", system-ui\";s:4:\"slug\";s:25:\"libre-barcode-ean-13-text\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/librebarcodeean13text/v21/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PBWEki52WfA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Libre Barcode EAN13 Text\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-ean13-text/libre-barcode-ean13-text-400-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/libre-barcode-ean13-text/libre-barcode-ean13-text.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:714;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Libre Baskerville\";s:10:\"fontFamily\";s:26:\"\"Libre Baskerville\", serif\";s:4:\"slug\";s:17:\"libre-baskerville\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Libre Baskerville\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-baskerville/libre-baskerville-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxMaDc2V2ro.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Libre Baskerville\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-baskerville/libre-baskerville-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Libre Baskerville\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-baskerville/libre-baskerville-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/libre-baskerville/libre-baskerville.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:715;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Libre Bodoni\";s:10:\"fontFamily\";s:21:\"\"Libre Bodoni\", serif\";s:4:\"slug\";s:12:\"libre-bodoni\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWnZcOb3U3s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWnZcOb3U3s.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWnZcOb3U3s.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWnZcOb3U3s.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TccTyQ3syLg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TccTyQ3syLg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTccTyQ3syLg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTccTyQ3syLg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Libre Bodoni\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/libre-bodoni/libre-bodoni.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:716;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Libre Caslon Display\";s:10:\"fontFamily\";s:29:\"\"Libre Caslon Display\", serif\";s:4:\"slug\";s:20:\"libre-caslon-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/librecaslondisplay/v16/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lUdRhtCC4d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Libre Caslon Display\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/libre-caslon-display/libre-caslon-display-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/libre-caslon-display/libre-caslon-display.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:717;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Libre Caslon Text\";s:10:\"fontFamily\";s:26:\"\"Libre Caslon Text\", serif\";s:4:\"slug\";s:17:\"libre-caslon-text\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq63eNrHgO1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Libre Caslon Text\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-caslon-text/libre-caslon-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-JJGxO1q9o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Libre Caslon Text\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-caslon-text/libre-caslon-text-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdmNR-8ssPt.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Libre Caslon Text\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/libre-caslon-text/libre-caslon-text-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/libre-caslon-text/libre-caslon-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:718;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Libre Franklin\";s:10:\"fontFamily\";s:28:\"\"Libre Franklin\", sans-serif\";s:4:\"slug\";s:14:\"libre-franklin\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/librefranklin/v14/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUAtrIb-JH1g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/librefranklin/v14/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DJTedX1sGE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Libre Franklin\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/libre-franklin/libre-franklin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:719;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Licorice\";s:10:\"fontFamily\";s:17:\"Licorice, cursive\";s:4:\"slug\";s:8:\"licorice\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/licorice/v6/t5tjIR8TMomTCAyjNk2yhqLgzCHu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Licorice\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/licorice/licorice-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/licorice/licorice.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:720;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Life Savers\";s:10:\"fontFamily\";s:24:\"\"Life Savers\", system-ui\";s:4:\"slug\";s:11:\"life-savers\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/lifesavers/v20/ZXuie1UftKKabUQMgxAal_luFgpbuNvB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Life Savers\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/life-savers/life-savers-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/lifesavers/v20/ZXu_e1UftKKabUQMgxAal8HXOS5Wk8fIpPRW.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Life Savers\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/life-savers/life-savers-700-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/lifesavers/v20/ZXu_e1UftKKabUQMgxAal8HLOi5Wk8fIpPRW.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Life Savers\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/life-savers/life-savers-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/life-savers/life-savers.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:721;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Lilita One\";s:10:\"fontFamily\";s:23:\"\"Lilita One\", system-ui\";s:4:\"slug\";s:10:\"lilita-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/lilitaone/v15/i7dPIFZ9Zz-WBtRtedDbUEN2RFq7AwU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lilita One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lilita-one/lilita-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/lilita-one/lilita-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:722;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Lily Script One\";s:10:\"fontFamily\";s:28:\"\"Lily Script One\", system-ui\";s:4:\"slug\";s:15:\"lily-script-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4h8SjQNsRMg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Lily Script One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/lily-script-one/lily-script-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/lily-script-one/lily-script-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:723;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Limelight\";s:10:\"fontFamily\";s:20:\"Limelight, system-ui\";s:4:\"slug\";s:9:\"limelight\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/limelight/v19/XLYkIZL7aopJVbZJHDuYOONGrnY2TA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Limelight\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/limelight/limelight-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/limelight/limelight.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:724;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Linden Hill\";s:10:\"fontFamily\";s:20:\"\"Linden Hill\", serif\";s:4:\"slug\";s:11:\"linden-hill\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/lindenhill/v24/-F61fjxoKSg9Yc3hZgO8ygFN7CwC009k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Linden Hill\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/linden-hill/linden-hill-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/lindenhill/v24/-F63fjxoKSg9Yc3hZgO8yjFK5i0g1l9kn-s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Linden Hill\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/linden-hill/linden-hill-400-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/linden-hill/linden-hill.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:725;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Linefont\";s:10:\"fontFamily\";s:19:\"Linefont, system-ui\";s:4:\"slug\";s:8:\"linefont\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnY4UNbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnYwUMbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnY9sMbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnY4UMbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnY7cMbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnY1sLbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnY2ILbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnYwULbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/linefont/v5/dg4I_pzpoqcLKUIzVfFMh1TF2rkhli25jn7CKTTWSumsFuSnYywLbuvtmdXux3U.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Linefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/linefont/linefont.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:726;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Lisu Bosa\";s:10:\"fontFamily\";s:18:\"\"Lisu Bosa\", serif\";s:4:\"slug\";s:9:\"lisu-bosa\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXX2DGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXkuRNzZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXO2PGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXlKR9zZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFoErkv240fsdmJRJQvkkviTf3E3Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFuErkv240fsdmJRJQflUHjb_jU3eRL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXY2LGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXkSRtzZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXT2XGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXk-QdzZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXK2TGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXlaQNzZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXN2fGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-800-normal.svg\";}i:13;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXlGQ9zZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-800-italic.svg\";}i:14;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXE2bGQNbY1P1Sbg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-900-normal.svg\";}i:15;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXliQtzZ9vhCblye.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Lisu Bosa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/lisu-bosa/lisu-bosa.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:727;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Literata\";s:10:\"fontFamily\";s:15:\"Literata, serif\";s:4:\"slug\";s:8:\"literata\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_PcTWCWp8g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWTEKTt8iVow.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Literata\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/literata/literata-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/literata/literata.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:728;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Liu Jian Mao Cao\";s:10:\"fontFamily\";s:27:\"\"Liu Jian Mao Cao\", cursive\";s:4:\"slug\";s:16:\"liu-jian-mao-cao\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/liujianmaocao/v20/845DNN84HJrccNonurqXILGpvCOofe_VKGWsUo8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Liu Jian Mao Cao\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/liu-jian-mao-cao/liu-jian-mao-cao-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/liu-jian-mao-cao/liu-jian-mao-cao.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:729;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Livvic\";s:10:\"fontFamily\";s:18:\"Livvic, sans-serif\";s:4:\"slug\";s:6:\"livvic\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M7mHnOSOuk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtaknjsTfukQHs.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8Iet1fCQfK9WQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8Eet1fCQfK9WQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnauk6unzeSA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM7mHnOSOuk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8Aet1fCQfK9WQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8cet1fCQfK9WQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08Yet1fCQfK9WQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68Qet1fCQfK9WQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-900-normal.svg\";}i:15;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Livvic\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/livvic/livvic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:730;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Lobster\";s:10:\"fontFamily\";s:18:\"Lobster, system-ui\";s:4:\"slug\";s:7:\"lobster\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9_oCsMqEzSJQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Lobster\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/lobster/lobster-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/lobster/lobster.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:731;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Lobster Two\";s:10:\"fontFamily\";s:24:\"\"Lobster Two\", system-ui\";s:4:\"slug\";s:11:\"lobster-two\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/lobstertwo/v20/BngMUXZGTXPUvIoyV6yN59fP7KSJ4ACD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lobster Two\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lobster-two/lobster-two-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/lobstertwo/v20/BngOUXZGTXPUvIoyV6yN5-fI5qWr5RCDY_k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Lobster Two\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lobster-two/lobster-two-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/lobstertwo/v20/BngRUXZGTXPUvIoyV6yN5-92w4CEyxyKeuDp.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Lobster Two\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lobster-two/lobster-two-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/lobstertwo/v20/BngTUXZGTXPUvIoyV6yN5-fI3hyEwR2of_DpXMY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Lobster Two\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/lobster-two/lobster-two-700-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/lobster-two/lobster-two.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:732;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Londrina Outline\";s:10:\"fontFamily\";s:29:\"\"Londrina Outline\", system-ui\";s:4:\"slug\";s:16:\"londrina-outline\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/londrinaoutline/v27/C8c44dM8vmb14dfsZxhetg3pDH-Sfu8xrSKMDvI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Londrina Outline\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/londrina-outline/londrina-outline-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/londrina-outline/londrina-outline.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:733;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Londrina Shadow\";s:10:\"fontFamily\";s:28:\"\"Londrina Shadow\", system-ui\";s:4:\"slug\";s:15:\"londrina-shadow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/londrinashadow/v26/oPWX_kB4kOQoWNJmjxLV5JuoCUlXQ1aSxkrMCQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Londrina Shadow\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/londrina-shadow/londrina-shadow-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/londrina-shadow/londrina-shadow.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:734;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Londrina Sketch\";s:10:\"fontFamily\";s:28:\"\"Londrina Sketch\", system-ui\";s:4:\"slug\";s:15:\"londrina-sketch\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/londrinasketch/v25/c4m41npxGMTnomOHtRU68eIJn8qfXGn5Pos6CA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Londrina Sketch\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/londrina-sketch/londrina-sketch-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/londrina-sketch/londrina-sketch.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:735;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Londrina Solid\";s:10:\"fontFamily\";s:27:\"\"Londrina Solid\", system-ui\";s:4:\"slug\";s:14:\"londrina-solid\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/londrinasolid/v17/flUjRq6sw40kQEJxWNgkLuudGfs9KBMesZHhV64.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Londrina Solid\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/londrina-solid/londrina-solid-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/londrinasolid/v17/flUiRq6sw40kQEJxWNgkLuudGfv1CjYxn53oTrcL.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Londrina Solid\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/londrina-solid/londrina-solid-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/londrinasolid/v17/flUhRq6sw40kQEJxWNgkLuudGcNcIhI8tIHh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Londrina Solid\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/londrina-solid/londrina-solid-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/londrinasolid/v17/flUiRq6sw40kQEJxWNgkLuudGfvdDzYxn53oTrcL.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Londrina Solid\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/londrina-solid/londrina-solid-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/londrina-solid/londrina-solid.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:736;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Long Cang\";s:10:\"fontFamily\";s:20:\"\"Long Cang\", cursive\";s:4:\"slug\";s:9:\"long-cang\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgqHArXN7HWQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Long Cang\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/long-cang/long-cang-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/long-cang/long-cang.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:737;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Lora\";s:10:\"fontFamily\";s:11:\"Lora, serif\";s:4:\"slug\";s:4:\"lora\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJDmKxemMeZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJDmKxemMeZ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJDmKxemMeZ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJDmKxemMeZ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkq18ndeZzZ0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkq18ndeZzZ0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkq18ndeZzZ0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckq18ndeZzZ0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Lora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/lora/lora-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/lora/lora.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:738;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Love Light\";s:10:\"fontFamily\";s:21:\"\"Love Light\", cursive\";s:4:\"slug\";s:10:\"love-light\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/lovelight/v6/t5tlIR0TNJyZWimpNAXDjKPCyTHuspo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Love Light\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/love-light/love-light-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/love-light/love-light.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:739;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Love Ya Like A Sister\";s:10:\"fontFamily\";s:34:\"\"Love Ya Like A Sister\", system-ui\";s:4:\"slug\";s:21:\"love-ya-like-a-sister\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/loveyalikeasister/v20/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Love Ya Like A Sister\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/love-ya-like-a-sister/love-ya-like-a-sister-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/love-ya-like-a-sister/love-ya-like-a-sister.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:740;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Loved by the King\";s:10:\"fontFamily\";s:28:\"\"Loved by the King\", cursive\";s:4:\"slug\";s:17:\"loved-by-the-king\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/lovedbytheking/v21/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiIlXFu2R64.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Loved by the King\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/loved-by-the-king/loved-by-the-king-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/loved-by-the-king/loved-by-the-king.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:741;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Lovers Quarrel\";s:10:\"fontFamily\";s:25:\"\"Lovers Quarrel\", cursive\";s:4:\"slug\";s:14:\"lovers-quarrel\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/loversquarrel/v23/Yq6N-LSKXTL-5bCy8ksBzpQ_-zApY7pO6siz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Lovers Quarrel\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/lovers-quarrel/lovers-quarrel-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/lovers-quarrel/lovers-quarrel.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:742;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Luckiest Guy\";s:10:\"fontFamily\";s:25:\"\"Luckiest Guy\", system-ui\";s:4:\"slug\";s:12:\"luckiest-guy\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/luckiestguy/v22/_gP_1RrxsjcxVyin9l9n_j2RT9R3qDpraA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Luckiest Guy\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/luckiest-guy/luckiest-guy-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/luckiest-guy/luckiest-guy.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:743;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Lugrasimo\";s:10:\"fontFamily\";s:18:\"Lugrasimo, cursive\";s:4:\"slug\";s:9:\"lugrasimo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/lugrasimo/v4/qkBXXvoF_s_eT9c7Y7ae4ZRLkAXbMQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Lugrasimo\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/lugrasimo/lugrasimo-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/lugrasimo/lugrasimo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:744;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Lumanosimo\";s:10:\"fontFamily\";s:19:\"Lumanosimo, cursive\";s:4:\"slug\";s:10:\"lumanosimo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/lumanosimo/v4/K2F0fZBYg_JDSEZHEfO8Ao-KAyLzfWo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Lumanosimo\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/lumanosimo/lumanosimo-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/lumanosimo/lumanosimo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:745;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Lunasima\";s:10:\"fontFamily\";s:20:\"Lunasima, sans-serif\";s:4:\"slug\";s:8:\"lunasima\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/lunasima/v1/wEO-EBvPh9RSOj7JFAwge94H1VIe.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lunasima\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lunasima/lunasima-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/lunasima/v1/wEO5EBvPh9RSOj7JFDSZVPoK_k4XiKvO.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lunasima\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lunasima/lunasima-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/lunasima/lunasima.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:746;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Lusitana\";s:10:\"fontFamily\";s:15:\"Lusitana, serif\";s:4:\"slug\";s:8:\"lusitana\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhfRuMiSct_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lusitana\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lusitana/lusitana-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccvYtd2vfwk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Lusitana\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/lusitana/lusitana-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/lusitana/lusitana.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:747;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Lustria\";s:10:\"fontFamily\";s:14:\"Lustria, serif\";s:4:\"slug\";s:7:\"lustria\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrC05MtPyAcg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Lustria\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/lustria/lustria-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/lustria/lustria.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:748;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Luxurious Roman\";s:10:\"fontFamily\";s:28:\"\"Luxurious Roman\", system-ui\";s:4:\"slug\";s:15:\"luxurious-roman\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/luxuriousroman/v8/buEupou_ZcP1w0yTKxJJokVSmbpqZwckeo9RMw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Luxurious Roman\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/luxurious-roman/luxurious-roman-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/luxurious-roman/luxurious-roman.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:749;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Luxurious Script\";s:10:\"fontFamily\";s:27:\"\"Luxurious Script\", cursive\";s:4:\"slug\";s:16:\"luxurious-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/luxuriousscript/v7/ahcCv9e7yydulT32KZ0rBIoD7DzMg0_Oby1JtYk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Luxurious Script\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/luxurious-script/luxurious-script-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/luxurious-script/luxurious-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:750;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"M PLUS 1\";s:10:\"fontFamily\";s:22:\"\"M PLUS 1\", sans-serif\";s:4:\"slug\";s:8:\"m-plus-1\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus1/v7/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG793ZcsGGycA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 1\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1/m-plus-1.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:751;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"M PLUS 1 Code\";s:10:\"fontFamily\";s:26:\"\"M PLUS 1 Code\", monospace\";s:4:\"slug\";s:13:\"m-plus-1-code\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HsapwmdZhY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"M PLUS 1 Code\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1-code/m-plus-1-code.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:752;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"M PLUS 1p\";s:10:\"fontFamily\";s:23:\"\"M PLUS 1p\", sans-serif\";s:4:\"slug\";s:10:\"m-plus-1-p\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQFUW3aq-5N.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYgfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro_T4Ec2jKqw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcgfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEgfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIgfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMgfkPWovdU4w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"M PLUS 1p\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/m-plus-1p/m-plus-1p.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:753;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"M PLUS 2\";s:10:\"fontFamily\";s:22:\"\"M PLUS 2\", sans-serif\";s:4:\"slug\";s:8:\"m-plus-2\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-Vw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6Vw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66Vw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6Vw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66Vw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mplus2/v7/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVw1qHrzNgAw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"M PLUS 2\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/m-plus-2/m-plus-2.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:754;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"M PLUS Code Latin\";s:10:\"fontFamily\";s:31:\"\"M PLUS Code Latin\", sans-serif\";s:4:\"slug\";s:17:\"m-plus-code-latin\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6itMqF9TRwg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Code Latin\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/m-plus-code-latin/m-plus-code-latin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:755;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"M PLUS Rounded 1c\";s:10:\"fontFamily\";s:31:\"\"M PLUS Rounded 1c\", sans-serif\";s:4:\"slug\";s:18:\"m-plus-rounded-1-c\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixL4g6-av1x0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psPxeqmzgRK.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWDzr8C7vav.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sPxeqmzgRK.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsPxeqmzgRK.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psPxeqmzgRK.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sPxeqmzgRK.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"M PLUS Rounded 1c\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/m-plus-rounded-1c/m-plus-rounded-1c.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:756;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Ma Shan Zheng\";s:10:\"fontFamily\";s:24:\"\"Ma Shan Zheng\", cursive\";s:4:\"slug\";s:13:\"ma-shan-zheng\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMHsDIRSfr0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Ma Shan Zheng\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ma-shan-zheng/ma-shan-zheng-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/ma-shan-zheng/ma-shan-zheng.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:757;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Macondo\";s:10:\"fontFamily\";s:18:\"Macondo, system-ui\";s:4:\"slug\";s:7:\"macondo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/macondo/v25/RrQQboN9-iB1IXmOS2DO0LBBd4Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Macondo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/macondo/macondo-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/macondo/macondo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:758;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Macondo Swash Caps\";s:10:\"fontFamily\";s:31:\"\"Macondo Swash Caps\", system-ui\";s:4:\"slug\";s:18:\"macondo-swash-caps\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/macondoswashcaps/v24/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Of0oa_mm5bA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Macondo Swash Caps\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/macondo-swash-caps/macondo-swash-caps-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/macondo-swash-caps/macondo-swash-caps.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:759;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Mada\";s:10:\"fontFamily\";s:16:\"Mada, sans-serif\";s:4:\"slug\";s:4:\"mada\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOkHk12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFmQkHk12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkHk12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFn8kHk12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkQl3k12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkpl3k12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOl3k12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlnl3k12-m9x2iC.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mada\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mada/mada-900-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/mada/mada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:760;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Magra\";s:10:\"fontFamily\";s:17:\"Magra, sans-serif\";s:4:\"slug\";s:5:\"magra\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k50IDMfO-ed.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Magra\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/magra/magra-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcSEPuUX1ow.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Magra\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/magra/magra-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/magra/magra.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:761;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Maiden Orange\";s:10:\"fontFamily\";s:22:\"\"Maiden Orange\", serif\";s:4:\"slug\";s:13:\"maiden-orange\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/maidenorange/v29/kJE1BuIX7AUmhi2V4m08kb1XjONdCZS8FY8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Maiden Orange\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/maiden-orange/maiden-orange-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/maiden-orange/maiden-orange.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:762;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Maitree\";s:10:\"fontFamily\";s:14:\"Maitree, serif\";s:4:\"slug\";s:7:\"maitree\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJSovLdh6OE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Maitree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJSovLdh6OE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Maitree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtymfJmDoL4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Maitree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJSovLdh6OE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Maitree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJSovLdh6OE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Maitree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJSovLdh6OE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Maitree\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/maitree/maitree.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:763;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Major Mono Display\";s:10:\"fontFamily\";s:31:\"\"Major Mono Display\", monospace\";s:4:\"slug\";s:18:\"major-mono-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/majormonodisplay/v16/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLD32QIndPww.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Major Mono Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/major-mono-display/major-mono-display-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/major-mono-display/major-mono-display.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:764;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Mako\";s:10:\"fontFamily\";s:16:\"Mako, sans-serif\";s:4:\"slug\";s:4:\"mako\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/mako/v19/H4coBX6Mmc_Z0SH09g478Lo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mako\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mako/mako-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/mako/mako.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:765;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Mali\";s:10:\"fontFamily\";s:13:\"Mali, cursive\";s:4:\"slug\";s:4:\"mali\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlFaJdbWgdY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQJPTTkdbJYA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlFaJdbWgdY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQJPTTkdbJYA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eC_ODlxxOd8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjED350Kd_PmA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlFaJdbWgdY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQJPTTkdbJYA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlFaJdbWgdY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQJPTTkdbJYA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlFaJdbWgdY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQJPTTkdbJYA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mali\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mali/mali-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/mali/mali.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:766;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Mallanna\";s:10:\"fontFamily\";s:20:\"Mallanna, sans-serif\";s:4:\"slug\";s:8:\"mallanna\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGw2EzRwVvJ-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Mallanna\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/mallanna/mallanna-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/mallanna/mallanna.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:767;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Mandali\";s:10:\"fontFamily\";s:19:\"Mandali, sans-serif\";s:4:\"slug\";s:7:\"mandali\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFw1ZPdcKtA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Mandali\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/mandali/mandali-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/mandali/mandali.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:768;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Manjari\";s:10:\"fontFamily\";s:19:\"Manjari, sans-serif\";s:4:\"slug\";s:7:\"manjari\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/manjari/v11/k3kSo8UPMOBO2w1UdbroLmvFIaOV8A.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manjari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manjari/manjari-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/manjari/v11/k3kQo8UPMOBO2w1UTdviL0nAMaM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manjari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manjari/manjari-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/manjari/v11/k3kVo8UPMOBO2w1UdWLNC0TrLaqM6Q4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manjari\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manjari/manjari-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/manjari/manjari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:769;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Manrope\";s:10:\"fontFamily\";s:19:\"Manrope, sans-serif\";s:4:\"slug\";s:7:\"manrope\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manrope\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/manrope/manrope.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:770;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Mansalva\";s:10:\"fontFamily\";s:17:\"Mansalva, cursive\";s:4:\"slug\";s:8:\"mansalva\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/mansalva/v14/aWB4m0aacbtDfvq5NJlgI47vdyBg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Mansalva\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/mansalva/mansalva-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/mansalva/mansalva.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:771;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Manuale\";s:10:\"fontFamily\";s:14:\"Manuale, serif\";s:4:\"slug\";s:7:\"manuale\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wG1TB_JHHY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wG1TB_JHHY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wG1TB_JHHY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwG1TB_JHHY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwG1TB_JHHY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwG1TB_JHHY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zFdIWHYr8M.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-300-italic.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zFdIWHYr8M.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zFdIWHYr8M.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-500-italic.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zFdIWHYr8M.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zFdIWHYr8M.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-700-italic.svg\";}i:11;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zFdIWHYr8M.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Manuale\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale-800-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/manuale/manuale.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:772;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Marcellus\";s:10:\"fontFamily\";s:16:\"Marcellus, serif\";s:4:\"slug\";s:9:\"marcellus\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FVPAL3EsHiA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Marcellus\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/marcellus/marcellus-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/marcellus/marcellus.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:773;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Marcellus SC\";s:10:\"fontFamily\";s:21:\"\"Marcellus SC\", serif\";s:4:\"slug\";s:12:\"marcellus-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPhNydGKikhA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Marcellus SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/marcellus-sc/marcellus-sc-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/marcellus-sc/marcellus-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:774;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Marck Script\";s:10:\"fontFamily\";s:23:\"\"Marck Script\", cursive\";s:4:\"slug\";s:12:\"marck-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/marckscript/v20/nwpTtK2oNgBA3Or78gapdwuCyiI-aMPF7Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Marck Script\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/marck-script/marck-script-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/marck-script/marck-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:775;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Margarine\";s:10:\"fontFamily\";s:20:\"Margarine, system-ui\";s:4:\"slug\";s:9:\"margarine\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/margarine/v25/qkBXXvoE6trLT9Y7YLye4ZRLkAXbMQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Margarine\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/margarine/margarine-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/margarine/margarine.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:776;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Marhey\";s:10:\"fontFamily\";s:17:\"Marhey, system-ui\";s:4:\"slug\";s:6:\"marhey\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2IXiGevOMw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marhey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marhey/marhey-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2IXiGevOMw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marhey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marhey/marhey-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2IXiGevOMw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marhey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marhey/marhey-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2IXiGevOMw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marhey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marhey/marhey-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2IXiGevOMw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marhey\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marhey/marhey-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/marhey/marhey.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:777;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Markazi Text\";s:10:\"fontFamily\";s:21:\"\"Markazi Text\", serif\";s:4:\"slug\";s:12:\"markazi-text\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/markazitext/v23/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4YlBekmJLo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Markazi Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/markazi-text/markazi-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/markazitext/v23/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4YlBekmJLo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Markazi Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/markazi-text/markazi-text-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/markazitext/v23/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4YlBekmJLo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Markazi Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/markazi-text/markazi-text-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/markazitext/v23/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4YlBekmJLo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Markazi Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/markazi-text/markazi-text-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/markazi-text/markazi-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:778;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Marko One\";s:10:\"fontFamily\";s:18:\"\"Marko One\", serif\";s:4:\"slug\";s:9:\"marko-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaL5UfrHPzUw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Marko One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/marko-one/marko-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/marko-one/marko-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:779;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Marmelad\";s:10:\"fontFamily\";s:20:\"Marmelad, sans-serif\";s:4:\"slug\";s:8:\"marmelad\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFOG-YMC0R8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Marmelad\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/marmelad/marmelad-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/marmelad/marmelad.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:780;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Martel\";s:10:\"fontFamily\";s:13:\"Martel, serif\";s:4:\"slug\";s:6:\"martel\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekagBbX9vnDzw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoagBbX9vnDzw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtZMI-jT3L_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewagBbX9vnDzw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0agBbX9vnDzw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4agBbX9vnDzw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8agBbX9vnDzw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Martel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/martel/martel-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/martel/martel.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:781;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Martel Sans\";s:10:\"fontFamily\";s:25:\"\"Martel Sans\", sans-serif\";s:4:\"slug\";s:11:\"martel-sans\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suCFUknqMxQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuCFUknqMxQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijaze-PPlUu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uCFUknqMxQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suCFUknqMxQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuCFUknqMxQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuCFUknqMxQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Martel Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/martel-sans/martel-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:782;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Martian Mono\";s:10:\"fontFamily\";s:25:\"\"Martian Mono\", monospace\";s:4:\"slug\";s:12:\"martian-mono\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6TD75kdpF2.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Martian Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/martian-mono/martian-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:783;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Marvel\";s:10:\"fontFamily\";s:18:\"Marvel, sans-serif\";s:4:\"slug\";s:6:\"marvel\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/marvel/v16/nwpVtKeoNgBV0qaIlF7ED366zg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marvel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marvel/marvel-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/marvel/v16/nwpXtKeoNgBV0qa4k1TFLXuqzhA7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Marvel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marvel/marvel-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/marvel/v16/nwpWtKeoNgBV0qawLXHgAlWmxwkiYQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Marvel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marvel/marvel-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/marvel/v16/nwpQtKeoNgBV0qa4k2x8Al-n5QwyYdrc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Marvel\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/marvel/marvel-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/marvel/marvel.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:784;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Mate\";s:10:\"fontFamily\";s:11:\"Mate, serif\";s:4:\"slug\";s:4:\"mate\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/mate/v17/m8JdjftRd7WZ2zi8WoXSaLU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mate\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mate/mate-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/mate/v17/m8JTjftRd7WZ6z-2W6fXeLVdbw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Mate\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mate/mate-400-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/mate/mate.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:785;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Mate SC\";s:10:\"fontFamily\";s:16:\"\"Mate SC\", serif\";s:4:\"slug\";s:7:\"mate-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiDZ95OkJwA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Mate SC\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/mate-sc/mate-sc-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/mate-sc/mate-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:786;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Material Icons\";s:10:\"fontFamily\";s:27:\"\"Material Icons\", monospace\";s:4:\"slug\";s:14:\"material-icons\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhI8tIHh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Material Icons\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/material-icons/material-icons-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/material-icons/material-icons.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:787;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Material Icons Outlined\";s:10:\"fontFamily\";s:36:\"\"Material Icons Outlined\", monospace\";s:4:\"slug\";s:23:\"material-icons-outlined\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcel5GuI2Ze.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Material Icons Outlined\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/material-icons-outlined/material-icons-outlined-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/material-icons-outlined/material-icons-outlined.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:788;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Material Icons Round\";s:10:\"fontFamily\";s:33:\"\"Material Icons Round\", monospace\";s:4:\"slug\";s:20:\"material-icons-round\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmPq_fTTvg-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Material Icons Round\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/material-icons-round/material-icons-round-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/material-icons-round/material-icons-round.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:789;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Material Icons Sharp\";s:10:\"fontFamily\";s:33:\"\"Material Icons Sharp\", monospace\";s:4:\"slug\";s:20:\"material-icons-sharp\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvRImEyc0vd.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Material Icons Sharp\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/material-icons-sharp/material-icons-sharp-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/material-icons-sharp/material-icons-sharp.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:790;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Material Icons Two Tone\";s:10:\"fontFamily\";s:36:\"\"Material Icons Two Tone\", monospace\";s:4:\"slug\";s:23:\"material-icons-two-tone\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu0NjDrH_77.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Material Icons Two Tone\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/material-icons-two-tone/material-icons-two-tone-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/material-icons-two-tone/material-icons-two-tone.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:791;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Material Symbols Outlined\";s:10:\"fontFamily\";s:38:\"\"Material Symbols Outlined\", monospace\";s:4:\"slug\";s:25:\"material-symbols-outlined\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-ejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:183:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v156/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-ejbd5zrTgt.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Material Symbols Outlined\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined-700-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-outlined/material-symbols-outlined.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:792;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Material Symbols Rounded\";s:10:\"fontFamily\";s:37:\"\"Material Symbols Rounded\", monospace\";s:4:\"slug\";s:24:\"material-symbols-rounded\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:181:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v156/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxeJKJBjAa8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Material Symbols Rounded\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded-700-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-rounded/material-symbols-rounded.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:793;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Material Symbols Sharp\";s:10:\"fontFamily\";s:35:\"\"Material Symbols Sharp\", monospace\";s:4:\"slug\";s:22:\"material-symbols-sharp\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:176:\"https://fonts.gstatic.com/s/materialsymbolssharp/v153/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCLJ1H7-knk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Material Symbols Sharp\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/material-symbols-sharp/material-symbols-sharp.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:794;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Maven Pro\";s:10:\"fontFamily\";s:23:\"\"Maven Pro\", sans-serif\";s:4:\"slug\";s:9:\"maven-pro\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/mavenpro/v33/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nWpozp5GvU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Maven Pro\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/mavenpro/v33/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nWpozp5GvU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Maven Pro\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/mavenpro/v33/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nWpozp5GvU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Maven Pro\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/mavenpro/v33/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nWpozp5GvU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Maven Pro\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/mavenpro/v33/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nWpozp5GvU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Maven Pro\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/mavenpro/v33/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nWpozp5GvU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Maven Pro\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/maven-pro/maven-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:795;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"McLaren\";s:10:\"fontFamily\";s:18:\"McLaren, system-ui\";s:4:\"slug\";s:7:\"mclaren\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/mclaren/v17/2EbnL-ZuAXFqZFXISYMf8z2Yt_c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"McLaren\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/mclaren/mclaren-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/mclaren/mclaren.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:796;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Mea Culpa\";s:10:\"fontFamily\";s:20:\"\"Mea Culpa\", cursive\";s:4:\"slug\";s:9:\"mea-culpa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/meaculpa/v6/AMOTz4GcuWbEIuza8jsZn80QW3mqyg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Mea Culpa\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/mea-culpa/mea-culpa-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/mea-culpa/mea-culpa.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:797;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Meddon\";s:10:\"fontFamily\";s:15:\"Meddon, cursive\";s:4:\"slug\";s:6:\"meddon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/meddon/v24/kmK8ZqA2EgDNeHTZgRdB3y_Aow.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Meddon\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/meddon/meddon-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/meddon/meddon.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:798;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"MedievalSharp\";s:10:\"fontFamily\";s:24:\"MedievalSharp, system-ui\";s:4:\"slug\";s:13:\"medievalsharp\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/medievalsharp/v26/EvOJzAlL3oU5AQl2mP5KdgptAqp6MwvXLDk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"MedievalSharp\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/medievalsharp/medievalsharp-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/medievalsharp/medievalsharp.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:799;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Medula One\";s:10:\"fontFamily\";s:23:\"\"Medula One\", system-ui\";s:4:\"slug\";s:10:\"medula-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiQqs7GtlvY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Medula One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/medula-one/medula-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/medula-one/medula-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:800;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Meera Inimai\";s:10:\"fontFamily\";s:26:\"\"Meera Inimai\", sans-serif\";s:4:\"slug\";s:12:\"meera-inimai\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep-mjDVevnLQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Meera Inimai\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/meera-inimai/meera-inimai-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/meera-inimai/meera-inimai.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:801;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Megrim\";s:10:\"fontFamily\";s:17:\"Megrim, system-ui\";s:4:\"slug\";s:6:\"megrim\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlaGXgd0RY1g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Megrim\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/megrim/megrim-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/megrim/megrim.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:802;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Meie Script\";s:10:\"fontFamily\";s:22:\"\"Meie Script\", cursive\";s:4:\"slug\";s:11:\"meie-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxi5IXg0WDz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Meie Script\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/meie-script/meie-script-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/meie-script/meie-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:803;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Meow Script\";s:10:\"fontFamily\";s:22:\"\"Meow Script\", cursive\";s:4:\"slug\";s:11:\"meow-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESck0_0CfDf1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Meow Script\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/meow-script/meow-script-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/meow-script/meow-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:804;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Merienda\";s:10:\"fontFamily\";s:17:\"Merienda, cursive\";s:4:\"slug\";s:8:\"merienda\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oTE78QGBV0A.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Merienda\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/merienda/merienda.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:805;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Merriweather\";s:10:\"fontFamily\";s:19:\"Merriweather, serif\";s:4:\"slug\";s:12:\"merriweather\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpWs37pvjxPA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf6hP3hPGWH.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OfixNV-bnrw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZMdeP3r-Ho.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpWs37pvjxPA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf6hP3hPGWH.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-700-italic.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpWs37pvjxPA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-900-normal.svg\";}i:7;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf6hP3hPGWH.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Merriweather\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather-900-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/merriweather/merriweather.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:806;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Merriweather Sans\";s:10:\"fontFamily\";s:31:\"\"Merriweather Sans\", sans-serif\";s:4:\"slug\";s:17:\"merriweather-sans\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4li-EG7xFHnQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4li-EG7xFHnQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4li-EG7xFHnQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkli-EG7xFHnQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekli-EG7xFHnQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukli-EG7xFHnQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesHzRRXnaur.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-300-italic.svg\";}i:7;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesHzRRXnaur.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesHzRRXnaur.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-500-italic.svg\";}i:9;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusHzRRXnaur.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusHzRRXnaur.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-700-italic.svg\";}i:11;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusHzRRXnaur.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Merriweather Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans-800-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/merriweather-sans/merriweather-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:807;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Metal\";s:10:\"fontFamily\";s:16:\"Metal, system-ui\";s:4:\"slug\";s:5:\"metal\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/metal/v30/lW-wwjUJIXTo7i3inoQAUdN2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Metal\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/metal/metal-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/metal/metal.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:808;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Metal Mania\";s:10:\"fontFamily\";s:24:\"\"Metal Mania\", system-ui\";s:4:\"slug\";s:11:\"metal-mania\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXHg6UKDXlq.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Metal Mania\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/metal-mania/metal-mania-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/metal-mania/metal-mania.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:809;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Metamorphous\";s:10:\"fontFamily\";s:23:\"Metamorphous, system-ui\";s:4:\"slug\";s:12:\"metamorphous\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/metamorphous/v20/Wnz8HA03aAXcC39ZEX5y1330OSCthTsmaQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Metamorphous\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/metamorphous/metamorphous-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/metamorphous/metamorphous.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:810;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Metrophobic\";s:10:\"fontFamily\";s:23:\"Metrophobic, sans-serif\";s:4:\"slug\";s:11:\"metrophobic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-M737FPEEL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Metrophobic\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/metrophobic/metrophobic-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/metrophobic/metrophobic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:811;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Michroma\";s:10:\"fontFamily\";s:20:\"Michroma, sans-serif\";s:4:\"slug\";s:8:\"michroma\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/michroma/v19/PN_zRfy9qWD8fEagAMg_rzjb_-Da.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Michroma\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/michroma/michroma-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/michroma/michroma.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:812;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Milonga\";s:10:\"fontFamily\";s:18:\"Milonga, system-ui\";s:4:\"slug\";s:7:\"milonga\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/milonga/v22/SZc53FHnIaK9W5kffzjGkUrS8DI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Milonga\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/milonga/milonga-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/milonga/milonga.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:813;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Miltonian\";s:10:\"fontFamily\";s:20:\"Miltonian, system-ui\";s:4:\"slug\";s:9:\"miltonian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/miltonian/v30/zOL-4pbPn6Ne9JqTg9mr7O5As-FeiQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Miltonian\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/miltonian/miltonian-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/miltonian/miltonian.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:814;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Miltonian Tattoo\";s:10:\"fontFamily\";s:29:\"\"Miltonian Tattoo\", system-ui\";s:4:\"slug\";s:16:\"miltonian-tattoo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/miltoniantattoo/v32/EvOUzBRL0o0kCxF-lcMCQxlpVsA_Fwb8MDBku-s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Miltonian Tattoo\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/miltonian-tattoo/miltonian-tattoo-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/miltonian-tattoo/miltonian-tattoo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:815;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Mina\";s:10:\"fontFamily\";s:16:\"Mina, sans-serif\";s:4:\"slug\";s:4:\"mina\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrzpj7i3y65o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mina\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mina/mina-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiDZ95OkJwA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mina\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mina/mina-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/mina/mina.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:816;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Mingzat\";s:10:\"fontFamily\";s:19:\"Mingzat, sans-serif\";s:4:\"slug\";s:7:\"mingzat\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mingzat/v8/0QIgMX5C-o-oWWyvBt5km_mv670.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Mingzat\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/mingzat/mingzat-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/mingzat/mingzat.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:817;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Miniver\";s:10:\"fontFamily\";s:18:\"Miniver, system-ui\";s:4:\"slug\";s:7:\"miniver\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/miniver/v25/eLGcP-PxIg-5H0vC77gCy8r8fWA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Miniver\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/miniver/miniver-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/miniver/miniver.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:818;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Miriam Libre\";s:10:\"fontFamily\";s:26:\"\"Miriam Libre\", sans-serif\";s:4:\"slug\";s:12:\"miriam-libre\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vZZn_Teun9g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Miriam Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/miriam-libre/miriam-libre-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbQMC7_-Z7Hg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Miriam Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/miriam-libre/miriam-libre-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/miriam-libre/miriam-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:819;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Mirza\";s:10:\"fontFamily\";s:12:\"Mirza, serif\";s:4:\"slug\";s:5:\"mirza\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/mirza/v17/co3ImWlikiN5EurYKMewsrvI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mirza\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mirza/mirza-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mirza/v17/co3FmWlikiN5EtIpAeO9mafBomDi.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mirza\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mirza/mirza-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mirza/v17/co3FmWlikiN5EtIFBuO9mafBomDi.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mirza\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mirza/mirza-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mirza/v17/co3FmWlikiN5EtJhB-O9mafBomDi.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mirza\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mirza/mirza-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/mirza/mirza.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:820;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Miss Fajardose\";s:10:\"fontFamily\";s:25:\"\"Miss Fajardose\", cursive\";s:4:\"slug\";s:14:\"miss-fajardose\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qqWPaJq4no.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Miss Fajardose\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/miss-fajardose/miss-fajardose-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/miss-fajardose/miss-fajardose.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:821;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Mitr\";s:10:\"fontFamily\";s:16:\"Mitr, sans-serif\";s:4:\"slug\";s:4:\"mitr\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJXUc1NECPY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mitr\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJXUc1NECPY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mitr\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyT4yMJj_b1o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mitr\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJXUc1NECPY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mitr\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJXUc1NECPY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mitr\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJXUc1NECPY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Mitr\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/mitr/mitr.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:822;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Mochiy Pop One\";s:10:\"fontFamily\";s:28:\"\"Mochiy Pop One\", sans-serif\";s:4:\"slug\";s:14:\"mochiy-pop-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/mochiypopone/v9/QdVPSTA9Jh-gg-5XZP2UmU4O9kw1D3s6ZKAi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Mochiy Pop One\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/mochiy-pop-one/mochiy-pop-one-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/mochiy-pop-one/mochiy-pop-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:823;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Mochiy Pop P One\";s:10:\"fontFamily\";s:30:\"\"Mochiy Pop P One\", sans-serif\";s:4:\"slug\";s:16:\"mochiy-pop-p-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mochiypoppone/v9/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Mochiy Pop P One\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/mochiy-pop-p-one/mochiy-pop-p-one-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/mochiy-pop-p-one/mochiy-pop-p-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:824;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Modak\";s:10:\"fontFamily\";s:16:\"Modak, system-ui\";s:4:\"slug\";s:5:\"modak\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMC8BVZ76KU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Modak\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/modak/modak-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/modak/modak.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:825;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Modern Antiqua\";s:10:\"fontFamily\";s:27:\"\"Modern Antiqua\", system-ui\";s:4:\"slug\";s:14:\"modern-antiqua\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/modernantiqua/v24/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ba2u0c3Gi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Modern Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/modern-antiqua/modern-antiqua-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/modern-antiqua/modern-antiqua.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:826;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Mogra\";s:10:\"fontFamily\";s:16:\"Mogra, system-ui\";s:4:\"slug\";s:5:\"mogra\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo9DvLmxtnG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mogra\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mogra/mogra-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/mogra/mogra.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:827;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Mohave\";s:10:\"fontFamily\";s:18:\"Mohave, sans-serif\";s:4:\"slug\";s:6:\"mohave\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/mohave/v9/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvWQopLSvBk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/mohave/v9/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvWQopLSvBk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/mohave/v9/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvWQopLSvBk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/mohave/v9/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvWQopLSvBk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/mohave/v9/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvWQopLSvBk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mohave/v9/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOao7DXrBlSVw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mohave/v9/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOao7DXrBlSVw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mohave/v9/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOao7DXrBlSVw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mohave/v9/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSao7DXrBlSVw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/mohave/v9/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSao7DXrBlSVw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mohave\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/mohave/mohave.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:828;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Moirai One\";s:10:\"fontFamily\";s:23:\"\"Moirai One\", system-ui\";s:4:\"slug\";s:10:\"moirai-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/moiraione/v1/2sDbZGFUgJLJmby6xgNGT0CWB7UcfCg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Moirai One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/moirai-one/moirai-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/moirai-one/moirai-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:829;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Molengo\";s:10:\"fontFamily\";s:19:\"Molengo, sans-serif\";s:4:\"slug\";s:7:\"molengo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbFQkiCvs5Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Molengo\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/molengo/molengo-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/molengo/molengo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:830;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Molle\";s:10:\"fontFamily\";s:14:\"Molle, cursive\";s:4:\"slug\";s:5:\"molle\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/molle/v23/E21n_dL5hOXFhWEsXz0mVydREus.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Molle\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/molle/molle-400-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/molle/molle.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:831;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Monda\";s:10:\"fontFamily\";s:17:\"Monda, sans-serif\";s:4:\"slug\";s:5:\"monda\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpjNBsLvPdG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Monda\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/monda/monda-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Gl-tPKo2t.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Monda\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/monda/monda-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/monda/monda.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:832;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Monofett\";s:10:\"fontFamily\";s:19:\"Monofett, monospace\";s:4:\"slug\";s:8:\"monofett\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW43XuRwr0VJ7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Monofett\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/monofett/monofett-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/monofett/monofett.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:833;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Monomaniac One\";s:10:\"fontFamily\";s:28:\"\"Monomaniac One\", sans-serif\";s:4:\"slug\";s:14:\"monomaniac-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/monomaniacone/v11/4iC06K17YctZjx50EU-QlwPmcqRiqYkB5kwI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Monomaniac One\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/monomaniac-one/monomaniac-one-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/monomaniac-one/monomaniac-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:834;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Monoton\";s:10:\"fontFamily\";s:18:\"Monoton, system-ui\";s:4:\"slug\";s:7:\"monoton\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/monoton/v19/5h1aiZUrOngCibe4fkPBQ2S7FU8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Monoton\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/monoton/monoton-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/monoton/monoton.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:835;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Monsieur La Doulaise\";s:10:\"fontFamily\";s:31:\"\"Monsieur La Doulaise\", cursive\";s:4:\"slug\";s:20:\"monsieur-la-doulaise\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/monsieurladoulaise/v18/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5bwkEU4HTy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Monsieur La Doulaise\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/monsieur-la-doulaise/monsieur-la-doulaise-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/monsieur-la-doulaise/monsieur-la-doulaise.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:836;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Montaga\";s:10:\"fontFamily\";s:14:\"Montaga, serif\";s:4:\"slug\";s:7:\"montaga\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gMQ7LO5mqc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Montaga\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/montaga/montaga-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/montaga/montaga.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:837;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Montagu Slab\";s:10:\"fontFamily\";s:21:\"\"Montagu Slab\", serif\";s:4:\"slug\";s:12:\"montagu-slab\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/montaguslab/v12/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP4Fs7bOSO7.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Montagu Slab\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/montagu-slab/montagu-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:838;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"MonteCarlo\";s:10:\"fontFamily\";s:19:\"MonteCarlo, cursive\";s:4:\"slug\";s:10:\"montecarlo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/montecarlo/v11/buEzpo6-f9X01GadLA0G0C8V_NxLeiw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"MonteCarlo\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montecarlo/montecarlo-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/montecarlo/montecarlo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:839;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Montez\";s:10:\"fontFamily\";s:15:\"Montez, cursive\";s:4:\"slug\";s:6:\"montez\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/montez/v22/845ZNMk5GoGIX8lm0bDeSd-R_g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Montez\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/montez/montez-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/montez/montez.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:840;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Montserrat\";s:10:\"fontFamily\";s:22:\"Montserrat, sans-serif\";s:4:\"slug\";s:10:\"montserrat\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w7Y3tcoqK5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aXp-p7K5ILg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Montserrat\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat-900-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:841;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Montserrat Alternates\";s:10:\"fontFamily\";s:35:\"\"Montserrat Alternates\", sans-serif\";s:4:\"slug\";s:21:\"montserrat-alternates\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJlp1ml4imo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J6a3RCJ1b0w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfQKphL03l4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1BbZH2mBhkw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xG-GVxk3Nd.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Montserrat Alternates\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates-900-italic.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/montserrat-alternates/montserrat-alternates.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:842;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Montserrat Subrayada\";s:10:\"fontFamily\";s:34:\"\"Montserrat Subrayada\", sans-serif\";s:4:\"slug\";s:20:\"montserrat-subrayada\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/montserratsubrayada/v19/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8OYuceqGT-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Montserrat Subrayada\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/montserrat-subrayada/montserrat-subrayada-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/montserratsubrayada/v19/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Montserrat Subrayada\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/montserrat-subrayada/montserrat-subrayada-700-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/montserrat-subrayada/montserrat-subrayada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:843;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Moo Lah Lah\";s:10:\"fontFamily\";s:24:\"\"Moo Lah Lah\", system-ui\";s:4:\"slug\";s:11:\"moo-lah-lah\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/moolahlah/v6/dg4h_p_opKZOA0w1AYcm55woYQYugjW4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Moo Lah Lah\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/moo-lah-lah/moo-lah-lah-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/moo-lah-lah/moo-lah-lah.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:844;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Mooli\";s:10:\"fontFamily\";s:17:\"Mooli, sans-serif\";s:4:\"slug\";s:5:\"mooli\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/mooli/v1/-F6_fjJpLyk1bYPEBG7YpzlJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mooli\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mooli/mooli-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/mooli/mooli.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:845;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Moon Dance\";s:10:\"fontFamily\";s:21:\"\"Moon Dance\", cursive\";s:4:\"slug\";s:10:\"moon-dance\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/moondance/v6/WBLgrEbUbFlYW9ekmGawe2DiKMiokE4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Moon Dance\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/moon-dance/moon-dance-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/moon-dance/moon-dance.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:846;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Moul\";s:10:\"fontFamily\";s:15:\"Moul, system-ui\";s:4:\"slug\";s:4:\"moul\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/moul/v27/nuF2D__FSo_3E-FYiJCy-00.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Moul\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/moul/moul-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/moul/moul.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:847;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Moulpali\";s:10:\"fontFamily\";s:20:\"Moulpali, sans-serif\";s:4:\"slug\";s:8:\"moulpali\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/moulpali/v30/H4ckBXKMl9HagUWymyY_wr-wg763.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Moulpali\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/moulpali/moulpali-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/moulpali/moulpali.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:848;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Mountains of Christmas\";s:10:\"fontFamily\";s:35:\"\"Mountains of Christmas\", system-ui\";s:4:\"slug\";s:22:\"mountains-of-christmas\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/mountainsofchristmas/v22/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNOmMPNpJpc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Mountains of Christmas\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/mountains-of-christmas/mountains-of-christmas-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/mountainsofchristmas/v22/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFP5COp6IaEA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Mountains of Christmas\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/mountains-of-christmas/mountains-of-christmas-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/mountains-of-christmas/mountains-of-christmas.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:849;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Mouse Memoirs\";s:10:\"fontFamily\";s:27:\"\"Mouse Memoirs\", sans-serif\";s:4:\"slug\";s:13:\"mouse-memoirs\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/mousememoirs/v17/t5tmIRoSNJ-PH0WNNgDYxdSb7TzFrpOHYh4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Mouse Memoirs\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/mouse-memoirs/mouse-memoirs-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/mouse-memoirs/mouse-memoirs.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:850;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Mr Bedfort\";s:10:\"fontFamily\";s:21:\"\"Mr Bedfort\", cursive\";s:4:\"slug\";s:10:\"mr-bedfort\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicli-0XZe_Iy8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Mr Bedfort\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/mr-bedfort/mr-bedfort-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/mr-bedfort/mr-bedfort.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:851;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Mr Dafoe\";s:10:\"fontFamily\";s:19:\"\"Mr Dafoe\", cursive\";s:4:\"slug\";s:8:\"mr-dafoe\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGivg7MCxz_C.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Mr Dafoe\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/mr-dafoe/mr-dafoe-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/mr-dafoe/mr-dafoe.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:852;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Mr De Haviland\";s:10:\"fontFamily\";s:25:\"\"Mr De Haviland\", cursive\";s:4:\"slug\";s:14:\"mr-de-haviland\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3H4ULVNTlB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Mr De Haviland\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/mr-de-haviland/mr-de-haviland-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/mr-de-haviland/mr-de-haviland.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:853;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Mrs Saint Delafield\";s:10:\"fontFamily\";s:30:\"\"Mrs Saint Delafield\", cursive\";s:4:\"slug\";s:19:\"mrs-saint-delafield\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cKstLsubB2w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Mrs Saint Delafield\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/mrs-saint-delafield/mrs-saint-delafield-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/mrs-saint-delafield/mrs-saint-delafield.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:854;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Mrs Sheppards\";s:10:\"fontFamily\";s:24:\"\"Mrs Sheppards\", cursive\";s:4:\"slug\";s:13:\"mrs-sheppards\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/mrssheppards/v23/PN_2Rfm9snC0XUGoEZhb91ig3v3xynMix4Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Mrs Sheppards\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/mrs-sheppards/mrs-sheppards-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/mrs-sheppards/mrs-sheppards.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:855;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Ms Madi\";s:10:\"fontFamily\";s:18:\"\"Ms Madi\", cursive\";s:4:\"slug\";s:7:\"ms-madi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-XPiI7QAYo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ms Madi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ms-madi/ms-madi-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/ms-madi/ms-madi.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:856;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Mukta\";s:10:\"fontFamily\";s:17:\"Mukta, sans-serif\";s:4:\"slug\";s:5:\"mukta\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFmf-2HW7ZB_.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1mf-2HW7ZB_.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnDp32S0H3f.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlmf-2HW7ZB_.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVmf-2HW7ZB_.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFmf-2HW7ZB_.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1mf-2HW7ZB_.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Mukta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta-800-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/mukta/mukta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:857;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Mukta Mahee\";s:10:\"fontFamily\";s:25:\"\"Mukta Mahee\", sans-serif\";s:4:\"slug\";s:11:\"mukta-mahee\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoCJndqZCsW.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoCJndqZCsW.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vIWz4PDWtj.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choCJndqZCsW.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoCJndqZCsW.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoCJndqZCsW.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoCJndqZCsW.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Mahee\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/mukta-mahee/mukta-mahee.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:858;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Mukta Malar\";s:10:\"fontFamily\";s:25:\"\"Mukta Malar\", sans-serif\";s:4:\"slug\";s:11:\"mukta-malar\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAE62ruoAZW.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAE62ruoAZW.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv9LfQJwHbn.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAE62ruoAZW.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AE62ruoAZW.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAE62ruoAZW.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAE62ruoAZW.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Malar\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/mukta-malar/mukta-malar.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:859;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Mukta Vaani\";s:10:\"fontFamily\";s:25:\"\"Mukta Vaani\", sans-serif\";s:4:\"slug\";s:11:\"mukta-vaani\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BG-u97MW1a.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBG-u97MW1a.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0AfORL0fNy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBG-u97MW1a.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBG-u97MW1a.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BG-u97MW1a.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBG-u97MW1a.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Mukta Vaani\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/mukta-vaani/mukta-vaani.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:860;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Mulish\";s:10:\"fontFamily\";s:18:\"Mulish, sans-serif\";s:4:\"slug\";s:6:\"mulish\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaWlGrw-PTY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvG547LTZFwA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Mulish\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/mulish/mulish.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:861;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Murecho\";s:10:\"fontFamily\";s:19:\"Murecho, sans-serif\";s:4:\"slug\";s:7:\"murecho\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWcLCpUOaM6.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Murecho\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/murecho/murecho.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:862;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"MuseoModerno\";s:10:\"fontFamily\";s:23:\"MuseoModerno, system-ui\";s:4:\"slug\";s:12:\"museomoderno\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuekajeKlCdo.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQjMCgGdrS3g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"MuseoModerno\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno-900-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/museomoderno/museomoderno.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:863;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"My Soul\";s:10:\"fontFamily\";s:18:\"\"My Soul\", cursive\";s:4:\"slug\";s:7:\"my-soul\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/mysoul/v5/3XFqErcuy945_u6KF_Alk2nnXf0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"My Soul\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/my-soul/my-soul-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/my-soul/my-soul.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:864;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Mynerve\";s:10:\"fontFamily\";s:16:\"Mynerve, cursive\";s:4:\"slug\";s:7:\"mynerve\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/mynerve/v6/P5sCzZKPdNjb4jt7xCFuiZ-uydg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Mynerve\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/mynerve/mynerve-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/mynerve/mynerve.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:865;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Mystery Quest\";s:10:\"fontFamily\";s:26:\"\"Mystery Quest\", system-ui\";s:4:\"slug\";s:13:\"mystery-quest\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwQlD_9Qz9E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Mystery Quest\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/mystery-quest/mystery-quest-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/mystery-quest/mystery-quest.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:866;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"NTR\";s:10:\"fontFamily\";s:15:\"NTR, sans-serif\";s:4:\"slug\";s:3:\"ntr\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:64:\"https://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiHWhs5TA4bg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"NTR\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/ntr/ntr-400-normal.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/ntr/ntr.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:867;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Nabla\";s:10:\"fontFamily\";s:16:\"Nabla, system-ui\";s:4:\"slug\";s:5:\"nabla\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/nabla/v10/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRVUFFR_198.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Nabla\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/nabla/nabla-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/nabla/nabla.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:868;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Nanum Brush Script\";s:10:\"fontFamily\";s:29:\"\"Nanum Brush Script\", cursive\";s:4:\"slug\";s:18:\"nanum-brush-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyi6Br1lO97Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Nanum Brush Script\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/nanum-brush-script/nanum-brush-script-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/nanum-brush-script/nanum-brush-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:869;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Nanum Gothic\";s:10:\"fontFamily\";s:26:\"\"Nanum Gothic\", sans-serif\";s:4:\"slug\";s:12:\"nanum-gothic\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/nanumgothic/v23/PN_3Rfi-oW3hYwmKDpxS7F_z-9Lfxno73g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Nanum Gothic\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic/nanum-gothic-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nanumgothic/v23/PN_oRfi-oW3hYwmKDpxS7F_LQv37y1En14YEUQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Nanum Gothic\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic/nanum-gothic-700-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nanumgothic/v23/PN_oRfi-oW3hYwmKDpxS7F_LXv77y1En14YEUQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Nanum Gothic\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic/nanum-gothic-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic/nanum-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:870;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Nanum Gothic Coding\";s:10:\"fontFamily\";s:30:\"\"Nanum Gothic Coding\", cursive\";s:4:\"slug\";s:19:\"nanum-gothic-coding\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/nanumgothiccoding/v21/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6ExVs1X7tc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Nanum Gothic Coding\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic-coding/nanum-gothic-coding-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/nanumgothiccoding/v21/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsB88t5V9r4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Nanum Gothic Coding\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic-coding/nanum-gothic-coding-700-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/nanum-gothic-coding/nanum-gothic-coding.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:871;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Nanum Myeongjo\";s:10:\"fontFamily\";s:23:\"\"Nanum Myeongjo\", serif\";s:4:\"slug\";s:14:\"nanum-myeongjo\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nanummyeongjo/v22/9Btx3DZF0dXLMZlywRbVRNhxy1LueHQ8juyl.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Nanum Myeongjo\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/nanum-myeongjo/nanum-myeongjo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/nanummyeongjo/v22/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1AxpfCs5Kos.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Nanum Myeongjo\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/nanum-myeongjo/nanum-myeongjo-700-normal.svg\";}i:2;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/nanummyeongjo/v22/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFAxpfCs5Kos.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Nanum Myeongjo\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/nanum-myeongjo/nanum-myeongjo-800-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/nanum-myeongjo/nanum-myeongjo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:872;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Nanum Pen Script\";s:10:\"fontFamily\";s:27:\"\"Nanum Pen Script\", cursive\";s:4:\"slug\";s:16:\"nanum-pen-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2zv-aMFCcTU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Nanum Pen Script\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/nanum-pen-script/nanum-pen-script-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/nanum-pen-script/nanum-pen-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:873;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Narnoor\";s:10:\"fontFamily\";s:14:\"Narnoor, serif\";s:4:\"slug\";s:7:\"narnoor\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/narnoor/v7/cIf9MaFWuVo-UTyPxCyrYGkHgIs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Narnoor\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/narnoor/narnoor-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/narnoor/v7/cIf4MaFWuVo-UTyP_N2CRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Narnoor\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/narnoor/narnoor-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/narnoor/v7/cIf4MaFWuVo-UTyP_PGFRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Narnoor\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/narnoor/narnoor-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/narnoor/v7/cIf4MaFWuVo-UTyP_JWERGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Narnoor\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/narnoor/narnoor-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/narnoor/v7/cIf4MaFWuVo-UTyP_ImHRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Narnoor\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/narnoor/narnoor-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/narnoor/narnoor.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:874;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Neonderthaw\";s:10:\"fontFamily\";s:20:\"Neonderthaw, cursive\";s:4:\"slug\";s:11:\"neonderthaw\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/neonderthaw/v6/Iure6Yx5-oWVZI0r-17AeZZMprVA4XQ0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Neonderthaw\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/neonderthaw/neonderthaw-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/neonderthaw/neonderthaw.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:875;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nerko One\";s:10:\"fontFamily\";s:20:\"\"Nerko One\", cursive\";s:4:\"slug\";s:9:\"nerko-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzdZ5BZmqa3A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nerko One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nerko-one/nerko-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nerko-one/nerko-one.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:876;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Neucha\";s:10:\"fontFamily\";s:15:\"Neucha, cursive\";s:4:\"slug\";s:6:\"neucha\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvvwNsCxVEgA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Neucha\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neucha/neucha-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/neucha/neucha.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:877;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Neuton\";s:10:\"fontFamily\";s:13:\"Neuton, serif\";s:4:\"slug\";s:6:\"neuton\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKAKkffwD5Drog6Q.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Neuton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKZKoffwD5Drog6Q.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Neuton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/neuton/v22/UMBTrPtMoH62xUZyzYI7civlBw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Neuton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/neuton/v22/UMBRrPtMoH62xUZCyog6UC71B6M5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Neuton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKdK0ffwD5Drog6Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Neuton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKaK4ffwD5Drog6Q.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Neuton\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton-800-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/neuton/neuton.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:878;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"New Rocker\";s:10:\"fontFamily\";s:23:\"\"New Rocker\", system-ui\";s:4:\"slug\";s:10:\"new-rocker\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGYViblPtXs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"New Rocker\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/new-rocker/new-rocker-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/new-rocker/new-rocker.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:879;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"New Tegomin\";s:10:\"fontFamily\";s:20:\"\"New Tegomin\", serif\";s:4:\"slug\";s:11:\"new-tegomin\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfNxQ3ptkDMN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"New Tegomin\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/new-tegomin/new-tegomin-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/new-tegomin/new-tegomin.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:880;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"News Cycle\";s:10:\"fontFamily\";s:24:\"\"News Cycle\", sans-serif\";s:4:\"slug\";s:10:\"news-cycle\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOIATNt_pOU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"News Cycle\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/news-cycle/news-cycle-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNZUuOwkC2s.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"News Cycle\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/news-cycle/news-cycle-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/news-cycle/news-cycle.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:881;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Newsreader\";s:10:\"fontFamily\";s:17:\"Newsreader, serif\";s:4:\"slug\";s:10:\"newsreader\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/newsreader/v20/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjACexEPjCggA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-200-italic.svg\";}i:8;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-300-italic.svg\";}i:9;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-400-italic.svg\";}i:10;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-500-italic.svg\";}i:11;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-700-italic.svg\";}i:13;a:5:{s:3:\"src\";s:117:\"https://fonts.gstatic.com/s/newsreader/v20/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZFHDWwgECi.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Newsreader\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader-800-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:882;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Niconne\";s:10:\"fontFamily\";s:16:\"Niconne, cursive\";s:4:\"slug\";s:7:\"niconne\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQ6t2F4OuOo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niconne\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niconne/niconne-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/niconne/niconne.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:883;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Niramit\";s:10:\"fontFamily\";s:19:\"Niramit, sans-serif\";s:4:\"slug\";s:7:\"niramit\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7ti2Er5_BdZ8.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOrr3EZZ_f6w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4ti2Er5_BdZ8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOrr3EZZ_f6w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbFQkiCvs5Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZakwKqo5bYbA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5ti2Er5_BdZ8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOrr3EZZ_f6w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-ti2Er5_BdZ8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOrr3EZZ_f6w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_ti2Er5_BdZ8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Orr3EZZ_f6w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Niramit\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/niramit/niramit.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:884;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nixie One\";s:10:\"fontFamily\";s:22:\"\"Nixie One\", system-ui\";s:4:\"slug\";s:9:\"nixie-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoVeFzpS-yLw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nixie One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nixie-one/nixie-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nixie-one/nixie-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:885;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Nobile\";s:10:\"fontFamily\";s:18:\"Nobile, sans-serif\";s:4:\"slug\";s:6:\"nobile\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2W6fXeLVdbw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nobile\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3WWrBNb3OD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nobile\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zdZ5BZmqa3A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nobile\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RARG-K3Mud.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nobile\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile-500-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzdZ5BZmqa3A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nobile\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRARG-K3Mud.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nobile\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/nobile/nobile.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:886;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Nokora\";s:10:\"fontFamily\";s:18:\"Nokora, sans-serif\";s:4:\"slug\";s:6:\"nokora\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/nokora/v31/hYkKPuwgTubzaWxoXzAOgPNw8QZN.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nokora\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nokora/nokora-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/nokora/v31/hYkLPuwgTubzaWxolxIrr918-B9Uuw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nokora\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nokora/nokora-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/nokora/v31/hYkIPuwgTubzaWxQPjoPovZg8Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nokora\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nokora/nokora-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/nokora/v31/hYkLPuwgTubzaWxohxUrr918-B9Uuw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nokora\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nokora/nokora-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/nokora/v31/hYkLPuwgTubzaWxovxcrr918-B9Uuw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nokora\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nokora/nokora-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/nokora/nokora.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:887;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Norican\";s:10:\"fontFamily\";s:16:\"Norican, cursive\";s:4:\"slug\";s:7:\"norican\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/norican/v15/MwQ2bhXp1eSBqjkPGJdRtGs-lbA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Norican\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/norican/norican-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/norican/norican.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:888;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Nosifer\";s:10:\"fontFamily\";s:18:\"Nosifer, system-ui\";s:4:\"slug\";s:7:\"nosifer\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/nosifer/v22/ZGjXol5JTp0g5bxZaChRVDNdGDs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Nosifer\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/nosifer/nosifer-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/nosifer/nosifer.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:889;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Notable\";s:10:\"fontFamily\";s:19:\"Notable, sans-serif\";s:4:\"slug\";s:7:\"notable\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/notable/v18/gNMEW3N_SIqx-WX9-HYoFIez5MI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Notable\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/notable/notable-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/notable/notable.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:890;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Nothing You Could Do\";s:10:\"fontFamily\";s:31:\"\"Nothing You Could Do\", cursive\";s:4:\"slug\";s:20:\"nothing-you-could-do\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/nothingyoucoulddo/v19/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OMl1ol2Ymo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Nothing You Could Do\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/nothing-you-could-do/nothing-you-could-do-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/nothing-you-could-do/nothing-you-could-do.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:891;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noticia Text\";s:10:\"fontFamily\";s:21:\"\"Noticia Text\", serif\";s:4:\"slug\";s:12:\"noticia-text\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GZDFZt0rNpQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noticia Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noticia-text/noticia-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztYlU_dpSjt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Noticia Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noticia-text/noticia-text-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59umHRrDH0eA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noticia Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noticia-text/noticia-text-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvQjjTkeMnz.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Noticia Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noticia-text/noticia-text-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noticia-text/noticia-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:892;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Color Emoji\";s:10:\"fontFamily\";s:30:\"\"Noto Color Emoji\", sans-serif\";s:4:\"slug\";s:16:\"noto-color-emoji\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notocoloremoji/v30/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFabts79iz64w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Color Emoji\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-color-emoji/noto-color-emoji-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-color-emoji/noto-color-emoji.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:893;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Noto Emoji\";s:10:\"fontFamily\";s:24:\"\"Noto Emoji\", sans-serif\";s:4:\"slug\";s:10:\"noto-emoji\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notoemoji/v47/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwqS-FGJCMY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Emoji\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-emoji/noto-emoji-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notoemoji/v47/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwqS-FGJCMY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Emoji\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-emoji/noto-emoji-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notoemoji/v47/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwqS-FGJCMY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Emoji\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-emoji/noto-emoji-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notoemoji/v47/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwqS-FGJCMY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Emoji\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-emoji/noto-emoji-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notoemoji/v47/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwqS-FGJCMY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Emoji\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-emoji/noto-emoji-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/noto-emoji/noto-emoji.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:894;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Kufi Arabic\";s:10:\"fontFamily\";s:30:\"\"Noto Kufi Arabic\", sans-serif\";s:4:\"slug\";s:16:\"noto-kufi-arabic\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notokufiarabic/v17/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbKnLSmf5yD.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Kufi Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-kufi-arabic/noto-kufi-arabic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:895;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Noto Music\";s:10:\"fontFamily\";s:24:\"\"Noto Music\", sans-serif\";s:4:\"slug\";s:10:\"noto-music\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/notomusic/v20/pe0rMIiSN5pO63htf1sxItKQB9Zra1U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Music\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-music/noto-music-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/noto-music/noto-music.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:896;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Naskh Arabic\";s:10:\"fontFamily\";s:26:\"\"Noto Naskh Arabic\", serif\";s:4:\"slug\";s:17:\"noto-naskh-arabic\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5kqa0z9_Mnuw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Naskh Arabic\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-naskh-arabic/noto-naskh-arabic-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85kqa0z9_Mnuw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Naskh Arabic\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-naskh-arabic/noto-naskh-arabic-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkqa0z9_Mnuw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Naskh Arabic\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-naskh-arabic/noto-naskh-arabic-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkqa0z9_Mnuw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Naskh Arabic\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-naskh-arabic/noto-naskh-arabic-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-naskh-arabic/noto-naskh-arabic.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:897;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Nastaliq Urdu\";s:10:\"fontFamily\";s:27:\"\"Noto Nastaliq Urdu\", serif\";s:4:\"slug\";s:18:\"noto-nastaliq-urdu\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DKif2-_8mEw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Nastaliq Urdu\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DKif2-_8mEw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Nastaliq Urdu\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DKif2-_8mEw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Nastaliq Urdu\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DKif2-_8mEw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Nastaliq Urdu\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-nastaliq-urdu/noto-nastaliq-urdu.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:898;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Rashi Hebrew\";s:10:\"fontFamily\";s:26:\"\"Noto Rashi Hebrew\", serif\";s:4:\"slug\";s:17:\"noto-rashi-hebrew\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkQiq6Nf2pfA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Rashi Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-rashi-hebrew/noto-rashi-hebrew.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:899;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Noto Sans\";s:10:\"fontFamily\";s:23:\"\"Noto Sans\", sans-serif\";s:4:\"slug\";s:9:\"noto-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9At9Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9A99Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyCjA99Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9BN9Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/notosans/v35/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyBUBN9Y41P6zHtY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDcf6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLce6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QGke6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDce6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QAUe6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QOkZ6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QNAZ6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLcZ6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosans/v35/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QJ4Z6VLYyWtY1rI.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Noto Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/noto-sans/noto-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:900;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Adlam\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Adlam\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-adlam\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansadlam/v22/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGzBZLwhuvk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Adlam\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam/noto-sans-adlam-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansadlam/v22/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGzBZLwhuvk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Adlam\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam/noto-sans-adlam-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansadlam/v22/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGzBZLwhuvk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Adlam\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam/noto-sans-adlam-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansadlam/v22/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGzBZLwhuvk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Adlam\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam/noto-sans-adlam-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam/noto-sans-adlam.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:901;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Noto Sans Adlam Unjoined\";s:10:\"fontFamily\";s:38:\"\"Noto Sans Adlam Unjoined\", sans-serif\";s:4:\"slug\";s:24:\"noto-sans-adlam-unjoined\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMQe-E3slUg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Adlam Unjoined\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMQe-E3slUg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Adlam Unjoined\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMQe-E3slUg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Adlam Unjoined\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMQe-E3slUg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Adlam Unjoined\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-700-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:902;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:10:\"fontFamily\";s:45:\"\"Noto Sans Anatolian Hieroglyphs\", sans-serif\";s:4:\"slug\";s:31:\"noto-sans-anatolian-hieroglyphs\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v16/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXyPIymc5QYo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:7:\"preview\";s:121:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-anatolian-hieroglyphs/noto-sans-anatolian-hieroglyphs-400-normal.svg\";}}s:7:\"preview\";s:110:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-anatolian-hieroglyphs/noto-sans-anatolian-hieroglyphs.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:903;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Arabic\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Arabic\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-arabic\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvvnCBFQLaig.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Arabic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-arabic/noto-sans-arabic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:904;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Armenian\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Armenian\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-armenian\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansarmenian/v43/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0nYy6zF3Eg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Armenian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-armenian/noto-sans-armenian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:905;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Avestan\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Avestan\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-avestan\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansavestan/v21/bWti7ejKfBziStx7lIzKOLQZKhIJkyu4SASLji8U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Avestan\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-avestan/noto-sans-avestan-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-avestan/noto-sans-avestan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:906;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Balinese\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Balinese\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-balinese\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhEtVd222PPY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Balinese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-balinese/noto-sans-balinese-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhEtVd222PPY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Balinese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-balinese/noto-sans-balinese-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahEtVd222PPY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Balinese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-balinese/noto-sans-balinese-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahEtVd222PPY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Balinese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-balinese/noto-sans-balinese-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-balinese/noto-sans-balinese.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:907;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Bamum\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Bamum\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-bamum\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansbamum/v27/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_0LykxEkxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Bamum\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bamum/noto-sans-bamum-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansbamum/v27/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_0LykxEkxA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Bamum\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bamum/noto-sans-bamum-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansbamum/v27/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_0LykxEkxA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Bamum\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bamum/noto-sans-bamum-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansbamum/v27/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_0LykxEkxA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Bamum\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bamum/noto-sans-bamum-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bamum/noto-sans-bamum.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:908;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Bassa Vah\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Bassa Vah\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-bassa-vah\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6s34gH-GD7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Bassa Vah\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6s34gH-GD7.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Bassa Vah\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6s34gH-GD7.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Bassa Vah\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6s34gH-GD7.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Bassa Vah\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-700-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bassa-vah/noto-sans-bassa-vah.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:909;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Batak\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Batak\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-batak\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosansbatak/v19/gok2H6TwAEdtF9N8-mdTCQvT-Zdgpo_PHuk74A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Batak\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-batak/noto-sans-batak-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-batak/noto-sans-batak.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:910;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Bengali\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Bengali\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-bengali\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudWk8izI0lc.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Bengali\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bengali/noto-sans-bengali.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:911;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Bhaiksuki\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Bhaiksuki\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-bhaiksuki\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosansbhaiksuki/v17/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rfUdU4wh9U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Bhaiksuki\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bhaiksuki/noto-sans-bhaiksuki-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-bhaiksuki/noto-sans-bhaiksuki.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:912;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Brahmi\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Brahmi\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-brahmi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosansbrahmi/v18/vEFK2-VODB8RrNDvZSUmQQIIByV18te1W77HtMo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Brahmi\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-brahmi/noto-sans-brahmi-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-brahmi/noto-sans-brahmi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:913;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Buginese\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Buginese\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-buginese\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gsPuEXLmNtw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Buginese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-buginese/noto-sans-buginese-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-buginese/noto-sans-buginese.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:914;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Buhid\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Buhid\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-buhid\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosansbuhid/v22/Dxxy8jiXMW75w3OmoDXVWJD7YwzAfqtgnaFoGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Buhid\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-buhid/noto-sans-buhid-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-buhid/noto-sans-buhid.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:915;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:29:\"Noto Sans Canadian Aboriginal\";s:10:\"fontFamily\";s:43:\"\"Noto Sans Canadian Aboriginal\", sans-serif\";s:4:\"slug\";s:29:\"noto-sans-canadian-aboriginal\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:139:\"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v22/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_zQsg0q0uhQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Canadian Aboriginal\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-900-normal.svg\";}}s:7:\"preview\";s:106:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:916;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Carian\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Carian\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-carian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanscarian/v16/LDIpaoiONgYwA9Yc6f0gUILeMIOgs78b9yGLmfI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Carian\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-carian/noto-sans-carian-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-carian/noto-sans-carian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:917;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:28:\"Noto Sans Caucasian Albanian\";s:10:\"fontFamily\";s:42:\"\"Noto Sans Caucasian Albanian\", sans-serif\";s:4:\"slug\";s:28:\"noto-sans-caucasian-albanian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosanscaucasianalbanian/v18/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYXmoVmRSZo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:28:\"Noto Sans Caucasian Albanian\";s:7:\"preview\";s:115:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-caucasian-albanian/noto-sans-caucasian-albanian-400-normal.svg\";}}s:7:\"preview\";s:104:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-caucasian-albanian/noto-sans-caucasian-albanian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:918;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Chakma\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Chakma\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-chakma\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4J3TQhYBeYo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Chakma\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-chakma/noto-sans-chakma-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-chakma/noto-sans-chakma.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:919;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Cham\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Cham\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-cham\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0curGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanscham/v30/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscurGykboaLg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Cham\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cham/noto-sans-cham.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:920;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Cherokee\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Cherokee\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-cherokee\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanscherokee/v20/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDky5rAffjl0.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Cherokee\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cherokee/noto-sans-cherokee.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:921;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Chorasmian\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Chorasmian\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-chorasmian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanschorasmian/v1/MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5v3oH7w4g9b.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Chorasmian\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-chorasmian/noto-sans-chorasmian-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-chorasmian/noto-sans-chorasmian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:922;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Coptic\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Coptic\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-coptic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanscoptic/v21/iJWfBWmUZi_OHPqn4wq6kgqumOEd786_VG0xR4Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Coptic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-coptic/noto-sans-coptic-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-coptic/noto-sans-coptic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:923;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Cuneiform\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Cuneiform\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-cuneiform\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosanscuneiform/v17/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgbpJlRQueeQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Cuneiform\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cuneiform/noto-sans-cuneiform-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cuneiform/noto-sans-cuneiform.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:924;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Cypriot\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Cypriot\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-cypriot\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanscypriot/v19/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIpK5MPpahF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Cypriot\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cypriot/noto-sans-cypriot-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cypriot/noto-sans-cypriot.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:925;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Sans Cypro Minoan\";s:10:\"fontFamily\";s:36:\"\"Noto Sans Cypro Minoan\", sans-serif\";s:4:\"slug\";s:22:\"noto-sans-cypro-minoan\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/notosanscyprominoan/v1/2Eb2L_dtDUlkNmPHB_UVtEzp3ZlPGqZ_4nAGq9KSf8_eQSE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Cypro Minoan\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cypro-minoan/noto-sans-cypro-minoan-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-cypro-minoan/noto-sans-cypro-minoan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:926;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Deseret\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Deseret\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-deseret\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansdeseret/v17/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq4ZnJSZtQG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Deseret\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-deseret/noto-sans-deseret-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-deseret/noto-sans-deseret.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:927;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Devanagari\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Devanagari\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-devanagari\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:136:\"https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-UzoFoW4Ow.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Devanagari\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari-900-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-devanagari/noto-sans-devanagari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:928;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Display\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Display\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-display\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTSQ2iHrvWM.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/notosansdisplay/v26/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa2wPurWM9uQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Noto Sans Display\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display-900-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-display/noto-sans-display.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:929;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Duployan\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Duployan\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-duployan\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosansduployan/v17/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrE8In6WYDvA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Duployan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-duployan/noto-sans-duployan-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notosansduployan/v17/gokwH7nwAEdtF9N8-mdTDx_X9JM5wsvTqu0D5E0ftZS-Iw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Duployan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-duployan/noto-sans-duployan-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-duployan/noto-sans-duployan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:930;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:10:\"fontFamily\";s:44:\"\"Noto Sans Egyptian Hieroglyphs\", sans-serif\";s:4:\"slug\";s:30:\"noto-sans-egyptian-hieroglyphs\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v28/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindTFK8xRg7iw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:7:\"preview\";s:119:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-egyptian-hieroglyphs/noto-sans-egyptian-hieroglyphs-400-normal.svg\";}}s:7:\"preview\";s:108:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-egyptian-hieroglyphs/noto-sans-egyptian-hieroglyphs.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:931;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Elbasan\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Elbasan\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-elbasan\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanselbasan/v16/-F6rfiZqLzI2JPCgQBnw400qp1trvHdgre4dFcFh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Elbasan\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-elbasan/noto-sans-elbasan-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-elbasan/noto-sans-elbasan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:932;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Elymaic\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Elymaic\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-elymaic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanselymaic/v17/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AmWOT0zi2V.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Elymaic\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-elymaic/noto-sans-elymaic-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-elymaic/noto-sans-elymaic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:933;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Ethiopic\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Ethiopic\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-ethiopic\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansethiopic/v47/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDmwmfeaY9u.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ethiopic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ethiopic/noto-sans-ethiopic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:934;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Georgian\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Georgian\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-georgian\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j7f5WK0OQV.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Georgian\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-georgian/noto-sans-georgian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:935;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Glagolitic\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Glagolitic\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-glagolitic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notosansglagolitic/v17/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERP4Amu7nM1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Glagolitic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-glagolitic/noto-sans-glagolitic-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-glagolitic/noto-sans-glagolitic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:936;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Gothic\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Gothic\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-gothic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosansgothic/v16/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMD40kFQRx0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Gothic\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gothic/noto-sans-gothic-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gothic/noto-sans-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:937;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Grantha\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Grantha\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-grantha\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8ZFeulHc6N.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Grantha\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-grantha/noto-sans-grantha-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-grantha/noto-sans-grantha.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:938;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Gujarati\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Gujarati\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-gujarati\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgujarati/v25/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPJ_OdiEH0s.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gujarati\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gujarati/noto-sans-gujarati.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:939;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Noto Sans Gunjala Gondi\";s:10:\"fontFamily\";s:37:\"\"Noto Sans Gunjala Gondi\", sans-serif\";s:4:\"slug\";s:23:\"noto-sans-gunjala-gondi\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/notosansgunjalagondi/v19/bWtX7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5g0ef3PLtymzNxYL4YDE5Z4vCTxEJQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Gunjala Gondi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/notosansgunjalagondi/v19/bWtX7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5g0ef3PLtymzNxYL04DE5Z4vCTxEJQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Gunjala Gondi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/notosansgunjalagondi/v19/bWtX7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5g0ef3PLtymzNxYLP4fE5Z4vCTxEJQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Gunjala Gondi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:125:\"https://fonts.gstatic.com/s/notosansgunjalagondi/v19/bWtX7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5g0ef3PLtymzNxYLBofE5Z4vCTxEJQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Gunjala Gondi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi-700-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:940;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Gurmukhi\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Gurmukhi\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-gurmukhi\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3b0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3Oenb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0Qenb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oenb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXb0Z_trdp7h.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Gurmukhi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-gurmukhi/noto-sans-gurmukhi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:941;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noto Sans HK\";s:10:\"fontFamily\";s:26:\"\"Noto Sans HK\", sans-serif\";s:4:\"slug\";s:12:\"noto-sans-hk\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qHB_-oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qPB--oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qC5--oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qHB--oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qEJ--oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qK55-oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qJd5-oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qPB5-oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qNl5-oCTiYjNvVA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans HK\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hk/noto-sans-hk.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:942;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Noto Sans Hanifi Rohingya\";s:10:\"fontFamily\";s:39:\"\"Noto Sans Hanifi Rohingya\", sans-serif\";s:4:\"slug\";s:25:\"noto-sans-hanifi-rohingya\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanshanifirohingya/v28/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6qvcudK8rN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Noto Sans Hanifi Rohingya\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanshanifirohingya/v28/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6qvcudK8rN.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Noto Sans Hanifi Rohingya\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanshanifirohingya/v28/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6qvcudK8rN.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Noto Sans Hanifi Rohingya\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanshanifirohingya/v28/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6qvcudK8rN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Noto Sans Hanifi Rohingya\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-700-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:943;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Hanunoo\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Hanunoo\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-hanunoo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanshanunoo/v21/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEpEpgL_ix2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Hanunoo\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanunoo/noto-sans-hanunoo-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hanunoo/noto-sans-hanunoo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:944;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Hatran\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Hatran\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-hatran\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanshatran/v16/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mMo3r1nwzDs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hatran\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hatran/noto-sans-hatran-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hatran/noto-sans-hatran.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:945;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Hebrew\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Hebrew\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-hebrew\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2tpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2tpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942tpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2tpyJltutR2g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Hebrew\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-hebrew/noto-sans-hebrew.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:946;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Noto Sans Imperial Aramaic\";s:10:\"fontFamily\";s:40:\"\"Noto Sans Imperial Aramaic\", sans-serif\";s:4:\"slug\";s:26:\"noto-sans-imperial-aramaic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansimperialaramaic/v16/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdjl3YfPNno.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Noto Sans Imperial Aramaic\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-imperial-aramaic/noto-sans-imperial-aramaic-400-normal.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-imperial-aramaic/noto-sans-imperial-aramaic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:947;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:10:\"fontFamily\";s:43:\"\"Noto Sans Indic Siyaq Numbers\", sans-serif\";s:4:\"slug\";s:29:\"noto-sans-indic-siyaq-numbers\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v16/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2TPOpVd5Iu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:7:\"preview\";s:117:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-indic-siyaq-numbers/noto-sans-indic-siyaq-numbers-400-normal.svg\";}}s:7:\"preview\";s:106:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-indic-siyaq-numbers/noto-sans-indic-siyaq-numbers.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:948;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:10:\"fontFamily\";s:45:\"\"Noto Sans Inscriptional Pahlavi\", sans-serif\";s:4:\"slug\";s:31:\"noto-sans-inscriptional-pahlavi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v16/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVt-VOAYK0QA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:7:\"preview\";s:121:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-inscriptional-pahlavi/noto-sans-inscriptional-pahlavi-400-normal.svg\";}}s:7:\"preview\";s:110:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-inscriptional-pahlavi/noto-sans-inscriptional-pahlavi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:949;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:32:\"Noto Sans Inscriptional Parthian\";s:10:\"fontFamily\";s:46:\"\"Noto Sans Inscriptional Parthian\", sans-serif\";s:4:\"slug\";s:32:\"noto-sans-inscriptional-parthian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/notosansinscriptionalparthian/v16/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBM2jNkLlLr.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:32:\"Noto Sans Inscriptional Parthian\";s:7:\"preview\";s:123:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-inscriptional-parthian/noto-sans-inscriptional-parthian-400-normal.svg\";}}s:7:\"preview\";s:112:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-inscriptional-parthian/noto-sans-inscriptional-parthian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:950;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noto Sans JP\";s:10:\"fontFamily\";s:26:\"\"Noto Sans JP\", sans-serif\";s:4:\"slug\";s:12:\"noto-sans-jp\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk757Y0rw-oME.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans JP\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-jp/noto-sans-jp.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:951;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Javanese\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Javanese\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-javanese\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansjavanese/v23/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFxiZYWj4O8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Javanese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-javanese/noto-sans-javanese-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansjavanese/v23/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFxiZYWj4O8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Javanese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-javanese/noto-sans-javanese-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansjavanese/v23/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFxiZYWj4O8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Javanese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-javanese/noto-sans-javanese-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosansjavanese/v23/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFxiZYWj4O8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Javanese\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-javanese/noto-sans-javanese-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-javanese/noto-sans-javanese.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:952;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noto Sans KR\";s:10:\"fontFamily\";s:26:\"\"Noto Sans KR\", sans-serif\";s:4:\"slug\";s:12:\"noto-sans-kr\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzuozeLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzmoyeLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzrQyeLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzuoyeLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzztgyeLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzjQ1eLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzg01eLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzmo1eLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzkM1eLHq8H4hfeE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans KR\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kr/noto-sans-kr.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:953;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Kaithi\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Kaithi\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-kaithi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanskaithi/v20/buEtppS9f8_vkXadMBJJu0tWjLwjQigKdoZIKlo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Kaithi\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kaithi/noto-sans-kaithi-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kaithi/noto-sans-kaithi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:954;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Kannada\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Kannada\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-kannada\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanskannada/v27/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzScMLsPKrkY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Kannada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kannada/noto-sans-kannada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:955;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Kawi\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Kawi\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-kawi\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/notosanskawi/v3/92zBtBJLNqsg7tCciW0EPHNNh1ZgbtGWiTYDjvnK4AhmD5RyMjXVsQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Kawi\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kawi/noto-sans-kawi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/notosanskawi/v3/92zBtBJLNqsg7tCciW0EPHNNh1ZgbtGWiTYDjvnK0ghmD5RyMjXVsQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Kawi\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kawi/noto-sans-kawi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/notosanskawi/v3/92zBtBJLNqsg7tCciW0EPHNNh1ZgbtGWiTYDjvnKPg9mD5RyMjXVsQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Kawi\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kawi/noto-sans-kawi-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/notosanskawi/v3/92zBtBJLNqsg7tCciW0EPHNNh1ZgbtGWiTYDjvnKBw9mD5RyMjXVsQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Kawi\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kawi/noto-sans-kawi-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kawi/noto-sans-kawi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:956;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Kayah Li\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Kayah Li\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-kayah-li\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanskayahli/v21/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZT4EXLuKVM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Kayah Li\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kayah-li/noto-sans-kayah-li-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanskayahli/v21/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZT4EXLuKVM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Kayah Li\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kayah-li/noto-sans-kayah-li-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanskayahli/v21/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZT4EXLuKVM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Kayah Li\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kayah-li/noto-sans-kayah-li-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanskayahli/v21/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZT4EXLuKVM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Kayah Li\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kayah-li/noto-sans-kayah-li-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kayah-li/noto-sans-kayah-li.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:957;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Kharoshthi\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Kharoshthi\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-kharoshthi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z9rFyx5mR1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Kharoshthi\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kharoshthi/noto-sans-kharoshthi-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-kharoshthi/noto-sans-kharoshthi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:958;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Khmer\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Khmer\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-khmer\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanskhmer/v24/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z9kAbrddiA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Khmer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khmer/noto-sans-khmer.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:959;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Khojki\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Khojki\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-khojki\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanskhojki/v18/-nFnOHM29Oofr2wohFbTuPPKVWpmK_J709jy92k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Khojki\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khojki/noto-sans-khojki-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khojki/noto-sans-khojki.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:960;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Khudawadi\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Khudawadi\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-khudawadi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosanskhudawadi/v21/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjFnVVXz9MY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Khudawadi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khudawadi/noto-sans-khudawadi-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-khudawadi/noto-sans-khudawadi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:961;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Sans Lao\";s:10:\"fontFamily\";s:27:\"\"Noto Sans Lao\", sans-serif\";s:4:\"slug\";s:13:\"noto-sans-lao\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8HdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/notosanslao/v30/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdepMK3riB2w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Lao\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao/noto-sans-lao.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:962;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Lao Looped\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Lao Looped\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-lao-looped\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosanslaolooped/v7/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Nw5V_T71k.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Lao Looped\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped-900-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lao-looped/noto-sans-lao-looped.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:963;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Lepcha\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Lepcha\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-lepcha\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanslepcha/v19/0QI7MWlB_JWgA166SKhu05TekNS32AdstqBXgd4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Lepcha\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lepcha/noto-sans-lepcha-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lepcha/noto-sans-lepcha.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:964;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Limbu\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Limbu\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-limbu\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj1cF3OHRDnA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Limbu\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-limbu/noto-sans-limbu-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-limbu/noto-sans-limbu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:965;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Linear A\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Linear A\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-linear-a\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notosanslineara/v18/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22y2HQAGQicw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Linear A\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-linear-a/noto-sans-linear-a-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-linear-a/noto-sans-linear-a.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:966;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Linear B\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Linear B\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-linear-b\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notosanslinearb/v17/HhyJU4wt9vSgfHoORYOiXOckKNB737IV2RkFTq4EPw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Linear B\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-linear-b/noto-sans-linear-b-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-linear-b/noto-sans-linear-b.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:967;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Lisu\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Lisu\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-lisu\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt3tIlxkVdig.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Lisu\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lisu/noto-sans-lisu-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt3tIlxkVdig.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Lisu\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lisu/noto-sans-lisu-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st3tIlxkVdig.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Lisu\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lisu/noto-sans-lisu-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst3tIlxkVdig.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Lisu\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lisu/noto-sans-lisu-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lisu/noto-sans-lisu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:968;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Lycian\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Lycian\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-lycian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_zaCJwn00E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Lycian\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lycian/noto-sans-lycian-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lycian/noto-sans-lycian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:969;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Lydian\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Lydian\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-lydian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanslydian/v18/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUbXMoIjEQI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Lydian\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lydian/noto-sans-lydian-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-lydian/noto-sans-lydian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:970;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Mahajani\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Mahajani\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-mahajani\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosansmahajani/v19/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5FgsARHNh4zg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Mahajani\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mahajani/noto-sans-mahajani-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mahajani/noto-sans-mahajani.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:971;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Malayalam\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Malayalam\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-malayalam\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9AVzEr6HxEA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Malayalam\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-malayalam/noto-sans-malayalam.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:972;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Mandaic\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Mandaic\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-mandaic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansmandaic/v16/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_F_gMk0izH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Mandaic\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mandaic/noto-sans-mandaic-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mandaic/noto-sans-mandaic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:973;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Manichaean\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Manichaean\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-manichaean\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notosansmanichaean/v18/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqHNTtFCtdX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Manichaean\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-manichaean/noto-sans-manichaean-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-manichaean/noto-sans-manichaean.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:974;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Marchen\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Marchen\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-marchen\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansmarchen/v19/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhKk652ZaHk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Marchen\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-marchen/noto-sans-marchen-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-marchen/noto-sans-marchen.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:975;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Noto Sans Masaram Gondi\";s:10:\"fontFamily\";s:37:\"\"Noto Sans Masaram Gondi\", sans-serif\";s:4:\"slug\";s:23:\"noto-sans-masaram-gondi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGb7RI9WSWX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Masaram Gondi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-masaram-gondi/noto-sans-masaram-gondi-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-masaram-gondi/noto-sans-masaram-gondi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:976;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Math\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Math\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-math\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkD-V048PW0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Math\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-math/noto-sans-math-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-math/noto-sans-math.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:977;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Noto Sans Mayan Numerals\";s:10:\"fontFamily\";s:38:\"\"Noto Sans Mayan Numerals\", sans-serif\";s:4:\"slug\";s:24:\"noto-sans-mayan-numerals\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/notosansmayannumerals/v16/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE7soo6eepYQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Mayan Numerals\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mayan-numerals/noto-sans-mayan-numerals-400-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mayan-numerals/noto-sans-mayan-numerals.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:978;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Medefaidrin\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Medefaidrin\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-medefaidrin\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansmedefaidrin/v23/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlTj18e5A3rw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Medefaidrin\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansmedefaidrin/v23/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlTj18e5A3rw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Medefaidrin\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansmedefaidrin/v23/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlTj18e5A3rw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Medefaidrin\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansmedefaidrin/v23/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlTj18e5A3rw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Medefaidrin\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-700-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-medefaidrin/noto-sans-medefaidrin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:979;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Sans Meetei Mayek\";s:10:\"fontFamily\";s:36:\"\"Noto Sans Meetei Mayek\", sans-serif\";s:4:\"slug\";s:22:\"noto-sans-meetei-mayek\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmeeteimayek/v15/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTT5PgeFYVa.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Meetei Mayek\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-900-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:980;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Noto Sans Mende Kikakui\";s:10:\"fontFamily\";s:37:\"\"Noto Sans Mende Kikakui\", sans-serif\";s:4:\"slug\";s:23:\"noto-sans-mende-kikakui\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx6aDJLAHer.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Mende Kikakui\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mende-kikakui/noto-sans-mende-kikakui-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mende-kikakui/noto-sans-mende-kikakui.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:981;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Meroitic\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Meroitic\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-meroitic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosansmeroitic/v18/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDhThTiKY9KQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Meroitic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meroitic/noto-sans-meroitic-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-meroitic/noto-sans-meroitic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:982;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Miao\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Miao\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-miao\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjlUYVslLhx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Miao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-miao/noto-sans-miao-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-miao/noto-sans-miao.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:983;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Modi\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Modi\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-modi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/notosansmodi/v23/pe03MIySN5pO62Z5YkFyT7jeav5vWVAgVol-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Modi\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-modi/noto-sans-modi-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-modi/noto-sans-modi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:984;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Mongolian\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Mongolian\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-mongolian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxL4g6-av1x0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Mongolian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mongolian/noto-sans-mongolian-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mongolian/noto-sans-mongolian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:985;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Mono\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Mono\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-mono\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansmono/v30/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49_XVEQQL8Y.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Mono\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mono/noto-sans-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:986;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Sans Mro\";s:10:\"fontFamily\";s:27:\"\"Noto Sans Mro\", sans-serif\";s:4:\"slug\";s:13:\"noto-sans-mro\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDnRtjkho4M.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Mro\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mro/noto-sans-mro-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-mro/noto-sans-mro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:987;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Multani\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Multani\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-multani\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1AxpfCs5Kos.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Multani\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-multani/noto-sans-multani-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-multani/noto-sans-multani.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:988;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Myanmar\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Myanmar\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-myanmar\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uQapkAC3AY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98E1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9ME1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0Enz3OU4o1AC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cE1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sE1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88E1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8ME1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cE1iEwLxR-r.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Myanmar\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-myanmar/noto-sans-myanmar.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:989;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Sans NKo\";s:10:\"fontFamily\";s:27:\"\"Noto Sans NKo\", sans-serif\";s:4:\"slug\";s:13:\"noto-sans-nko\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/notosansnko/v6/esDX31ZdNv-KYGGJpKGk2_RpMpWMHMLBrdA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans NKo\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko/noto-sans-nko-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko/noto-sans-nko.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:990;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Sans NKo Unjoined\";s:10:\"fontFamily\";s:36:\"\"Noto Sans NKo Unjoined\", sans-serif\";s:4:\"slug\";s:22:\"noto-sans-nko-unjoined\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansnkounjoined/v2/MCo_zBjx1d3VUhJFK9MYlNCXJ6VvqwGPz3szPOBB5nuzMdWs0rvF2gEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans NKo Unjoined\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko-unjoined/noto-sans-nko-unjoined-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansnkounjoined/v2/MCo_zBjx1d3VUhJFK9MYlNCXJ6VvqwGPz3szPOBB5nuzMdWs0rv32gEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans NKo Unjoined\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko-unjoined/noto-sans-nko-unjoined-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansnkounjoined/v2/MCo_zBjx1d3VUhJFK9MYlNCXJ6VvqwGPz3szPOBB5nuzMdWs0rsb3QEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans NKo Unjoined\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko-unjoined/noto-sans-nko-unjoined-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/notosansnkounjoined/v2/MCo_zBjx1d3VUhJFK9MYlNCXJ6VvqwGPz3szPOBB5nuzMdWs0rsi3QEKxf5wbh3T.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans NKo Unjoined\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko-unjoined/noto-sans-nko-unjoined-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nko-unjoined/noto-sans-nko-unjoined.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:991;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Nabataean\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Nabataean\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-nabataean\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosansnabataean/v16/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBd9hK8kMK4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Nabataean\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nabataean/noto-sans-nabataean-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nabataean/noto-sans-nabataean.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:992;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Nag Mundari\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Nag Mundari\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-nag-mundari\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUSA0whP19M.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Nag Mundari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUSA0whP19M.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Nag Mundari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUSA0whP19M.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Nag Mundari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUSA0whP19M.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Nag Mundari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-700-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nag-mundari/noto-sans-nag-mundari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:993;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Nandinagari\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Nandinagari\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-nandinagari\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/notosansnandinagari/v4/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVbpRXzC1KOw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Nandinagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nandinagari/noto-sans-nandinagari-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nandinagari/noto-sans-nandinagari.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:994;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans New Tai Lue\";s:10:\"fontFamily\";s:35:\"\"Noto Sans New Tai Lue\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-new-tai-lue\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnewtailue/v22/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUPghFPKzeY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans New Tai Lue\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnewtailue/v22/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUPghFPKzeY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans New Tai Lue\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnewtailue/v22/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUPghFPKzeY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans New Tai Lue\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notosansnewtailue/v22/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUPghFPKzeY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans New Tai Lue\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-700-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:995;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Newa\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Newa\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-newa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n6qN4R5lNU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Newa\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-newa/noto-sans-newa-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-newa/noto-sans-newa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:996;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Nushu\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Nushu\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-nushu\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFXVAMArZKqQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Nushu\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nushu/noto-sans-nushu-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-nushu/noto-sans-nushu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:997;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Ogham\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Ogham\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-ogham\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosansogham/v17/kmKlZqk1GBDGN0mY6k5lmEmww4hrsplaQxcoCA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Ogham\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ogham/noto-sans-ogham-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ogham/noto-sans-ogham.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:998;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Ol Chiki\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Ol Chiki\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-ol-chiki\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansolchiki/v29/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267c6gVrz5gQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ol Chiki\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansolchiki/v29/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267c6gVrz5gQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ol Chiki\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansolchiki/v29/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67c6gVrz5gQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ol Chiki\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansolchiki/v29/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67c6gVrz5gQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ol Chiki\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ol-chiki/noto-sans-ol-chiki.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:999;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Noto Sans Old Hungarian\";s:10:\"fontFamily\";s:37:\"\"Noto Sans Old Hungarian\", sans-serif\";s:4:\"slug\";s:23:\"noto-sans-old-hungarian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansoldhungarian/v18/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfmbg5nCYXt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Noto Sans Old Hungarian\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-hungarian/noto-sans-old-hungarian-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-hungarian/noto-sans-old-hungarian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1000;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Old Italic\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Old Italic\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-old-italic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansolditalic/v16/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlUdRhtCC4d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Old Italic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-italic/noto-sans-old-italic-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-italic/noto-sans-old-italic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1001;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:27:\"Noto Sans Old North Arabian\";s:10:\"fontFamily\";s:41:\"\"Noto Sans Old North Arabian\", sans-serif\";s:4:\"slug\";s:27:\"noto-sans-old-north-arabian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notosansoldnortharabian/v16/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQnEo_xw4ABw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:27:\"Noto Sans Old North Arabian\";s:7:\"preview\";s:113:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-north-arabian/noto-sans-old-north-arabian-400-normal.svg\";}}s:7:\"preview\";s:102:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-north-arabian/noto-sans-old-north-arabian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1002;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Old Permic\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Old Permic\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-old-permic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansoldpermic/v17/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdSgv_dKYB5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Old Permic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-permic/noto-sans-old-permic-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-permic/noto-sans-old-permic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1003;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Old Persian\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Old Persian\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-old-persian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/notosansoldpersian/v16/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_trelQfx9CjA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Old Persian\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-persian/noto-sans-old-persian-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-persian/noto-sans-old-persian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1004;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Old Sogdian\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Old Sogdian\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-old-sogdian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/notosansoldsogdian/v16/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7mOIqM-9uyg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Old Sogdian\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-sogdian/noto-sans-old-sogdian-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-sogdian/noto-sans-old-sogdian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1005;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:27:\"Noto Sans Old South Arabian\";s:10:\"fontFamily\";s:41:\"\"Noto Sans Old South Arabian\", sans-serif\";s:4:\"slug\";s:27:\"noto-sans-old-south-arabian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notosansoldsoutharabian/v16/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx0etDT9HwTA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:27:\"Noto Sans Old South Arabian\";s:7:\"preview\";s:113:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-south-arabian/noto-sans-old-south-arabian-400-normal.svg\";}}s:7:\"preview\";s:102:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-south-arabian/noto-sans-old-south-arabian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1006;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Old Turkic\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Old Turkic\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-old-turkic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosansoldturkic/v17/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2UjEw-Vyws.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Old Turkic\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-turkic/noto-sans-old-turkic-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-old-turkic/noto-sans-old-turkic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1007;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Oriya\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Oriya\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-oriya\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_Z6LhHBRe-.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Oriya\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-oriya/noto-sans-oriya.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1008;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Osage\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Osage\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-osage\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXQ1aSxkrMCQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Osage\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-osage/noto-sans-osage-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-osage/noto-sans-osage.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1009;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Osmanya\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Osmanya\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-osmanya\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6hR47NCV5Z.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Osmanya\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-osmanya/noto-sans-osmanya-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-osmanya/noto-sans-osmanya.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1010;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Sans Pahawh Hmong\";s:10:\"fontFamily\";s:36:\"\"Noto Sans Pahawh Hmong\", sans-serif\";s:4:\"slug\";s:22:\"noto-sans-pahawh-hmong\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzI_c48aMpM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Pahawh Hmong\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-pahawh-hmong/noto-sans-pahawh-hmong-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-pahawh-hmong/noto-sans-pahawh-hmong.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1011;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Palmyrene\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Palmyrene\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-palmyrene\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosanspalmyrene/v16/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPne5ZpdNtcA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Palmyrene\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-palmyrene/noto-sans-palmyrene-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-palmyrene/noto-sans-palmyrene.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1012;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Pau Cin Hau\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Pau Cin Hau\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-pau-cin-hau\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdiUWqKMxsKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Pau Cin Hau\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-pau-cin-hau/noto-sans-pau-cin-hau-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-pau-cin-hau/noto-sans-pau-cin-hau.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1013;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Phags Pa\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Phags Pa\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-phags-pa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkr0SsrvNXiA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Phags Pa\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-phags-pa/noto-sans-phags-pa-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-phags-pa/noto-sans-phags-pa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1014;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Phoenician\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Phoenician\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-phoenician\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notosansphoenician/v17/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Mot-p5561.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Phoenician\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-phoenician/noto-sans-phoenician-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-phoenician/noto-sans-phoenician.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1015;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Noto Sans Psalter Pahlavi\";s:10:\"fontFamily\";s:39:\"\"Noto Sans Psalter Pahlavi\", sans-serif\";s:4:\"slug\";s:25:\"noto-sans-psalter-pahlavi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanspsalterpahlavi/v16/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1GjKsUQBct4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Noto Sans Psalter Pahlavi\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-psalter-pahlavi/noto-sans-psalter-pahlavi-400-normal.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-psalter-pahlavi/noto-sans-psalter-pahlavi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1016;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Rejang\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Rejang\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-rejang\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosansrejang/v21/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Rejang\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-rejang/noto-sans-rejang-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-rejang/noto-sans-rejang.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1017;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Runic\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Runic\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-runic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosansrunic/v17/H4c_BXWPl9DZ0Xe_nHUaus7W68WWbhpvHtgIYg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Runic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-runic/noto-sans-runic-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-runic/noto-sans-runic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1018;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noto Sans SC\";s:10:\"fontFamily\";s:26:\"\"Noto Sans SC\", sans-serif\";s:4:\"slug\";s:12:\"noto-sans-sc\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG9_EnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG1_FnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG4HFnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG9_FnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG-3FnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaGwHCnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaGzjCnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG1_CnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG3bCnYlNbPzS5HE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans SC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sc/noto-sans-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1019;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Samaritan\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Samaritan\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-samaritan\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notosanssamaritan/v16/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUotjNlOVMzQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Samaritan\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-samaritan/noto-sans-samaritan-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-samaritan/noto-sans-samaritan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1020;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Sans Saurashtra\";s:10:\"fontFamily\";s:34:\"\"Noto Sans Saurashtra\", sans-serif\";s:4:\"slug\";s:20:\"noto-sans-saurashtra\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notosanssaurashtra/v23/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9nYjhPTSIx9.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Sans Saurashtra\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-saurashtra/noto-sans-saurashtra-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-saurashtra/noto-sans-saurashtra.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1021;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Sharada\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Sharada\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-sharada\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXOPOwr4H8a.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sharada\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sharada/noto-sans-sharada-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sharada/noto-sans-sharada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1022;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Shavian\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Shavian\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-shavian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosansshavian/v17/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFVSplv2Cwg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Shavian\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-shavian/noto-sans-shavian-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-shavian/noto-sans-shavian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1023;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Siddham\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Siddham\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-siddham\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanssiddham/v20/OZpZg-FwqiNLe9PELUikxTWDoCCeGqnYk3Ic92ZH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Siddham\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-siddham/noto-sans-siddham-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-siddham/noto-sans-siddham.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1024;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans SignWriting\";s:10:\"fontFamily\";s:35:\"\"Noto Sans SignWriting\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-signwriting\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/notosanssignwriting/v4/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUFFCARYQemg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans SignWriting\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-signwriting/noto-sans-signwriting-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-signwriting/noto-sans-signwriting.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1025;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Sinhala\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Sinhala\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-sinhala\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5l0LpJwbQRM.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sinhala\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sinhala/noto-sans-sinhala.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1026;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Sogdian\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Sogdian\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-sogdian\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanssogdian/v16/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo-7Pm6KHidM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Sogdian\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sogdian/noto-sans-sogdian-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sogdian/noto-sans-sogdian.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1027;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Sans Sora Sompeng\";s:10:\"fontFamily\";s:36:\"\"Noto Sans Sora Sompeng\", sans-serif\";s:4:\"slug\";s:22:\"noto-sans-sora-sompeng\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DsZXJQd4Mu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Sora Sompeng\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DsZXJQd4Mu.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Sora Sompeng\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDsZXJQd4Mu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Sora Sompeng\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDsZXJQd4Mu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Sora Sompeng\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1028;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Soyombo\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Soyombo\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-soyombo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanssoyombo/v17/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FuIFOcK25W.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Soyombo\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-soyombo/noto-sans-soyombo-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-soyombo/noto-sans-soyombo.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1029;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Sundanese\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Sundanese\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-sundanese\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHHizv7fQES.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Sundanese\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sundanese/noto-sans-sundanese-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHHizv7fQES.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Sundanese\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sundanese/noto-sans-sundanese-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HHizv7fQES.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Sundanese\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sundanese/noto-sans-sundanese-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HHizv7fQES.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Sundanese\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sundanese/noto-sans-sundanese-700-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-sundanese/noto-sans-sundanese.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1030;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Sans Syloti Nagri\";s:10:\"fontFamily\";s:36:\"\"Noto Sans Syloti Nagri\", sans-serif\";s:4:\"slug\";s:22:\"noto-sans-syloti-nagri\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVLxN87gsj0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Sans Syloti Nagri\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syloti-nagri/noto-sans-syloti-nagri-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syloti-nagri/noto-sans-syloti-nagri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1031;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Symbols\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Symbols\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-symbols\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Qggb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notosanssymbols/v41/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1Aggb_VFRkzrbQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Symbols\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols/noto-sans-symbols.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1032;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Sans Symbols 2\";s:10:\"fontFamily\";s:33:\"\"Noto Sans Symbols 2\", sans-serif\";s:4:\"slug\";s:19:\"noto-sans-symbols-2\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/notosanssymbols2/v23/I_uyMoGduATTei9eI8daxVHDyfisHr71ypbqfX71-AI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Sans Symbols 2\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols-2/noto-sans-symbols-2-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-symbols-2/noto-sans-symbols-2.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1033;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Syriac\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Syriac\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-syriac\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aMyZfUL_FC.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Syriac\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac/noto-sans-syriac.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1034;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Noto Sans Syriac Eastern\";s:10:\"fontFamily\";s:38:\"\"Noto Sans Syriac Eastern\", sans-serif\";s:4:\"slug\";s:24:\"noto-sans-syriac-eastern\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPi-eszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPq-fszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPnGfszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPi-fszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPh2fszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPvGYszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPsiYszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPq-YszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPoaYszWL5ep1QPQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Sans Syriac Eastern\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-900-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1035;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noto Sans TC\";s:10:\"fontFamily\";s:26:\"\"Noto Sans TC\", sans-serif\";s:4:\"slug\";s:12:\"noto-sans-tc\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz76Cz_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7yCy_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7_6y_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz76Cy_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz75Ky_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7361_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz70e1_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7yC1_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7wm1_C9Otma3uNQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans TC\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tc/noto-sans-tc.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1036;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Tagalog\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Tagalog\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-tagalog\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanstagalog/v22/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEFA8jHexnL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Tagalog\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tagalog/noto-sans-tagalog-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tagalog/noto-sans-tagalog.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1037;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Tagbanwa\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Tagbanwa\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-tagbanwa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZQzQEaYpGoQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tagbanwa\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tagbanwa/noto-sans-tagbanwa-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tagbanwa/noto-sans-tagbanwa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1038;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Tai Le\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Tai Le\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-tai-le\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58te1W77HtMo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Tai Le\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-le/noto-sans-tai-le-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-le/noto-sans-tai-le.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1039;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Tai Tham\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Tai Tham\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-tai-tham\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanstaitham/v20/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPg-uyaRGKMw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tai Tham\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-tham/noto-sans-tai-tham-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanstaitham/v20/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPg-uyaRGKMw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tai Tham\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-tham/noto-sans-tai-tham-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanstaitham/v20/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPg-uyaRGKMw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tai Tham\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-tham/noto-sans-tai-tham-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosanstaitham/v20/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPg-uyaRGKMw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tai Tham\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-tham/noto-sans-tai-tham-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-tham/noto-sans-tai-tham.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1040;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Tai Viet\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Tai Viet\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-tai-viet\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notosanstaiviet/v19/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr7o4fWsRO9w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tai Viet\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-viet/noto-sans-tai-viet-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tai-viet/noto-sans-tai-viet.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1041;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Takri\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Takri\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-takri\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notosanstakri/v24/TuGJUVpzXI5FBtUq5a8bnKIOdTwQMe_W3khJXg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Takri\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-takri/noto-sans-takri-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-takri/noto-sans-takri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1042;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Sans Tamil\";s:10:\"fontFamily\";s:29:\"\"Noto Sans Tamil\", sans-serif\";s:4:\"slug\";s:15:\"noto-sans-tamil\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0UqKDt_EvT.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Sans Tamil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil/noto-sans-tamil.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1043;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Noto Sans Tamil Supplement\";s:10:\"fontFamily\";s:40:\"\"Noto Sans Tamil Supplement\", sans-serif\";s:4:\"slug\";s:26:\"noto-sans-tamil-supplement\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanstamilsupplement/v21/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vpAeMkeq1x.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Noto Sans Tamil Supplement\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil-supplement/noto-sans-tamil-supplement-400-normal.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tamil-supplement/noto-sans-tamil-supplement.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1044;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Tangsa\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Tangsa\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-tangsa\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notosanstangsa/v6/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoUYdplyJDA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Tangsa\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tangsa/noto-sans-tangsa-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notosanstangsa/v6/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoUYdplyJDA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Tangsa\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tangsa/noto-sans-tangsa-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notosanstangsa/v6/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoUYdplyJDA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Tangsa\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tangsa/noto-sans-tangsa-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notosanstangsa/v6/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoUYdplyJDA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Tangsa\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tangsa/noto-sans-tangsa-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tangsa/noto-sans-tangsa.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1045;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Telugu\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Telugu\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-telugu\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notosanstelugu/v26/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqREbf-3v37w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Telugu\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-telugu/noto-sans-telugu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1046;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Thaana\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Thaana\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-thaana\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notosansthaana/v24/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLknu4-tbNu.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Thaana\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thaana/noto-sans-thaana.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1047;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Sans Thai\";s:10:\"fontFamily\";s:28:\"\"Noto Sans Thai\", sans-serif\";s:4:\"slug\";s:14:\"noto-sans-thai\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notosansthai/v25/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzR-QRvzzXg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Sans Thai\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai/noto-sans-thai.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1048;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Thai Looped\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Thai Looped\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-thai-looped\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AdeCT_Wfd1.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gPqocWiHvWQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4VwrzUO5sKA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Thai Looped\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped-900-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-thai-looped/noto-sans-thai-looped.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1049;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Tifinagh\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Tifinagh\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-tifinagh\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosanstifinagh/v20/I_uzMoCduATTei9eI8dawkHIwvmhCvbn77nEcXfs4Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Tifinagh\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tifinagh/noto-sans-tifinagh-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tifinagh/noto-sans-tifinagh.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1050;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Sans Tirhuta\";s:10:\"fontFamily\";s:31:\"\"Noto Sans Tirhuta\", sans-serif\";s:4:\"slug\";s:17:\"noto-sans-tirhuta\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notosanstirhuta/v16/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uDUBsTrn5P.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Sans Tirhuta\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tirhuta/noto-sans-tirhuta-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-tirhuta/noto-sans-tirhuta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1051;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Ugaritic\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Ugaritic\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-ugaritic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notosansugaritic/v16/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkNxoIkiazfg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Ugaritic\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ugaritic/noto-sans-ugaritic-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-ugaritic/noto-sans-ugaritic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1052;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Sans Vai\";s:10:\"fontFamily\";s:27:\"\"Noto Sans Vai\", sans-serif\";s:4:\"slug\";s:13:\"noto-sans-vai\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMHsDIRSfr0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Sans Vai\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vai/noto-sans-vai-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vai/noto-sans-vai.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1053;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Sans Vithkuqi\";s:10:\"fontFamily\";s:32:\"\"Noto Sans Vithkuqi\", sans-serif\";s:4:\"slug\";s:18:\"noto-sans-vithkuqi\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnva5SgKY7vmn0BLE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Vithkuqi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnvZxSgKY7vmn0BLE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Vithkuqi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnvXBVgKY7vmn0BLE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Vithkuqi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnvUlVgKY7vmn0BLE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Sans Vithkuqi\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-700-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-vithkuqi/noto-sans-vithkuqi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1054;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Sans Wancho\";s:10:\"fontFamily\";s:30:\"\"Noto Sans Wancho\", sans-serif\";s:4:\"slug\";s:16:\"noto-sans-wancho\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAbopiRfKp8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Sans Wancho\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-wancho/noto-sans-wancho-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-wancho/noto-sans-wancho.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1055;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Sans Warang Citi\";s:10:\"fontFamily\";s:35:\"\"Noto Sans Warang Citi\", sans-serif\";s:4:\"slug\";s:21:\"noto-sans-warang-citi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRoOVCCXzdgA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Sans Warang Citi\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-warang-citi/noto-sans-warang-citi-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-warang-citi/noto-sans-warang-citi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1056;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Noto Sans Yi\";s:10:\"fontFamily\";s:26:\"\"Noto Sans Yi\", sans-serif\";s:4:\"slug\";s:12:\"noto-sans-yi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apwFDJNVgSNg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Noto Sans Yi\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-yi/noto-sans-yi-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-yi/noto-sans-yi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1057;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Noto Sans Zanabazar Square\";s:10:\"fontFamily\";s:40:\"\"Noto Sans Zanabazar Square\", sans-serif\";s:4:\"slug\";s:26:\"noto-sans-zanabazar-square\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notosanszanabazarsquare/v19/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJ0OCEgN0Gc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Noto Sans Zanabazar Square\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-zanabazar-square/noto-sans-zanabazar-square-400-normal.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/noto-sans-zanabazar-square/noto-sans-zanabazar-square.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1058;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Noto Serif\";s:10:\"fontFamily\";s:19:\"\"Noto Serif\", serif\";s:4:\"slug\";s:10:\"noto-serif\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFGjxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFCjxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZ9lCjxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCjxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZmlCjxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZdlejxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1ejxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFejxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserif/v23/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZAVejxc0Lhq_Szw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLgscKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLg8cKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBMVg8cKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLg8cKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBN5g8cKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOVhMcKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOshMcKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLhMcKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserif/v23/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPihMcKpKrCzyUi.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Noto Serif\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif-900-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/noto-serif/noto-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1059;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Serif Ahom\";s:10:\"fontFamily\";s:24:\"\"Noto Serif Ahom\", serif\";s:4:\"slug\";s:15:\"noto-serif-ahom\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/notoserifahom/v20/FeVIS0hfp6cprmEUffAW_fUL_AN-x-YrPFiwaw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Ahom\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ahom/noto-serif-ahom-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ahom/noto-serif-ahom.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1060;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Armenian\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Armenian\", serif\";s:4:\"slug\";s:19:\"noto-serif-armenian\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8Obw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8Kbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8Kbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8Wbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifarmenian/v27/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbw_XagGdkbg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Armenian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-armenian/noto-serif-armenian.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1061;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Balinese\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Balinese\", serif\";s:4:\"slug\";s:19:\"noto-serif-balinese\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRb0JdhapcUU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Balinese\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-balinese/noto-serif-balinese-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-balinese/noto-serif-balinese.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1062;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Bengali\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Bengali\", serif\";s:4:\"slug\";s:18:\"noto-serif-bengali\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqi4LjQH8yD.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Bengali\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-bengali/noto-serif-bengali.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1063;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Serif Devanagari\";s:10:\"fontFamily\";s:30:\"\"Noto Serif Devanagari\", serif\";s:4:\"slug\";s:21:\"noto-serif-devanagari\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:138:\"https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-CMUe1u_dv.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Devanagari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari-900-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-devanagari/noto-serif-devanagari.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1064;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Display\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Display\", serif\";s:4:\"slug\";s:18:\"noto-serif-display\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgPaDU9hvzC.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjQfg-zCmf4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:18:\"Noto Serif Display\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display-900-italic.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-display/noto-serif-display.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1065;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Serif Dogra\";s:10:\"fontFamily\";s:25:\"\"Noto Serif Dogra\", serif\";s:4:\"slug\";s:16:\"noto-serif-dogra\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/notoserifdogra/v23/MQpP-XquKMC7ROPP3QOOlm7xPu3fGyu3IbPzkns.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Dogra\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-dogra/noto-serif-dogra-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-dogra/noto-serif-dogra.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1066;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Ethiopic\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Ethiopic\", serif\";s:4:\"slug\";s:19:\"noto-serif-ethiopic\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifethiopic/v30/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjlKO9UVLyiw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Ethiopic\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ethiopic/noto-serif-ethiopic.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1067;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Georgian\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Georgian\", serif\";s:4:\"slug\";s:19:\"noto-serif-georgian\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:134:\"https://fonts.gstatic.com/s/notoserifgeorgian/v26/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fcjTw-FgZxQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Georgian\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-georgian/noto-serif-georgian.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1068;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Grantha\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Grantha\", serif\";s:4:\"slug\";s:18:\"noto-serif-grantha\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqEUNLR7fHGw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Grantha\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-grantha/noto-serif-grantha-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-grantha/noto-serif-grantha.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1069;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Gujarati\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Gujarati\", serif\";s:4:\"slug\";s:19:\"noto-serif-gujarati\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgujarati/v27/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zrM1Kf-OJu.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gujarati\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gujarati/noto-serif-gujarati.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1070;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Gurmukhi\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Gurmukhi\", serif\";s:4:\"slug\";s:19:\"noto-serif-gurmukhi\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTImqVU7y6l.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Gurmukhi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-gurmukhi/noto-serif-gurmukhi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1071;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Serif HK\";s:10:\"fontFamily\";s:22:\"\"Noto Serif HK\", serif\";s:4:\"slug\";s:13:\"noto-serif-hk\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRjV9Su1M6i.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif HK\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hk/noto-serif-hk.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1072;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Serif Hebrew\";s:10:\"fontFamily\";s:26:\"\"Noto Serif Hebrew\", serif\";s:4:\"slug\";s:17:\"noto-serif-hebrew\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAGo_vlQxz24.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Hebrew\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-hebrew/noto-serif-hebrew.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1073;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Serif JP\";s:10:\"fontFamily\";s:22:\"\"Noto Serif JP\", serif\";s:4:\"slug\";s:13:\"noto-serif-jp\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRksfU8fEwb0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRksfU8fEwb0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNukYkY0T84.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRksfU8fEwb0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRksfU8fEwb0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRksfU8fEwb0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRksfU8fEwb0.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif JP\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-jp/noto-serif-jp.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1074;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Serif KR\";s:10:\"fontFamily\";s:22:\"\"Noto Serif KR\", serif\";s:4:\"slug\";s:13:\"noto-serif-kr\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O5ZNH1ahck.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O5ZNH1ahck.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduVp1ONyKHQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O5ZNH1ahck.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O5ZNH1ahck.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O5ZNH1ahck.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O5ZNH1ahck.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif KR\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kr/noto-serif-kr.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1075;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Kannada\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Kannada\", serif\";s:4:\"slug\";s:18:\"noto-serif-kannada\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifkannada/v27/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceFJ71svgcI.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Kannada\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-kannada/noto-serif-kannada.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1076;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:30:\"Noto Serif Khitan Small Script\";s:10:\"fontFamily\";s:39:\"\"Noto Serif Khitan Small Script\", serif\";s:4:\"slug\";s:30:\"noto-serif-khitan-small-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoserifkhitansmallscript/v4/jizzRFVKsm4Bt9PrbSzC4KLlQUF5lRJg5j-l5PvyhfTdd4TsYslb39iddA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:30:\"Noto Serif Khitan Small Script\";s:7:\"preview\";s:119:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khitan-small-script/noto-serif-khitan-small-script-400-normal.svg\";}}s:7:\"preview\";s:108:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khitan-small-script/noto-serif-khitan-small-script.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1077;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Serif Khmer\";s:10:\"fontFamily\";s:25:\"\"Noto Serif Khmer\", serif\";s:4:\"slug\";s:16:\"noto-serif-khmer\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoserifkhmer/v25/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwWUZK9Xo4xg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Khmer\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer-900-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khmer/noto-serif-khmer.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1078;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Serif Khojki\";s:10:\"fontFamily\";s:26:\"\"Noto Serif Khojki\", serif\";s:4:\"slug\";s:17:\"noto-serif-khojki\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifkhojki/v10/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvzJ0Qtc5HAQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Khojki\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khojki/noto-serif-khojki-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifkhojki/v10/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvzJ0Qtc5HAQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Khojki\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khojki/noto-serif-khojki-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifkhojki/v10/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vzJ0Qtc5HAQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Khojki\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khojki/noto-serif-khojki-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifkhojki/v10/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vzJ0Qtc5HAQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Khojki\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khojki/noto-serif-khojki-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-khojki/noto-serif-khojki.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1079;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Noto Serif Lao\";s:10:\"fontFamily\";s:23:\"\"Noto Serif Lao\", serif\";s:4:\"slug\";s:14:\"noto-serif-lao\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:122:\"https://fonts.gstatic.com/s/notoseriflao/v24/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvajlmyhHHQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Noto Serif Lao\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-lao/noto-serif-lao.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1080;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Makasar\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Makasar\", serif\";s:4:\"slug\";s:18:\"noto-serif-makasar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/notoserifmakasar/v1/memjYbqtyH-NiZpFH_9zcvB_PqkfY9S7ioHTVSmevw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Makasar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-makasar/noto-serif-makasar-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-makasar/noto-serif-makasar.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1081;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Noto Serif Malayalam\";s:10:\"fontFamily\";s:29:\"\"Noto Serif Malayalam\", serif\";s:4:\"slug\";s:20:\"noto-serif-malayalam\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:119:\"https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfmFwHpQVySg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Noto Serif Malayalam\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam-900-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-malayalam/noto-serif-malayalam.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1082;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Myanmar\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Myanmar\", serif\";s:4:\"slug\";s:18:\"noto-serif-myanmar\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDpU9X6RPzQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1oRrocdDqRA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMfPv2TeXJng.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Myanmar\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-myanmar/noto-serif-myanmar.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1083;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif NP Hmong\";s:10:\"fontFamily\";s:28:\"\"Noto Serif NP Hmong\", serif\";s:4:\"slug\";s:19:\"noto-serif-np-hmong\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLs3u0rVO-d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif NP Hmong\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-np-hmong/noto-serif-np-hmong-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLs3u0rVO-d.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif NP Hmong\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-np-hmong/noto-serif-np-hmong-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Ls3u0rVO-d.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif NP Hmong\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-np-hmong/noto-serif-np-hmong-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Ls3u0rVO-d.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif NP Hmong\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-np-hmong/noto-serif-np-hmong-700-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-np-hmong/noto-serif-np-hmong.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1084;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Noto Serif Old Uyghur\";s:10:\"fontFamily\";s:30:\"\"Noto Serif Old Uyghur\", serif\";s:4:\"slug\";s:21:\"noto-serif-old-uyghur\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/notoserifolduyghur/v3/v6-KGZbLJFKIhClqUYqXDiGnrVoFRCW6JdwnL-meF2yVgA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Noto Serif Old Uyghur\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-old-uyghur/noto-serif-old-uyghur-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-old-uyghur/noto-serif-old-uyghur.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1085;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Serif Oriya\";s:10:\"fontFamily\";s:25:\"\"Noto Serif Oriya\", serif\";s:4:\"slug\";s:16:\"noto-serif-oriya\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy7v039MF1j.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Oriya\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-oriya/noto-serif-oriya-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy7v039MF1j.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Oriya\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-oriya/noto-serif-oriya-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y7v039MF1j.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Oriya\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-oriya/noto-serif-oriya-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y7v039MF1j.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Oriya\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-oriya/noto-serif-oriya-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-oriya/noto-serif-oriya.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1086;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Noto Serif Ottoman Siyaq\";s:10:\"fontFamily\";s:33:\"\"Noto Serif Ottoman Siyaq\", serif\";s:4:\"slug\";s:24:\"noto-serif-ottoman-siyaq\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/notoserifottomansiyaq/v2/fC1yPZ9IYnzRhTrrc4s8cSvYI0eozzaFOQ01qoHLI7gA00kAdA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Noto Serif Ottoman Siyaq\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ottoman-siyaq/noto-serif-ottoman-siyaq-400-normal.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-ottoman-siyaq/noto-serif-ottoman-siyaq.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1087;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Serif SC\";s:10:\"fontFamily\";s:22:\"\"Noto Serif SC\", serif\";s:4:\"slug\";s:13:\"noto-serif-sc\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzVBEtERe7U.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzVBEtERe7U.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqOcbzhqDtg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzVBEtERe7U.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzVBEtERe7U.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzVBEtERe7U.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzVBEtERe7U.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif SC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sc/noto-serif-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1088;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Sinhala\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Sinhala\", serif\";s:4:\"slug\";s:18:\"noto-serif-sinhala\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMpxaLRn3W-.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Sinhala\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-sinhala/noto-serif-sinhala.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1089;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Noto Serif TC\";s:10:\"fontFamily\";s:22:\"\"Noto Serif TC\", serif\";s:4:\"slug\";s:13:\"noto-serif-tc\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbXxGTsoOAX4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbXxGTsoOAX4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnIESXFtUsM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbXxGTsoOAX4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbXxGTsoOAX4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbXxGTsoOAX4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbXxGTsoOAX4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Noto Serif TC\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tc/noto-serif-tc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1090;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Noto Serif Tamil\";s:10:\"fontFamily\";s:25:\"\"Noto Serif Tamil\", serif\";s:4:\"slug\";s:16:\"noto-serif-tamil\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR9fz3v8Etew.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svb2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_b2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_b2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_b2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_b2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPb2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPb2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPb2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPb2ncQ9e3wx.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Noto Serif Tamil\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil-900-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tamil/noto-serif-tamil.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1091;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Serif Tangut\";s:10:\"fontFamily\";s:26:\"\"Noto Serif Tangut\", serif\";s:4:\"slug\";s:17:\"noto-serif-tangut\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/notoseriftangut/v16/xn76YGc72GKoTvER4Gn3b4m9Ern7Em4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Tangut\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tangut/noto-serif-tangut-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tangut/noto-serif-tangut.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1092;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Serif Telugu\";s:10:\"fontFamily\";s:26:\"\"Noto Serif Telugu\", serif\";s:4:\"slug\";s:17:\"noto-serif-telugu\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoseriftelugu/v26/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewvI2fjgrZYA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Telugu\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu-900-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-telugu/noto-serif-telugu.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1093;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Serif Thai\";s:10:\"fontFamily\";s:24:\"\"Noto Serif Thai\", serif\";s:4:\"slug\";s:15:\"noto-serif-thai\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/notoserifthai/v24/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORUCmsdu0Qx.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Thai\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-thai/noto-serif-thai.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1094;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Noto Serif Tibetan\";s:10:\"fontFamily\";s:27:\"\"Noto Serif Tibetan\", serif\";s:4:\"slug\";s:18:\"noto-serif-tibetan\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPSvrdSy_32c.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Noto Serif Tibetan\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan-900-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-tibetan/noto-serif-tibetan.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1095;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Noto Serif Toto\";s:10:\"fontFamily\";s:24:\"\"Noto Serif Toto\", serif\";s:4:\"slug\";s:15:\"noto-serif-toto\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-Oj55vdNug.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Toto\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-toto/noto-serif-toto-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-Oj55vdNug.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Toto\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-toto/noto-serif-toto-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-Oj55vdNug.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Toto\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-toto/noto-serif-toto-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-Oj55vdNug.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Noto Serif Toto\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-toto/noto-serif-toto-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-toto/noto-serif-toto.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1096;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Noto Serif Vithkuqi\";s:10:\"fontFamily\";s:28:\"\"Noto Serif Vithkuqi\", serif\";s:4:\"slug\";s:19:\"noto-serif-vithkuqi\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRWMdW2Hqy9A4teH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Vithkuqi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRW-dW2Hqy9A4teH.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Vithkuqi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRVScm2Hqy9A4teH.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Vithkuqi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRVrcm2Hqy9A4teH.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Noto Serif Vithkuqi\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-700-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-vithkuqi/noto-serif-vithkuqi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1097;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Noto Serif Yezidi\";s:10:\"fontFamily\";s:26:\"\"Noto Serif Yezidi\", serif\";s:4:\"slug\";s:17:\"noto-serif-yezidi\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkq1GJgmVCqg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Yezidi\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-yezidi/noto-serif-yezidi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkq1GJgmVCqg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Yezidi\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-yezidi/noto-serif-yezidi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkq1GJgmVCqg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Yezidi\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-yezidi/noto-serif-yezidi-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkq1GJgmVCqg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Noto Serif Yezidi\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-yezidi/noto-serif-yezidi-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/noto-serif-yezidi/noto-serif-yezidi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1098;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Noto Traditional Nushu\";s:10:\"fontFamily\";s:36:\"\"Noto Traditional Nushu\", sans-serif\";s:4:\"slug\";s:22:\"noto-traditional-nushu\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:123:\"https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXvy1tnKa7QoqirI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Traditional Nushu\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-traditional-nushu/noto-traditional-nushu-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:123:\"https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXus1tnKa7QoqirI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Traditional Nushu\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-traditional-nushu/noto-traditional-nushu-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:123:\"https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXue1tnKa7QoqirI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Traditional Nushu\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-traditional-nushu/noto-traditional-nushu-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:123:\"https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXty0dnKa7QoqirI.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Traditional Nushu\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-traditional-nushu/noto-traditional-nushu-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:123:\"https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXtL0dnKa7QoqirI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Noto Traditional Nushu\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/noto-traditional-nushu/noto-traditional-nushu-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/noto-traditional-nushu/noto-traditional-nushu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1099;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Nova Cut\";s:10:\"fontFamily\";s:21:\"\"Nova Cut\", system-ui\";s:4:\"slug\";s:8:\"nova-cut\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxKKTM1K9nz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Nova Cut\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/nova-cut/nova-cut-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/nova-cut/nova-cut.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1100;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nova Flat\";s:10:\"fontFamily\";s:22:\"\"Nova Flat\", system-ui\";s:4:\"slug\";s:9:\"nova-flat\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEvCtkm20oJA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nova Flat\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nova-flat/nova-flat-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nova-flat/nova-flat.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1101;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nova Mono\";s:10:\"fontFamily\";s:22:\"\"Nova Mono\", monospace\";s:4:\"slug\";s:9:\"nova-mono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/novamono/v20/Cn-0JtiGWQ5Ajb--MRKfZWxYrdM9Sg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nova Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nova-mono/nova-mono-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nova-mono/nova-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1102;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nova Oval\";s:10:\"fontFamily\";s:22:\"\"Nova Oval\", system-ui\";s:4:\"slug\";s:9:\"nova-oval\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCNI-h3cWkWg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nova Oval\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nova-oval/nova-oval-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nova-oval/nova-oval.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1103;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Nova Round\";s:10:\"fontFamily\";s:23:\"\"Nova Round\", system-ui\";s:4:\"slug\";s:10:\"nova-round\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYLeeetYEBc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Nova Round\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/nova-round/nova-round-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/nova-round/nova-round.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1104;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Nova Script\";s:10:\"fontFamily\";s:24:\"\"Nova Script\", system-ui\";s:4:\"slug\";s:11:\"nova-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQIEl0O0kEx.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nova Script\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nova-script/nova-script-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/nova-script/nova-script.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1105;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nova Slim\";s:10:\"fontFamily\";s:22:\"\"Nova Slim\", system-ui\";s:4:\"slug\";s:9:\"nova-slim\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-zcOInrib9Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nova Slim\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nova-slim/nova-slim-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nova-slim/nova-slim.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1106;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Nova Square\";s:10:\"fontFamily\";s:24:\"\"Nova Square\", system-ui\";s:4:\"slug\";s:11:\"nova-square\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/novasquare/v24/RrQUbo9-9DV7b06QHgSWsZhFRYMgGtWA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nova Square\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nova-square/nova-square-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/nova-square/nova-square.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1107;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Numans\";s:10:\"fontFamily\";s:18:\"Numans, sans-serif\";s:4:\"slug\";s:6:\"numans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IZBggiHVqaQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Numans\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/numans/numans-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/numans/numans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1108;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Nunito\";s:10:\"fontFamily\";s:18:\"Nunito, sans-serif\";s:4:\"slug\";s:6:\"nunito\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTY9jo7eTWk.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3j6zbXWnoeg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Nunito\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/nunito/nunito.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1109;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Nunito Sans\";s:10:\"fontFamily\";s:25:\"\"Nunito Sans\", sans-serif\";s:4:\"slug\";s:11:\"nunito-sans\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilnsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClnsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilnsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClnsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5nsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5nsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5nsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:151:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5nsV8kA_Ykqw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUlIfM0qxVd.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Nunito Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/nunito-sans/nunito-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1110;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Nuosu SIL\";s:10:\"fontFamily\";s:23:\"\"Nuosu SIL\", sans-serif\";s:4:\"slug\";s:9:\"nuosu-sil\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/nuosusil/v10/8vIK7wM3wmRn_kc4uAjeEWxbO_zo-w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Nuosu SIL\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/nuosu-sil/nuosu-sil-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/nuosu-sil/nuosu-sil.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1111;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Odibee Sans\";s:10:\"fontFamily\";s:24:\"\"Odibee Sans\", system-ui\";s:4:\"slug\";s:11:\"odibee-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/odibeesans/v18/neIPzCSooYAho6WvjeToRYk3epH9qGsf.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Odibee Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/odibee-sans/odibee-sans-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/odibee-sans/odibee-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1112;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Odor Mean Chey\";s:10:\"fontFamily\";s:23:\"\"Odor Mean Chey\", serif\";s:4:\"slug\";s:14:\"odor-mean-chey\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrd2zqUKafv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Odor Mean Chey\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/odor-mean-chey/odor-mean-chey-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/odor-mean-chey/odor-mean-chey.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1113;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Offside\";s:10:\"fontFamily\";s:18:\"Offside, system-ui\";s:4:\"slug\";s:7:\"offside\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/offside/v24/HI_KiYMWKa9QrAykQ5TiRp-dhpQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Offside\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/offside/offside-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/offside/offside.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1114;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:2:\"Oi\";s:10:\"fontFamily\";s:13:\"Oi, system-ui\";s:4:\"slug\";s:2:\"oi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:61:\"https://fonts.gstatic.com/s/oi/v19/w8gXH2EuRqtfut6yjBOG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:2:\"Oi\";s:7:\"preview\";s:63:\"https://s.w.org/images/fonts/17.7/previews/oi/oi-400-normal.svg\";}}s:7:\"preview\";s:52:\"https://s.w.org/images/fonts/17.7/previews/oi/oi.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1115;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Old Standard TT\";s:10:\"fontFamily\";s:24:\"\"Old Standard TT\", serif\";s:4:\"slug\";s:15:\"old-standard-tt\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVuqFC5RHdCZg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Old Standard TT\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/old-standard-tt/old-standard-tt-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer1q4ZnJSZtQG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Old Standard TT\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/old-standard-tt/old-standard-tt-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/oldstandardtt/v20/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dSVxeb80flQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Old Standard TT\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/old-standard-tt/old-standard-tt-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/old-standard-tt/old-standard-tt.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1116;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Oldenburg\";s:10:\"fontFamily\";s:20:\"Oldenburg, system-ui\";s:4:\"slug\";s:9:\"oldenburg\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/oldenburg/v22/fC1jPY5JYWzbywv7c4V6VE6oXyndrw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Oldenburg\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/oldenburg/oldenburg-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/oldenburg/oldenburg.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1117;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Ole\";s:10:\"fontFamily\";s:12:\"Ole, cursive\";s:4:\"slug\";s:3:\"ole\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:63:\"https://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd88Pw69qJ_ew.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Ole\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/ole/ole-400-normal.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/ole/ole.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1118;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Oleo Script\";s:10:\"fontFamily\";s:24:\"\"Oleo Script\", system-ui\";s:4:\"slug\";s:11:\"oleo-script\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhfsU7Q8Cad.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Oleo Script\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/oleo-script/oleo-script-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrd2zqUKafv.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Oleo Script\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/oleo-script/oleo-script-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/oleo-script/oleo-script.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1119;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Oleo Script Swash Caps\";s:10:\"fontFamily\";s:35:\"\"Oleo Script Swash Caps\", system-ui\";s:4:\"slug\";s:22:\"oleo-script-swash-caps\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMX-uSY0Hg90.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Oleo Script Swash Caps\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/oleo-script-swash-caps/oleo-script-swash-caps-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYAsn9T5dt0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Oleo Script Swash Caps\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/oleo-script-swash-caps/oleo-script-swash-caps-700-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/oleo-script-swash-caps/oleo-script-swash-caps.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1120;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Onest\";s:10:\"fontFamily\";s:17:\"Onest, sans-serif\";s:4:\"slug\";s:5:\"onest\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R6ZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhdR-ZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhqx-ZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhKxiZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhEhiZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhdRiZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhXBiZtxFMQWXgSQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Onest\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/onest/onest-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/onest/onest.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1121;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Oooh Baby\";s:10:\"fontFamily\";s:20:\"\"Oooh Baby\", cursive\";s:4:\"slug\";s:9:\"oooh-baby\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDam-4C7wFZQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Oooh Baby\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/oooh-baby/oooh-baby-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/oooh-baby/oooh-baby.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1122;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Open Sans\";s:10:\"fontFamily\";s:23:\"\"Open Sans\", sans-serif\";s:4:\"slug\";s:9:\"open-sans\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4iY1M2xLER.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4iY1M2xLER.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4iY1M2xLER.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4iY1M2xLER.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVIUwaERZjA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-300-italic.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVIUwaERZjA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVIUwaERZjA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-500-italic.svg\";}i:9;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVIUwaERZjA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVIUwaERZjA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-700-italic.svg\";}i:11;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVIUwaERZjA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Open Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans-800-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/open-sans/open-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1123;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Oranienbaum\";s:10:\"fontFamily\";s:18:\"Oranienbaum, serif\";s:4:\"slug\";s:11:\"oranienbaum\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zi7kz3dpHc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Oranienbaum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/oranienbaum/oranienbaum-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/oranienbaum/oranienbaum.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1124;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Orbit\";s:10:\"fontFamily\";s:17:\"Orbit, sans-serif\";s:4:\"slug\";s:5:\"orbit\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/orbit/v1/_LOCmz7I-uHd2mjBeqciRwRm.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Orbit\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/orbit/orbit-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/orbit/orbit.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1125;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Orbitron\";s:10:\"fontFamily\";s:20:\"Orbitron, sans-serif\";s:4:\"slug\";s:8:\"orbitron\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xo2IyXjU1pg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Orbitron\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xo2IyXjU1pg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Orbitron\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxo2IyXjU1pg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Orbitron\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_Cmxo2IyXjU1pg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Orbitron\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxo2IyXjU1pg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Orbitron\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxo2IyXjU1pg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Orbitron\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/orbitron/orbitron.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1126;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Oregano\";s:10:\"fontFamily\";s:18:\"Oregano, system-ui\";s:4:\"slug\";s:7:\"oregano\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/oregano/v15/If2IXTPxciS3H4S2kZLfPznO3yM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oregano\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oregano/oregano-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/oregano/v15/If2KXTPxciS3H4S2oZXVPhvLzyP_qw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Oregano\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oregano/oregano-400-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/oregano/oregano.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1127;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Orelega One\";s:10:\"fontFamily\";s:24:\"\"Orelega One\", system-ui\";s:4:\"slug\";s:11:\"orelega-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/orelegaone/v12/3qTpojOggD2XtAdFb-QXZGt_1EcYaQ7F.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Orelega One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/orelega-one/orelega-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/orelega-one/orelega-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1128;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Orienta\";s:10:\"fontFamily\";s:19:\"Orienta, sans-serif\";s:4:\"slug\";s:7:\"orienta\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyKo9HRFhcU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Orienta\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/orienta/orienta-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/orienta/orienta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1129;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Original Surfer\";s:10:\"fontFamily\";s:28:\"\"Original Surfer\", system-ui\";s:4:\"slug\";s:15:\"original-surfer\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/originalsurfer/v22/RWmQoKGZ9vIirYntXJ3_MbekzNMiCUtvAlaMKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Original Surfer\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/original-surfer/original-surfer-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/original-surfer/original-surfer.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1130;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Oswald\";s:10:\"fontFamily\";s:18:\"Oswald, sans-serif\";s:4:\"slug\";s:6:\"oswald\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgURoZAaRliE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oswald\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgURoZAaRliE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oswald\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgURoZAaRliE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oswald\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgURoZAaRliE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oswald\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogURoZAaRliE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oswald\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogURoZAaRliE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oswald\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/oswald/oswald.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1131;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Outfit\";s:10:\"fontFamily\";s:18:\"Outfit, sans-serif\";s:4:\"slug\";s:6:\"outfit\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4S-EiAou6Y.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Outfit\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/outfit/outfit.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1132;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Over the Rainbow\";s:10:\"fontFamily\";s:27:\"\"Over the Rainbow\", cursive\";s:4:\"slug\";s:16:\"over-the-rainbow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/overtherainbow/v20/11haGoXG1k_HKhMLUWz7Mc7vvW5upvam9NA2XG0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Over the Rainbow\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/over-the-rainbow/over-the-rainbow-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/over-the-rainbow/over-the-rainbow.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1133;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Overlock\";s:10:\"fontFamily\";s:19:\"Overlock, system-ui\";s:4:\"slug\";s:8:\"overlock\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/overlock/v17/Z9XVDmdMWRiN1_T9Z4Tb4u2El6GC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overlock\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/overlock/v17/Z9XTDmdMWRiN1_T9Z7Tc6OymkrGC7Cs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overlock\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/overlock/v17/Z9XSDmdMWRiN1_T9Z7xizcmJvL2L9TLT.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overlock\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/overlock/v17/Z9XQDmdMWRiN1_T9Z7Tc0FWJtryp8CLTlNs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overlock\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock-700-italic.svg\";}i:4;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/overlock/v17/Z9XSDmdMWRiN1_T9Z7xaz8mJvL2L9TLT.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overlock\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock-900-normal.svg\";}i:5;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/overlock/v17/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltryp8CLTlNs.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overlock\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/overlock/overlock.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1134;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Overlock SC\";s:10:\"fontFamily\";s:24:\"\"Overlock SC\", system-ui\";s:4:\"slug\";s:11:\"overlock-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/overlocksc/v23/1cX3aUHKGZrstGAY8nwVzHGFq8Sk1PoH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Overlock SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/overlock-sc/overlock-sc-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/overlock-sc/overlock-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1135;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Overpass\";s:10:\"fontFamily\";s:20:\"Overpass, sans-serif\";s:4:\"slug\";s:8:\"overpass\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/overpass/v13/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrPJCLtce-og.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/overpass/v13/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqKl8Kuosgz.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Overpass\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1136;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Overpass Mono\";s:10:\"fontFamily\";s:26:\"\"Overpass Mono\", monospace\";s:4:\"slug\";s:13:\"overpass-mono\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/overpassmono/v16/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokz2Xur-SmIr.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Overpass Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/overpass-mono/overpass-mono-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/overpassmono/v16/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokz2Xur-SmIr.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Overpass Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/overpass-mono/overpass-mono-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/overpassmono/v16/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokz2Xur-SmIr.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Overpass Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/overpass-mono/overpass-mono-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/overpassmono/v16/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUz2Xur-SmIr.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Overpass Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/overpass-mono/overpass-mono-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/overpassmono/v16/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUz2Xur-SmIr.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Overpass Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/overpass-mono/overpass-mono-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/overpass-mono/overpass-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1137;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Ovo\";s:10:\"fontFamily\";s:10:\"Ovo, serif\";s:4:\"slug\";s:3:\"ovo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:64:\"https://fonts.gstatic.com/s/ovo/v17/yYLl0h7WyfzjzoQ5_3WVxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Ovo\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/ovo/ovo-400-normal.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/ovo/ovo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1138;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Oxanium\";s:10:\"fontFamily\";s:18:\"Oxanium, system-ui\";s:4:\"slug\";s:7:\"oxanium\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiJBXQ7d67x.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Oxanium\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/oxanium/oxanium.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1139;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Oxygen\";s:10:\"fontFamily\";s:18:\"Oxygen, sans-serif\";s:4:\"slug\";s:6:\"oxygen\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Dam-4C7wFZQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oxygen\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oxygen/oxygen-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6jEcnZ0SkAg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oxygen\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oxygen/oxygen-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDam-4C7wFZQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Oxygen\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/oxygen/oxygen-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/oxygen/oxygen.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1140;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Oxygen Mono\";s:10:\"fontFamily\";s:24:\"\"Oxygen Mono\", monospace\";s:4:\"slug\";s:11:\"oxygen-mono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijaze-PPlUu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Oxygen Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/oxygen-mono/oxygen-mono-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/oxygen-mono/oxygen-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1141;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"PT Mono\";s:10:\"fontFamily\";s:20:\"\"PT Mono\", monospace\";s:4:\"slug\";s:7:\"pt-mono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArC05MtPyAcg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"PT Mono\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pt-mono/pt-mono-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/pt-mono/pt-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1142;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"PT Sans\";s:10:\"fontFamily\";s:21:\"\"PT Sans\", sans-serif\";s:4:\"slug\";s:7:\"pt-sans\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0COxOGMMDQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"PT Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pt-sans/pt-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eExcOJIDQA-g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"PT Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pt-sans/pt-sans-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OynLD0Z4zM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"PT Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pt-sans/pt-sans-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytLR8c8zMrig.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"PT Sans\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pt-sans/pt-sans-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/pt-sans/pt-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1143;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"PT Sans Caption\";s:10:\"fontFamily\";s:29:\"\"PT Sans Caption\", sans-serif\";s:4:\"slug\";s:15:\"pt-sans-caption\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqeAXwQy6yxg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"PT Sans Caption\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pt-sans-caption/pt-sans-caption-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"PT Sans Caption\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pt-sans-caption/pt-sans-caption-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/pt-sans-caption/pt-sans-caption.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1144;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"PT Sans Narrow\";s:10:\"fontFamily\";s:28:\"\"PT Sans Narrow\", sans-serif\";s:4:\"slug\";s:14:\"pt-sans-narrow\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCEyxyKeuDp.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"PT Sans Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/pt-sans-narrow/pt-sans-narrow-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiHUfzgRd-3.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"PT Sans Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/pt-sans-narrow/pt-sans-narrow-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/pt-sans-narrow/pt-sans-narrow.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1145;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"PT Serif\";s:10:\"fontFamily\";s:17:\"\"PT Serif\", serif\";s:4:\"slug\";s:8:\"pt-serif\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFUxL6ddjb-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"PT Serif\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pt-serif/pt-serif-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzr-_cyb-vco.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"PT Serif\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pt-serif/pt-serif-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qQXSr3pNNB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"PT Serif\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pt-serif/pt-serif-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVyvVocNB6Iw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"PT Serif\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pt-serif/pt-serif-700-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/pt-serif/pt-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1146;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"PT Serif Caption\";s:10:\"fontFamily\";s:25:\"\"PT Serif Caption\", serif\";s:4:\"slug\";s:16:\"pt-serif-caption\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059CxDCs5cvI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"PT Serif Caption\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/pt-serif-caption/pt-serif-caption-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7DQk8YvJEeg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"PT Serif Caption\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/pt-serif-caption/pt-serif-caption-400-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/pt-serif-caption/pt-serif-caption.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1147;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Pacifico\";s:10:\"fontFamily\";s:17:\"Pacifico, cursive\";s:4:\"slug\";s:8:\"pacifico\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96F4sijpFu_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Pacifico\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pacifico/pacifico-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/pacifico/pacifico.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1148;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Padauk\";s:10:\"fontFamily\";s:18:\"Padauk, sans-serif\";s:4:\"slug\";s:6:\"padauk\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBbk_g3LlYbg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Padauk\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/padauk/padauk-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE0ZJEZ4YwGg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Padauk\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/padauk/padauk-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/padauk/padauk.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1149;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Padyakke Expanded One\";s:10:\"fontFamily\";s:30:\"\"Padyakke Expanded One\", serif\";s:4:\"slug\";s:21:\"padyakke-expanded-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/padyakkeexpandedone/v6/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYPaRkpDjeoQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Padyakke Expanded One\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/padyakke-expanded-one/padyakke-expanded-one-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/padyakke-expanded-one/padyakke-expanded-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1150;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Palanquin\";s:10:\"fontFamily\";s:21:\"Palanquin, sans-serif\";s:4:\"slug\";s:9:\"palanquin\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltN7rWmZzTH.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpowZuqbi3ezg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nlowZuqbi3ezg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsc1FMzLC2Zw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhowZuqbi3ezg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9owZuqbi3ezg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5owZuqbi3ezg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Palanquin\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/palanquin/palanquin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1151;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Palanquin Dark\";s:10:\"fontFamily\";s:28:\"\"Palanquin Dark\", sans-serif\";s:4:\"slug\";s:14:\"palanquin-dark\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/palanquindark/v14/xn75YHgl1nqmANMB-26xC7yuF_6LTEo9VtfE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Palanquin Dark\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/palanquin-dark/palanquin-dark-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/palanquindark/v14/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Palanquin Dark\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/palanquin-dark/palanquin-dark-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/palanquindark/v14/xn76YHgl1nqmANMB-26xC7yuF8ZWYm4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Palanquin Dark\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/palanquin-dark/palanquin-dark-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/palanquindark/v14/xn76YHgl1nqmANMB-26xC7yuF8YyY24wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Palanquin Dark\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/palanquin-dark/palanquin-dark-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/palanquin-dark/palanquin-dark.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1152;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Palette Mosaic\";s:10:\"fontFamily\";s:27:\"\"Palette Mosaic\", system-ui\";s:4:\"slug\";s:14:\"palette-mosaic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/palettemosaic/v10/AMOIz4aBvWuBFe3TohdW6YZ9MFi34dxL4jSr.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Palette Mosaic\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/palette-mosaic/palette-mosaic-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/palette-mosaic/palette-mosaic.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1153;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Pangolin\";s:10:\"fontFamily\";s:17:\"Pangolin, cursive\";s:4:\"slug\";s:8:\"pangolin\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfP5d3aiLBG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Pangolin\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pangolin/pangolin-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/pangolin/pangolin.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1154;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Paprika\";s:10:\"fontFamily\";s:18:\"Paprika, system-ui\";s:4:\"slug\";s:7:\"paprika\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuI0Oq7jkAOw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Paprika\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/paprika/paprika-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/paprika/paprika.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1155;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Parisienne\";s:10:\"fontFamily\";s:19:\"Parisienne, cursive\";s:4:\"slug\";s:10:\"parisienne\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcyp6DuKuavM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Parisienne\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/parisienne/parisienne-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/parisienne/parisienne.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1156;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Passero One\";s:10:\"fontFamily\";s:24:\"\"Passero One\", system-ui\";s:4:\"slug\";s:11:\"passero-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/passeroone/v26/JTUTjIko8DOq5FeaeEAjgE5E5Arr-s50.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Passero One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/passero-one/passero-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/passero-one/passero-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1157;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Passion One\";s:10:\"fontFamily\";s:24:\"\"Passion One\", system-ui\";s:4:\"slug\";s:11:\"passion-one\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/passionone/v18/PbynFmL8HhTPqbjUzux3JHuT_Frg6YoV.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Passion One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/passion-one/passion-one-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/passionone/v18/Pby6FmL8HhTPqbjUzux3JEMq037twpYcuH8y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Passion One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/passion-one/passion-one-700-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/passionone/v18/Pby6FmL8HhTPqbjUzux3JEMS0X7twpYcuH8y.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Passion One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/passion-one/passion-one-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/passion-one/passion-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1158;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Passions Conflict\";s:10:\"fontFamily\";s:28:\"\"Passions Conflict\", cursive\";s:4:\"slug\";s:17:\"passions-conflict\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/passionsconflict/v7/kmKnZrcrFhfafnWX9x0GuEC-zowow5NbYRI4CN2V.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Passions Conflict\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/passions-conflict/passions-conflict-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/passions-conflict/passions-conflict.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1159;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Pathway Extreme\";s:10:\"fontFamily\";s:29:\"\"Pathway Extreme\", sans-serif\";s:4:\"slug\";s:15:\"pathway-extreme\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:142:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Liw3igP5eg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:144:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byY2qAbpepnF.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Pathway Extreme\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme-900-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/pathway-extreme/pathway-extreme.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1160;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Pathway Gothic One\";s:10:\"fontFamily\";s:32:\"\"Pathway Gothic One\", sans-serif\";s:4:\"slug\";s:18:\"pathway-gothic-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dSVxeb80flQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Pathway Gothic One\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/pathway-gothic-one/pathway-gothic-one-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/pathway-gothic-one/pathway-gothic-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1161;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Patrick Hand\";s:10:\"fontFamily\";s:23:\"\"Patrick Hand\", cursive\";s:4:\"slug\";s:12:\"patrick-hand\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/patrickhand/v23/LDI1apSQOAYtSuYWp8ZhfYeMXMjKm7sp8g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Patrick Hand\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/patrick-hand/patrick-hand-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/patrick-hand/patrick-hand.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1162;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Patrick Hand SC\";s:10:\"fontFamily\";s:26:\"\"Patrick Hand SC\", cursive\";s:4:\"slug\";s:15:\"patrick-hand-sc\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/patrickhandsc/v15/0nkwC9f7MfsBiWcLtY65AWDK873VjCi6JQc7Vg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Patrick Hand SC\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/patrick-hand-sc/patrick-hand-sc-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/patrick-hand-sc/patrick-hand-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1163;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Pattaya\";s:10:\"fontFamily\";s:19:\"Pattaya, sans-serif\";s:4:\"slug\";s:7:\"pattaya\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/pattaya/v16/ea8ZadcqV_zkHY-XNdWn92ZEmVs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Pattaya\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pattaya/pattaya-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/pattaya/pattaya.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1164;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Patua One\";s:10:\"fontFamily\";s:22:\"\"Patua One\", system-ui\";s:4:\"slug\";s:9:\"patua-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/patuaone/v20/ZXuke1cDvLCKLDcimxBI4fNvNA9LuA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Patua One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/patua-one/patua-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/patua-one/patua-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1165;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Pavanam\";s:10:\"fontFamily\";s:19:\"Pavanam, sans-serif\";s:4:\"slug\";s:7:\"pavanam\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDO5Q9Wf0QcE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Pavanam\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/pavanam/pavanam-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/pavanam/pavanam.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1166;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Paytone One\";s:10:\"fontFamily\";s:25:\"\"Paytone One\", sans-serif\";s:4:\"slug\";s:11:\"paytone-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/paytoneone/v23/0nksC9P7MfYHj2oFtYm2CiTvivr9iBq_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Paytone One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/paytone-one/paytone-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/paytone-one/paytone-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1167;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Peddana\";s:10:\"fontFamily\";s:14:\"Peddana, serif\";s:4:\"slug\";s:7:\"peddana\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhhiaBYyMcKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Peddana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/peddana/peddana-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/peddana/peddana.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1168;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Peralta\";s:10:\"fontFamily\";s:14:\"Peralta, serif\";s:4:\"slug\";s:7:\"peralta\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/peralta/v19/hYkJPu0-RP_9d3kRGxUhrv956B8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Peralta\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/peralta/peralta-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/peralta/peralta.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1169;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Permanent Marker\";s:10:\"fontFamily\";s:27:\"\"Permanent Marker\", cursive\";s:4:\"slug\";s:16:\"permanent-marker\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004Ha-IfrT5nlk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Permanent Marker\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/permanent-marker/permanent-marker-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/permanent-marker/permanent-marker.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1170;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Petemoss\";s:10:\"fontFamily\";s:17:\"Petemoss, cursive\";s:4:\"slug\";s:8:\"petemoss\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/petemoss/v7/A2BZn5tA2xgtGWHZgxkbsKb9UouQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Petemoss\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/petemoss/petemoss-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/petemoss/petemoss.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1171;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Petit Formal Script\";s:10:\"fontFamily\";s:30:\"\"Petit Formal Script\", cursive\";s:4:\"slug\";s:19:\"petit-formal-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/petitformalscript/v17/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHzqP4gZSiE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Petit Formal Script\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/petit-formal-script/petit-formal-script-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/petit-formal-script/petit-formal-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1172;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Petrona\";s:10:\"fontFamily\";s:14:\"Petrona, serif\";s:4:\"slug\";s:7:\"petrona\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsAREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgREH452Mvds.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFY9UN-dsIWs.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Petrona\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/petrona/petrona.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1173;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Philosopher\";s:10:\"fontFamily\";s:23:\"Philosopher, sans-serif\";s:4:\"slug\";s:11:\"philosopher\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBsRUwU08qe.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Philosopher\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/philosopher/philosopher-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0021tqeR7c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Philosopher\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/philosopher/philosopher-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgZ-NaXXq7H.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Philosopher\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/philosopher/philosopher-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8te1W77HtMo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Philosopher\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/philosopher/philosopher-700-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/philosopher/philosopher.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1174;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Phudu\";s:10:\"fontFamily\";s:16:\"Phudu, system-ui\";s:4:\"slug\";s:5:\"phudu\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUTgWuz38Tgg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Phudu\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu-900-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/phudu/phudu.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1175;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Piazzolla\";s:10:\"fontFamily\";s:16:\"Piazzolla, serif\";s:4:\"slug\";s:9:\"piazzolla\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3L31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXL31AHfAAy5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gD9BRy5m5M.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Piazzolla\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/piazzolla/piazzolla.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1176;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Piedra\";s:10:\"fontFamily\";s:17:\"Piedra, system-ui\";s:4:\"slug\";s:6:\"piedra\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/piedra/v25/ke8kOg8aN0Bn7hTumUyHN_M3gA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Piedra\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/piedra/piedra-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/piedra/piedra.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1177;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Pinyon Script\";s:10:\"fontFamily\";s:24:\"\"Pinyon Script\", cursive\";s:4:\"slug\";s:13:\"pinyon-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/pinyonscript/v21/6xKpdSJbL9-e9LuoeQiDRQR8aOfQO4bhiDY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Pinyon Script\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/pinyon-script/pinyon-script-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/pinyon-script/pinyon-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1178;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Pirata One\";s:10:\"fontFamily\";s:23:\"\"Pirata One\", system-ui\";s:4:\"slug\";s:10:\"pirata-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtofti2Er5_BdZ8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Pirata One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/pirata-one/pirata-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/pirata-one/pirata-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1179;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Pixelify Sans\";s:10:\"fontFamily\";s:26:\"\"Pixelify Sans\", system-ui\";s:4:\"slug\";s:13:\"pixelify-sans\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/pixelifysans/v1/CHy2V-3HFUT7aC4iv1TxGDR9DHEserHN25py2TTp0H1db5JagkmX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Pixelify Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/pixelify-sans/pixelify-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/pixelifysans/v1/CHy2V-3HFUT7aC4iv1TxGDR9DHEserHN25py2TTb0H1db5JagkmX.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Pixelify Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/pixelify-sans/pixelify-sans-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/pixelifysans/v1/CHy2V-3HFUT7aC4iv1TxGDR9DHEserHN25py2TQ3131db5JagkmX.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Pixelify Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/pixelify-sans/pixelify-sans-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/pixelifysans/v1/CHy2V-3HFUT7aC4iv1TxGDR9DHEserHN25py2TQO131db5JagkmX.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Pixelify Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/pixelify-sans/pixelify-sans-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/pixelify-sans/pixelify-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1180;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Plaster\";s:10:\"fontFamily\";s:18:\"Plaster, system-ui\";s:4:\"slug\";s:7:\"plaster\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4EitJOtLOeLI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Plaster\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/plaster/plaster-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/plaster/plaster.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1181;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Play\";s:10:\"fontFamily\";s:16:\"Play, sans-serif\";s:4:\"slug\";s:4:\"play\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/play/v19/6aez4K2oVqwIjtc8Hp8Tx3A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Play\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/play/play-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/play/v19/6ae84K2oVqwItm4TOpI423nTJTM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Play\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/play/play-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/play/play.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1182;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Playball\";s:10:\"fontFamily\";s:19:\"Playball, system-ui\";s:4:\"slug\";s:8:\"playball\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/playball/v20/TK3gWksYAxQ7jbsKcj8Gl-tPKo2t.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playball\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playball/playball-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/playball/playball.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1183;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Playfair\";s:10:\"fontFamily\";s:15:\"Playfair, serif\";s:4:\"slug\";s:8:\"playfair\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPlKetgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkUetgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkmetgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnKfdgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnzfdgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPmUfdgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:126:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPm9fdgYoSMw5ifm.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-900-normal.svg\";}i:7;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOW5eqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-300-italic.svg\";}i:8;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOTBeqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-400-italic.svg\";}i:9;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOQJeqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOe5ZqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-600-italic.svg\";}i:11;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOddZqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcObBZqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-800-italic.svg\";}i:13;a:5:{s:3:\"src\";s:129:\"https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOZlZqyIS4zfmNrE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Playfair\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/playfair/playfair.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1184;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Playfair Display\";s:10:\"fontFamily\";s:25:\"\"Playfair Display\", serif\";s:4:\"slug\";s:16:\"playfair-display\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDVZNLo_U2r.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDVZNLo_U2r.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDVZNLo_U2r.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDVZNLo_U2r.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDVZNLo_U2r.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDVZNLo_U2r.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtPK-F2rA0s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtPK-F2rA0s.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtPK-F2rA0s.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtPK-F2rA0s.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtPK-F2rA0s.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtPK-F2rA0s.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Playfair Display\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display-900-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/playfair-display/playfair-display.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1185;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Playfair Display SC\";s:10:\"fontFamily\";s:28:\"\"Playfair Display SC\", serif\";s:4:\"slug\";s:19:\"playfair-display-sc\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pbsGEcM2M4s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Playfair Display SC\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMEOEzI4sNKg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Playfair Display SC\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNc4dL4IUMyE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Playfair Display SC\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XLqARIyH5IA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Playfair Display SC\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc-700-italic.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNc4dL4IUMyE.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Playfair Display SC\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc-900-normal.svg\";}i:5;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXLqARIyH5IA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:19:\"Playfair Display SC\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc-900-italic.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/playfair-display-sc/playfair-display-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1186;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Playpen Sans\";s:10:\"fontFamily\";s:23:\"\"Playpen Sans\", cursive\";s:4:\"slug\";s:12:\"playpen-sans\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4IvRgunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4InRhunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4IqphunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4IvRhunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4IsZhunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4IipmunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4IhNmunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/playpensans/v6/dg43_pj1p6gXP0gzAZgm4c8XQArSU7ACQSn4InRmunE9Ffmme0w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Playpen Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans-800-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/playpen-sans/playpen-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1187;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Plus Jakarta Sans\";s:10:\"fontFamily\";s:31:\"\"Plus Jakarta Sans\", sans-serif\";s:4:\"slug\";s:17:\"plus-jakarta-sans\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-200-italic.svg\";}i:8;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-300-italic.svg\";}i:9;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-400-italic.svg\";}i:10;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-500-italic.svg\";}i:11;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-700-italic.svg\";}i:13;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_VMq2oR82k.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Plus Jakarta Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans-800-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/plus-jakarta-sans/plus-jakarta-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1188;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Podkova\";s:10:\"fontFamily\";s:14:\"Podkova, serif\";s:4:\"slug\";s:7:\"podkova\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU9EoporSHH.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Podkova\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/podkova/podkova-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU9EoporSHH.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Podkova\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/podkova/podkova-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU9EoporSHH.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Podkova\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/podkova/podkova-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU9EoporSHH.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Podkova\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/podkova/podkova-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU9EoporSHH.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Podkova\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/podkova/podkova-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/podkova/podkova.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1189;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Poiret One\";s:10:\"fontFamily\";s:23:\"\"Poiret One\", system-ui\";s:4:\"slug\";s:10:\"poiret-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/poiretone/v16/UqyVK80NJXN4zfRgbdfbk5xWVscxdKE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Poiret One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/poiret-one/poiret-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/poiret-one/poiret-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1190;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Poller One\";s:10:\"fontFamily\";s:23:\"\"Poller One\", system-ui\";s:4:\"slug\";s:10:\"poller-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/pollerone/v23/ahccv82n0TN3gia5E4Bud-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Poller One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/poller-one/poller-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/poller-one/poller-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1191;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Poltawski Nowy\";s:10:\"fontFamily\";s:23:\"\"Poltawski Nowy\", serif\";s:4:\"slug\";s:14:\"poltawski-nowy\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnCC6V5CzCoQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnCC6V5CzCoQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnCC6V5CzCoQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnCC6V5CzCoQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSUxinSoROp.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSUxinSoROp.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSUxinSoROp.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSUxinSoROp.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Poltawski Nowy\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy-700-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/poltawski-nowy/poltawski-nowy.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1192;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Poly\";s:10:\"fontFamily\";s:11:\"Poly, serif\";s:4:\"slug\";s:4:\"poly\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLWAq2Lpris.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Poly\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/poly/poly-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKqkDsviuGWA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Poly\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/poly/poly-400-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/poly/poly.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1193;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Pompiere\";s:10:\"fontFamily\";s:19:\"Pompiere, system-ui\";s:4:\"slug\";s:8:\"pompiere\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/pompiere/v19/VEMyRoxis5Dwuyeov6Wo5jDtreOL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Pompiere\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/pompiere/pompiere-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/pompiere/pompiere.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1194;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Pontano Sans\";s:10:\"fontFamily\";s:26:\"\"Pontano Sans\", sans-serif\";s:4:\"slug\";s:12:\"pontano-sans\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncOMp9gzWsE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Pontano Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/pontano-sans/pontano-sans-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncOMp9gzWsE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Pontano Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/pontano-sans/pontano-sans-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncOMp9gzWsE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Pontano Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/pontano-sans/pontano-sans-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncOMp9gzWsE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Pontano Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/pontano-sans/pontano-sans-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncOMp9gzWsE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Pontano Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/pontano-sans/pontano-sans-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/pontano-sans/pontano-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1195;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Poor Story\";s:10:\"fontFamily\";s:23:\"\"Poor Story\", system-ui\";s:4:\"slug\";s:10:\"poor-story\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OynLD0Z4zM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Poor Story\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/poor-story/poor-story-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/poor-story/poor-story.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1196;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Poppins\";s:10:\"fontFamily\";s:19:\"Poppins, sans-serif\";s:4:\"slug\";s:7:\"poppins\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTecnFBGPaTSQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tAOvODSVFF.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLecnFBGPaTSQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Poppins\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/poppins/poppins.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1197;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Port Lligat Sans\";s:10:\"fontFamily\";s:30:\"\"Port Lligat Sans\", sans-serif\";s:4:\"slug\";s:16:\"port-lligat-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/portlligatsans/v22/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7Z0Tx4xEcQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Port Lligat Sans\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/port-lligat-sans/port-lligat-sans-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/port-lligat-sans/port-lligat-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1198;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Port Lligat Slab\";s:10:\"fontFamily\";s:25:\"\"Port Lligat Slab\", serif\";s:4:\"slug\";s:16:\"port-lligat-slab\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/portlligatslab/v25/LDIpaoiQNgArA8kR7ulhZ8P_NYOss78b9yGLmfI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Port Lligat Slab\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/port-lligat-slab/port-lligat-slab-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/port-lligat-slab/port-lligat-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1199;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Potta One\";s:10:\"fontFamily\";s:22:\"\"Potta One\", system-ui\";s:4:\"slug\";s:9:\"potta-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ2J5nm29Gww.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Potta One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/potta-one/potta-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/potta-one/potta-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1200;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Pragati Narrow\";s:10:\"fontFamily\";s:28:\"\"Pragati Narrow\", sans-serif\";s:4:\"slug\";s:14:\"pragati-narrow\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD176ytN3M48a.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Pragati Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/pragati-narrow/pragati-narrow-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd6GJMTlo_4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Pragati Narrow\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/pragati-narrow/pragati-narrow-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/pragati-narrow/pragati-narrow.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1201;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Praise\";s:10:\"fontFamily\";s:15:\"Praise, cursive\";s:4:\"slug\";s:6:\"praise\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/praise/v7/qkBUXvUZ-cnFXcFyC_O67L9XmQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Praise\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/praise/praise-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/praise/praise.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1202;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Prata\";s:10:\"fontFamily\";s:12:\"Prata, serif\";s:4:\"slug\";s:5:\"prata\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/prata/v20/6xKhdSpbNNCT-vWNAG_5LWwJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Prata\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/prata/prata-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/prata/prata.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1203;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Preahvihear\";s:10:\"fontFamily\";s:23:\"Preahvihear, sans-serif\";s:4:\"slug\";s:11:\"preahvihear\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/preahvihear/v29/6NUS8F-dNQeEYhzj7uluxswB49FJf8Wv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Preahvihear\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/preahvihear/preahvihear-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/preahvihear/preahvihear.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1204;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Press Start 2P\";s:10:\"fontFamily\";s:27:\"\"Press Start 2P\", system-ui\";s:4:\"slug\";s:15:\"press-start-2-p\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nXgPJE4580.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Press Start 2P\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/press-start-2p/press-start-2p-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/press-start-2p/press-start-2p.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1205;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Pridi\";s:10:\"fontFamily\";s:12:\"Pridi, serif\";s:4:\"slug\";s:5:\"pridi\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc1SiE0mRUG0AqUc.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Pridi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc02i00mRUG0AqUc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Pridi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/pridi/v13/2sDQZG5JnZLfkfWfo2krbl29.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Pridi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc1uik0mRUG0AqUc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Pridi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc1CjU0mRUG0AqUc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Pridi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc0mjE0mRUG0AqUc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Pridi\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/pridi/pridi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1206;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Princess Sofia\";s:10:\"fontFamily\";s:25:\"\"Princess Sofia\", cursive\";s:4:\"slug\";s:14:\"princess-sofia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/princesssofia/v25/qWczB6yguIb8DZ_GXZst16n7GRz-mDUoupoI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Princess Sofia\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/princess-sofia/princess-sofia-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/princess-sofia/princess-sofia.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1207;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Prociono\";s:10:\"fontFamily\";s:15:\"Prociono, serif\";s:4:\"slug\";s:8:\"prociono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prociono/v26/r05YGLlR-KxAf9GGO8usyDYtStiJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Prociono\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/prociono/prociono-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/prociono/prociono.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1208;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Prompt\";s:10:\"fontFamily\";s:18:\"Prompt, sans-serif\";s:4:\"slug\";s:6:\"prompt\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9odREcjeo0k.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkYBf50kbiM.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26YtAcZkIzeg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdodREcjeo0k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04a2kvc5Q9dw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMuUZEtdzow.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Prompt\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/prompt/prompt.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1209;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Prosto One\";s:10:\"fontFamily\";s:23:\"\"Prosto One\", system-ui\";s:4:\"slug\";s:10:\"prosto-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/prostoone/v19/OpNJno4VhNfK-RgpwWWxpi9fWhXD00c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Prosto One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/prosto-one/prosto-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/prosto-one/prosto-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1210;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Proza Libre\";s:10:\"fontFamily\";s:25:\"\"Proza Libre\", sans-serif\";s:4:\"slug\";s:11:\"proza-libre\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHoqftvXWYyz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdNr1XJyz7zc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__acpC69i6N.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJGY8z6Np1k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-500-italic.svg\";}i:4;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_acpC69i6N.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJGY8z6Np1k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-600-italic.svg\";}i:6;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_acpC69i6N.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJGY8z6Np1k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-700-italic.svg\";}i:8;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_acpC69i6N.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-800-normal.svg\";}i:9;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJGY8z6Np1k.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Proza Libre\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre-800-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/proza-libre/proza-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1211;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Public Sans\";s:10:\"fontFamily\";s:25:\"\"Public Sans\", sans-serif\";s:4:\"slug\";s:11:\"public-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565xg0pX189fg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgAcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgAcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgAcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgAcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/publicsans/v15/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwcofVotfj7j.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Public Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans-900-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/public-sans/public-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1212;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Puppies Play\";s:10:\"fontFamily\";s:23:\"\"Puppies Play\", cursive\";s:4:\"slug\";s:12:\"puppies-play\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/puppiesplay/v9/wlp2gwHZEV99rG6M3NR9uB9vbQJSA_JN3Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Puppies Play\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/puppies-play/puppies-play-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/puppies-play/puppies-play.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1213;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Puritan\";s:10:\"fontFamily\";s:19:\"Puritan, sans-serif\";s:4:\"slug\";s:7:\"puritan\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9J_wRdaI50M.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Puritan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/puritan/puritan-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6RPSN90PfXA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Puritan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/puritan/puritan-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYduj-0rGRes.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Puritan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/puritan/puritan-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup-mjDVevnLQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Puritan\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/puritan/puritan-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/puritan/puritan.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1214;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Purple Purse\";s:10:\"fontFamily\";s:25:\"\"Purple Purse\", system-ui\";s:4:\"slug\";s:12:\"purple-purse\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/purplepurse/v23/qWctB66gv53iAp-Vfs4My6qyfRb_ujA4ug.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Purple Purse\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/purple-purse/purple-purse-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/purple-purse/purple-purse.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1215;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Qahiri\";s:10:\"fontFamily\";s:18:\"Qahiri, sans-serif\";s:4:\"slug\";s:6:\"qahiri\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuVnChrnmupw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Qahiri\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/qahiri/qahiri-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/qahiri/qahiri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1216;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Quando\";s:10:\"fontFamily\";s:13:\"Quando, serif\";s:4:\"slug\";s:6:\"quando\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/quando/v16/xMQVuFNaVa6YuW0pDqWzKX_QmA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Quando\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/quando/quando-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/quando/quando.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1217;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Quantico\";s:10:\"fontFamily\";s:20:\"Quantico, sans-serif\";s:4:\"slug\";s:8:\"quantico\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/quantico/v17/rax-HiSdp9cPL3KIF4xpLjxSmlLZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Quantico\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/quantico/quantico-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/quantico/v17/rax4HiSdp9cPL3KIF7xuJD1wn0LZ6T8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Quantico\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/quantico/quantico-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/quantico/v17/rax5HiSdp9cPL3KIF7TQARhfsU7Q8Cad.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Quantico\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/quantico/quantico-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/quantico/v17/rax7HiSdp9cPL3KIF7xuHIRfu0_y9TadML4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Quantico\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/quantico/quantico-700-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/quantico/quantico.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1218;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Quattrocento\";s:10:\"fontFamily\";s:19:\"Quattrocento, serif\";s:4:\"slug\";s:12:\"quattrocento\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/quattrocento/v21/OZpEg_xvsDZQL_LKIF7q4jPHwWL7f4jFuA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Quattrocento\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/quattrocento/quattrocento-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/quattrocento/v21/OZpbg_xvsDZQL_LKIF7q4jP_eE3fcqPZsXcM9w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Quattrocento\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/quattrocento/quattrocento-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/quattrocento/quattrocento.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1219;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Quattrocento Sans\";s:10:\"fontFamily\";s:31:\"\"Quattrocento Sans\", sans-serif\";s:4:\"slug\";s:17:\"quattrocento-sans\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zLvU7eHGHJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Quattrocento Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/quattrocento-sans/quattrocento-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0_8GXHJkLI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Quattrocento Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/quattrocento-sans/quattrocento-sans-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrTN33AiasJ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Quattrocento Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/quattrocento-sans/quattrocento-sans-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXzijLsJV7E.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Quattrocento Sans\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/quattrocento-sans/quattrocento-sans-700-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/quattrocento-sans/quattrocento-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1220;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Questrial\";s:10:\"fontFamily\";s:21:\"Questrial, sans-serif\";s:4:\"slug\";s:9:\"questrial\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EvCtkm20oJA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Questrial\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/questrial/questrial-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/questrial/questrial.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1221;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Quicksand\";s:10:\"fontFamily\";s:21:\"Quicksand, sans-serif\";s:4:\"slug\";s:9:\"quicksand\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/quicksand/v31/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18S0wx40QDw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Quicksand\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/quicksand/quicksand-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/quicksand/v31/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18S0wx40QDw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Quicksand\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/quicksand/quicksand-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/quicksand/v31/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18S0wx40QDw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Quicksand\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/quicksand/quicksand-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/quicksand/v31/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18S0wx40QDw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Quicksand\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/quicksand/quicksand-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/quicksand/v31/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18S0wx40QDw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Quicksand\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/quicksand/quicksand-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/quicksand/quicksand.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1222;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Quintessential\";s:10:\"fontFamily\";s:23:\"Quintessential, cursive\";s:4:\"slug\";s:14:\"quintessential\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/quintessential/v22/fdNn9sOGq31Yjnh3qWU14DdtjY51S7kmAyxM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Quintessential\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/quintessential/quintessential-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/quintessential/quintessential.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1223;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Qwigley\";s:10:\"fontFamily\";s:16:\"Qwigley, cursive\";s:4:\"slug\";s:7:\"qwigley\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/qwigley/v18/1cXzaU3UGJb5tGoCuVlsi1mBmcE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Qwigley\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/qwigley/qwigley-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/qwigley/qwigley.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1224;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Qwitcher Grypen\";s:10:\"fontFamily\";s:26:\"\"Qwitcher Grypen\", cursive\";s:4:\"slug\";s:15:\"qwitcher-grypen\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/qwitchergrypen/v6/pxicypclp9tDilN9RrC5BSI1dZmrTWNAom-wpw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Qwitcher Grypen\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/qwitcher-grypen/qwitcher-grypen-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/qwitchergrypen/v6/pxiZypclp9tDilN9RrC5BSI1dZmT9Exkr0SsrvNXiA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Qwitcher Grypen\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/qwitcher-grypen/qwitcher-grypen-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/qwitcher-grypen/qwitcher-grypen.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1225;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"REM\";s:10:\"fontFamily\";s:15:\"REM, sans-serif\";s:4:\"slug\";s:3:\"rem\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPMLrrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPELqrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPJzqrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPMLqrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPPDqrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPBztrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPCXtrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPELtrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPGvtrT8UbIqIfBU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpRXgebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpxXkebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpG3kebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpRXkebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpd3kebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpm34ebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpon4ebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpxX4ebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqp7H4ebaiNbBVWkw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:3:\"REM\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rem/rem-900-italic.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/rem/rem.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1226;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Racing Sans One\";s:10:\"fontFamily\";s:28:\"\"Racing Sans One\", system-ui\";s:4:\"slug\";s:15:\"racing-sans-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/racingsansone/v15/sykr-yRtm7EvTrXNxkv5jfKKyDCwKnrmWpIBtA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Racing Sans One\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/racing-sans-one/racing-sans-one-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/racing-sans-one/racing-sans-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1227;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Radio Canada\";s:10:\"fontFamily\";s:26:\"\"Radio Canada\", sans-serif\";s:4:\"slug\";s:12:\"radio-canada\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPNJOdSSfOT.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPNJOdSSfOT.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPNJOdSSfOT.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPNJOdSSfOT.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPNJOdSSfOT.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuZwTOOTa9k.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuZwTOOTa9k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuZwTOOTa9k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuZwTOOTa9k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuZwTOOTa9k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Radio Canada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/radio-canada/radio-canada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1228;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Radley\";s:10:\"fontFamily\";s:13:\"Radley, serif\";s:4:\"slug\";s:6:\"radley\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/radley/v22/LYjDdGzinEIjCN19pQlEpVs3VQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Radley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/radley/radley-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/radley/v22/LYjBdGzinEIjCN1NogNFh14nVcfe.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Radley\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/radley/radley-400-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/radley/radley.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1229;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Rajdhani\";s:10:\"fontFamily\";s:20:\"Rajdhani, sans-serif\";s:4:\"slug\";s:8:\"rajdhani\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOpc-bGkqIw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Rajdhani\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rajdhani/rajdhani-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4FOeekWPrP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Rajdhani\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rajdhani/rajdhani-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOpc-bGkqIw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Rajdhani\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rajdhani/rajdhani-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Opc-bGkqIw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Rajdhani\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rajdhani/rajdhani-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOpc-bGkqIw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Rajdhani\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rajdhani/rajdhani-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/rajdhani/rajdhani.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1230;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Rakkas\";s:10:\"fontFamily\";s:17:\"Rakkas, system-ui\";s:4:\"slug\";s:6:\"rakkas\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/rakkas/v19/Qw3cZQlNHiblL3j_k9tPOeMcCw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Rakkas\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rakkas/rakkas-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/rakkas/rakkas.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1231;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Raleway\";s:10:\"fontFamily\";s:19:\"Raleway, sans-serif\";s:4:\"slug\";s:7:\"raleway\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCKNLA3JC9c.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrEVIT9c2c8.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Raleway\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1232;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Raleway Dots\";s:10:\"fontFamily\";s:25:\"\"Raleway Dots\", system-ui\";s:4:\"slug\";s:12:\"raleway-dots\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/ralewaydots/v16/6NUR8FifJg6AfQvzpshgwJ8kzP9Fdty2ew.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Raleway Dots\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/raleway-dots/raleway-dots-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/raleway-dots/raleway-dots.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1233;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Ramabhadra\";s:10:\"fontFamily\";s:22:\"Ramabhadra, sans-serif\";s:4:\"slug\";s:10:\"ramabhadra\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehZGX5uWw3o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ramabhadra\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ramabhadra/ramabhadra-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/ramabhadra/ramabhadra.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1234;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Ramaraja\";s:10:\"fontFamily\";s:15:\"Ramaraja, serif\";s:4:\"slug\";s:8:\"ramaraja\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIhqnB6aSQU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Ramaraja\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/ramaraja/ramaraja-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/ramaraja/ramaraja.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1235;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Rambla\";s:10:\"fontFamily\";s:18:\"Rambla, sans-serif\";s:4:\"slug\";s:6:\"rambla\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0JrIONthkwQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Rambla\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rambla/rambla-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgPFN10wYKa.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Rambla\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rambla/rambla-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qO_N4yJuDYQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Rambla\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rambla/rambla-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l56p6TYS-Y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Rambla\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rambla/rambla-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/rambla/rambla.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1236;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Rammetto One\";s:10:\"fontFamily\";s:25:\"\"Rammetto One\", system-ui\";s:4:\"slug\";s:12:\"rammetto-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/rammettoone/v18/LhWiMV3HOfMbMetJG3lQDpp9N_uciu-_SQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rammetto One\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rammetto-one/rammetto-one-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/rammetto-one/rammetto-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1237;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Rampart One\";s:10:\"fontFamily\";s:24:\"\"Rampart One\", system-ui\";s:4:\"slug\";s:11:\"rampart-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rampartone/v9/K2F1fZFGl_JSR1tAWNG9R6qlLS76ZHOM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Rampart One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/rampart-one/rampart-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/rampart-one/rampart-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1238;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Ranchers\";s:10:\"fontFamily\";s:19:\"Ranchers, system-ui\";s:4:\"slug\";s:8:\"ranchers\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/ranchers/v17/zrfm0H3Lx-P2Xvs2AoDdDC79XTHv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Ranchers\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/ranchers/ranchers-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/ranchers/ranchers.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1239;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Rancho\";s:10:\"fontFamily\";s:15:\"Rancho, cursive\";s:4:\"slug\";s:6:\"rancho\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/rancho/v21/46kulbzmXjLaqZRlaGXgd0RY1g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Rancho\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rancho/rancho-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/rancho/rancho.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1240;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Ranga\";s:10:\"fontFamily\";s:16:\"Ranga, system-ui\";s:4:\"slug\";s:5:\"ranga\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/ranga/v21/C8ct4cYisGb28p6HLDwZwmGE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Ranga\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/ranga/ranga-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/ranga/v21/C8cg4cYisGb28qY-AxgU6X2NZAn2.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Ranga\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/ranga/ranga-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/ranga/ranga.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1241;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Rasa\";s:10:\"fontFamily\";s:11:\"Rasa, serif\";s:4:\"slug\";s:4:\"rasa\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm4wfcvN2KT4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8rv3bT4Ycc.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8rv3bT4Ycc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8rv3bT4Ycc.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8rv3bT4Ycc.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8rv3bT4Ycc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Rasa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/rasa/rasa.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1242;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Rationale\";s:10:\"fontFamily\";s:21:\"Rationale, sans-serif\";s:4:\"slug\";s:9:\"rationale\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/rationale/v28/9XUnlJ92n0_JFxHIfHcsc1FMzLC2Zw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Rationale\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/rationale/rationale-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/rationale/rationale.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1243;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Ravi Prakash\";s:10:\"fontFamily\";s:25:\"\"Ravi Prakash\", system-ui\";s:4:\"slug\";s:12:\"ravi-prakash\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHndZEq6TTFw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Ravi Prakash\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/ravi-prakash/ravi-prakash-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/ravi-prakash/ravi-prakash.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1244;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Readex Pro\";s:10:\"fontFamily\";s:24:\"\"Readex Pro\", sans-serif\";s:4:\"slug\";s:10:\"readex-pro\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmh2sglvjkag.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Readex Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smh2sglvjkag.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Readex Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmh2sglvjkag.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Readex Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smh2sglvjkag.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Readex Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omh2sglvjkag.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Readex Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmh2sglvjkag.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Readex Pro\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/readex-pro/readex-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1245;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Recursive\";s:10:\"fontFamily\";s:21:\"Recursive, sans-serif\";s:4:\"slug\";s:9:\"recursive\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck015vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk015vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk015vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE15vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE15vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE15vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:164:\"https://fonts.gstatic.com/s/recursive/v38/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE15vwxjDJCL.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Recursive\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/recursive/recursive.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1246;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Red Hat Display\";s:10:\"fontFamily\";s:29:\"\"Red Hat Display\", sans-serif\";s:4:\"slug\";s:15:\"red-hat-display\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRck05-Xecg3w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-900-normal.svg\";}i:7;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-300-italic.svg\";}i:8;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-400-italic.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-600-italic.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-800-italic.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz-FWZk3zJGg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Red Hat Display\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display-900-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/red-hat-display/red-hat-display.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1247;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Red Hat Mono\";s:10:\"fontFamily\";s:25:\"\"Red Hat Mono\", monospace\";s:4:\"slug\";s:12:\"red-hat-mono\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhatmono/v11/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7TNuW4QuKI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhatmono/v11/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7TNuW4QuKI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhatmono/v11/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7TNuW4QuKI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhatmono/v11/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7TNuW4QuKI.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhatmono/v11/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7TNuW4QuKI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhatmono/v11/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHuEwVqKIJuw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhatmono/v11/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHuEwVqKIJuw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhatmono/v11/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHuEwVqKIJuw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhatmono/v11/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHuEwVqKIJuw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhatmono/v11/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHuEwVqKIJuw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Mono\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/red-hat-mono/red-hat-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1248;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Red Hat Text\";s:10:\"fontFamily\";s:26:\"\"Red Hat Text\", sans-serif\";s:4:\"slug\";s:12:\"red-hat-text\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhattext/v14/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrPacYVFtIY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhattext/v14/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrPacYVFtIY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhattext/v14/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrPacYVFtIY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhattext/v14/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrPacYVFtIY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/redhattext/v14/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrPacYVFtIY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhattext/v14/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQcKdApIYv_g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhattext/v14/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQcKdApIYv_g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhattext/v14/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQcKdApIYv_g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhattext/v14/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQcKdApIYv_g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/redhattext/v14/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQcKdApIYv_g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Red Hat Text\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text-700-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/red-hat-text/red-hat-text.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1249;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Red Rose\";s:10:\"fontFamily\";s:21:\"\"Red Rose\", system-ui\";s:4:\"slug\";s:8:\"red-rose\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDdzSsYUVUjg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Red Rose\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/red-rose/red-rose-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDdzSsYUVUjg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Red Rose\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/red-rose/red-rose-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDdzSsYUVUjg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Red Rose\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/red-rose/red-rose-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDdzSsYUVUjg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Red Rose\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/red-rose/red-rose-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDdzSsYUVUjg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Red Rose\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/red-rose/red-rose-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/red-rose/red-rose.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1250;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Redacted\";s:10:\"fontFamily\";s:19:\"Redacted, system-ui\";s:4:\"slug\";s:8:\"redacted\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/redacted/v8/Z9XVDmdRShme2O_7aITb4u2El6GC.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Redacted\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/redacted/redacted-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/redacted/redacted.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1251;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Redacted Script\";s:10:\"fontFamily\";s:28:\"\"Redacted Script\", system-ui\";s:4:\"slug\";s:15:\"redacted-script\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/redactedscript/v10/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVnLI397ldkg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Redacted Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/redacted-script/redacted-script-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/redactedscript/v10/ypvBbXGRglhokR7dcC3d1-R6zmxStGTxkZkr_g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Redacted Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/redacted-script/redacted-script-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/redactedscript/v10/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVnLI397ldkg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Redacted Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/redacted-script/redacted-script-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/redacted-script/redacted-script.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1252;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Redressed\";s:10:\"fontFamily\";s:18:\"Redressed, cursive\";s:4:\"slug\";s:9:\"redressed\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/redressed/v29/x3dickHUbrmJ7wMy9MsBefACvy_1BA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Redressed\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/redressed/redressed-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/redressed/redressed.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1253;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Reem Kufi\";s:10:\"fontFamily\";s:23:\"\"Reem Kufi\", sans-serif\";s:4:\"slug\";s:9:\"reem-kufi\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/reemkufi/v21/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Reem Kufi\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi/reem-kufi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/reemkufi/v21/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Reem Kufi\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi/reem-kufi-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/reemkufi/v21/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Reem Kufi\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi/reem-kufi-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/reemkufi/v21/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGSf3qGuvM4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Reem Kufi\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi/reem-kufi-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi/reem-kufi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1254;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Reem Kufi Fun\";s:10:\"fontFamily\";s:27:\"\"Reem Kufi Fun\", sans-serif\";s:4:\"slug\";s:13:\"reem-kufi-fun\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nClrvqZzZXq.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Reem Kufi Fun\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-fun/reem-kufi-fun-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nClrvqZzZXq.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Reem Kufi Fun\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-fun/reem-kufi-fun-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XClrvqZzZXq.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Reem Kufi Fun\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-fun/reem-kufi-fun-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XClrvqZzZXq.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Reem Kufi Fun\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-fun/reem-kufi-fun-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-fun/reem-kufi-fun.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1255;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Reem Kufi Ink\";s:10:\"fontFamily\";s:27:\"\"Reem Kufi Ink\", sans-serif\";s:4:\"slug\";s:13:\"reem-kufi-ink\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/reemkufiink/v9/oPWJ_kJmmu8hCvB9iFumxZSnRjtdQnSX1ko.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Reem Kufi Ink\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-ink/reem-kufi-ink-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/reem-kufi-ink/reem-kufi-ink.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1256;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Reenie Beanie\";s:10:\"fontFamily\";s:24:\"\"Reenie Beanie\", cursive\";s:4:\"slug\";s:13:\"reenie-beanie\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/reeniebeanie/v20/z7NSdR76eDkaJKZJFkkjuvWxbPi_qoOgf_w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Reenie Beanie\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/reenie-beanie/reenie-beanie-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/reenie-beanie/reenie-beanie.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1257;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Reggae One\";s:10:\"fontFamily\";s:23:\"\"Reggae One\", system-ui\";s:4:\"slug\";s:10:\"reggae-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/reggaeone/v16/7r3DqX5msMIkeuwJwOJt_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Reggae One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/reggae-one/reggae-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/reggae-one/reggae-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1258;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Rethink Sans\";s:10:\"fontFamily\";s:26:\"\"Rethink Sans\", sans-serif\";s:4:\"slug\";s:12:\"rethink-sans\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/rethinksans/v3/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkmFRCEvmma-aua4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/rethinksans/v3/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/rethinksans/v3/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/rethinksans/v3/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/rethinksans/v3/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkuFWCEvmma-aua4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/rethinksans/v3/AMOFz4SDuXOMCPfdoglY9JQEUUK5wyyTfpeth6kS4A3smI2fqa7iVQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/rethinksans/v3/AMOFz4SDuXOMCPfdoglY9JQEUUK5wyyTfpeth6kS0g3smI2fqa7iVQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-500-italic.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/rethinksans/v3/AMOFz4SDuXOMCPfdoglY9JQEUUK5wyyTfpeth6kSPgrsmI2fqa7iVQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/rethinksans/v3/AMOFz4SDuXOMCPfdoglY9JQEUUK5wyyTfpeth6kSBwrsmI2fqa7iVQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-700-italic.svg\";}i:9;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/rethinksans/v3/AMOFz4SDuXOMCPfdoglY9JQEUUK5wyyTfpeth6kSYArsmI2fqa7iVQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Rethink Sans\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans-800-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/rethink-sans/rethink-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1259;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Revalia\";s:10:\"fontFamily\";s:18:\"Revalia, system-ui\";s:4:\"slug\";s:7:\"revalia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/revalia/v22/WwkexPimBE2-4ZPEeV_uNIgJSNM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Revalia\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/revalia/revalia-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/revalia/revalia.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1260;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Rhodium Libre\";s:10:\"fontFamily\";s:22:\"\"Rhodium Libre\", serif\";s:4:\"slug\";s:13:\"rhodium-libre\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rhodiumlibre/v19/1q2AY5adA0tn_ukeHcQHqpx6pEHLeo2gm2U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Rhodium Libre\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/rhodium-libre/rhodium-libre-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/rhodium-libre/rhodium-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1261;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ribeye\";s:10:\"fontFamily\";s:17:\"Ribeye, system-ui\";s:4:\"slug\";s:6:\"ribeye\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/ribeye/v25/L0x8DFMxk1MP9R3RufCmRSlUig.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ribeye\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ribeye/ribeye-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ribeye/ribeye.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1262;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Ribeye Marrow\";s:10:\"fontFamily\";s:26:\"\"Ribeye Marrow\", system-ui\";s:4:\"slug\";s:13:\"ribeye-marrow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/ribeyemarrow/v24/GFDsWApshnqMRO2JdtRZ2d0vEAkTVWgKdtw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Ribeye Marrow\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/ribeye-marrow/ribeye-marrow-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/ribeye-marrow/ribeye-marrow.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1263;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Righteous\";s:10:\"fontFamily\";s:20:\"Righteous, system-ui\";s:4:\"slug\";s:9:\"righteous\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/righteous/v17/1cXxaUPXBpj2rGoU7C9minuEicG01A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Righteous\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/righteous/righteous-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/righteous/righteous.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1264;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Risque\";s:10:\"fontFamily\";s:17:\"Risque, system-ui\";s:4:\"slug\";s:6:\"risque\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/risque/v22/VdGfAZUfHosahXxoDEYVBJ-T5g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Risque\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/risque/risque-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/risque/risque.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1265;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Road Rage\";s:10:\"fontFamily\";s:22:\"\"Road Rage\", system-ui\";s:4:\"slug\";s:9:\"road-rage\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/roadrage/v7/6NUU8F2fKAOBKjjr4ekvscYAwdRZfw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Road Rage\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/road-rage/road-rage-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/road-rage/road-rage.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1266;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Roboto\";s:10:\"fontFamily\";s:18:\"Roboto, sans-serif\";s:4:\"slug\";s:6:\"roboto\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxKKTM1K9nz.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzIXLsnzjYk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vBh05IsDqlA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc4AMX6lJBP.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xKKTM1K9nz.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vBh05IsDqlA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc4AMX6lJBP.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc4AMX6lJBP.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvBh05IsDqlA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-900-normal.svg\";}i:11;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc4AMX6lJBP.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Roboto\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto-900-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/roboto/roboto.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1267;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Roboto Condensed\";s:10:\"fontFamily\";s:30:\"\"Roboto Condensed\", sans-serif\";s:4:\"slug\";s:16:\"roboto-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyo_BM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUyovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAovBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVspfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUypfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUbpfBM731BKMSK.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64RgL5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64ZgK5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64UYK5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64RgK5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64SoK5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64cYN5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64f8N5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64ZgN5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64bEN5XxjLdSK37o.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Roboto Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed-900-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/roboto-condensed/roboto-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1268;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Roboto Flex\";s:10:\"fontFamily\";s:25:\"\"Roboto Flex\", sans-serif\";s:4:\"slug\";s:11:\"roboto-flex\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:290:\"https://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGJI8dxef0jQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Flex\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-flex/roboto-flex-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/roboto-flex/roboto-flex.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1269;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Roboto Mono\";s:10:\"fontFamily\";s:24:\"\"Roboto Mono\", monospace\";s:4:\"slug\";s:11:\"roboto-mono\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PRu-5Ip2sSQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-100-italic.svg\";}i:8;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W4AJi8SZwt.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Roboto Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono-700-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/roboto-mono/roboto-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1270;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Roboto Serif\";s:10:\"fontFamily\";s:21:\"\"Roboto Serif\", serif\";s:4:\"slug\";s:12:\"roboto-serif\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:153:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6J2Af5fR4k.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:156:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8ANxaV4nUFw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Roboto Serif\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif-900-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/roboto-serif/roboto-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1271;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Roboto Slab\";s:10:\"fontFamily\";s:20:\"\"Roboto Slab\", serif\";s:4:\"slug\";s:11:\"roboto-slab\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWbW5iddG-1A.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Roboto Slab\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/roboto-slab/roboto-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1272;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Rochester\";s:10:\"fontFamily\";s:18:\"Rochester, cursive\";s:4:\"slug\";s:9:\"rochester\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/rochester/v22/6ae-4KCqVa4Zy6Fif-Uy2lvWNTMwoQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Rochester\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/rochester/rochester-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/rochester/rochester.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1273;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Rock 3D\";s:10:\"fontFamily\";s:20:\"\"Rock 3D\", system-ui\";s:4:\"slug\";s:8:\"rock-3-d\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/rock3d/v10/yYLp0hrL0PCo651513GnwRnQyNI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rock 3D\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rock-3d/rock-3d-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/rock-3d/rock-3d.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1274;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Rock Salt\";s:10:\"fontFamily\";s:20:\"\"Rock Salt\", cursive\";s:4:\"slug\";s:9:\"rock-salt\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/rocksalt/v22/MwQ0bhv11fWD6QsAVOZbtUk7hbBWrA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Rock Salt\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/rock-salt/rock-salt-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/rock-salt/rock-salt.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1275;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"RocknRoll One\";s:10:\"fontFamily\";s:27:\"\"RocknRoll One\", sans-serif\";s:4:\"slug\";s:13:\"rocknroll-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guBhs7tfUxc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"RocknRoll One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/rocknroll-one/rocknroll-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/rocknroll-one/rocknroll-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1276;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Rokkitt\";s:10:\"fontFamily\";s:14:\"Rokkitt, serif\";s:4:\"slug\";s:7:\"rokkitt\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDOE76HvN6n.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGb-luc6nu9E.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rokkitt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/rokkitt/rokkitt.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1277;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Romanesco\";s:10:\"fontFamily\";s:18:\"Romanesco, cursive\";s:4:\"slug\";s:9:\"romanesco\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn2XwLqOqSBg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Romanesco\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/romanesco/romanesco-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/romanesco/romanesco.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1278;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Ropa Sans\";s:10:\"fontFamily\";s:23:\"\"Ropa Sans\", sans-serif\";s:4:\"slug\";s:9:\"ropa-sans\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKXzloU5KP2g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Ropa Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/ropa-sans/ropa-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNpcZef2mNE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Ropa Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/ropa-sans/ropa-sans-400-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/ropa-sans/ropa-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1279;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Rosario\";s:10:\"fontFamily\";s:19:\"Rosario, sans-serif\";s:4:\"slug\";s:7:\"rosario\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWc2d-YnOzUD.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWc2d-YnOzUD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWc2d-YnOzUD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmc2d-YnOzUD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmc2d-YnOzUD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfecFPiUDn08.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfecFPiUDn08.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfecFPiUDn08.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3fecFPiUDn08.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3fecFPiUDn08.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Rosario\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/rosario/rosario.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1280;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Rosarivo\";s:10:\"fontFamily\";s:15:\"Rosarivo, serif\";s:4:\"slug\";s:8:\"rosarivo\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/rosarivo/v22/PlI-Fl2lO6N9f8HaNAeH2nhMnNy5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Rosarivo\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rosarivo/rosarivo-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/rosarivo/v22/PlI4Fl2lO6N9f8HaNDeA0Hlumcy5ZX8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Rosarivo\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/rosarivo/rosarivo-400-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/rosarivo/rosarivo.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1281;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Rouge Script\";s:10:\"fontFamily\";s:23:\"\"Rouge Script\", cursive\";s:4:\"slug\";s:12:\"rouge-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/rougescript/v18/LYjFdGbiklMoCIQOw1Ep3S4PUfXbUJWq9g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rouge Script\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rouge-script/rouge-script-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/rouge-script/rouge-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1282;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Rowdies\";s:10:\"fontFamily\";s:18:\"Rowdies, system-ui\";s:4:\"slug\";s:7:\"rowdies\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/rowdies/v17/ptRMTieMYPNBAK219hth5OvyKQNute8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rowdies\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rowdies/rowdies-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/rowdies/v17/ptRJTieMYPNBAK21zrJJwObZNQo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rowdies\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rowdies/rowdies-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/rowdies/v17/ptRMTieMYPNBAK219gtm5OvyKQNute8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Rowdies\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/rowdies/rowdies-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/rowdies/rowdies.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1283;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Rozha One\";s:10:\"fontFamily\";s:18:\"\"Rozha One\", serif\";s:4:\"slug\";s:9:\"rozha-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/rozhaone/v15/AlZy_zVFtYP12Zncg2khcHf4XB0Tow.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Rozha One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/rozha-one/rozha-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/rozha-one/rozha-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1284;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Rubik\";s:10:\"fontFamily\";s:17:\"Rubik, sans-serif\";s:4:\"slug\";s:5:\"rubik\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1VU80V4bVkA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-900-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0U1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-300-italic.svg\";}i:8;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0U1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-400-italic.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0U1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEU1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-600-italic.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEU1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEU1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-800-italic.svg\";}i:13;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEU1dYPFkJ1O.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Rubik\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1285;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Rubik 80s Fade\";s:10:\"fontFamily\";s:27:\"\"Rubik 80s Fade\", system-ui\";s:4:\"slug\";s:15:\"rubik-80-s-fade\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhH1kbL8IHcK.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Rubik 80s Fade\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/rubik-80s-fade/rubik-80s-fade-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/rubik-80s-fade/rubik-80s-fade.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1286;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Rubik Beastly\";s:10:\"fontFamily\";s:26:\"\"Rubik Beastly\", system-ui\";s:4:\"slug\";s:13:\"rubik-beastly\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07n8_ApHqqk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Rubik Beastly\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/rubik-beastly/rubik-beastly-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/rubik-beastly/rubik-beastly.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1287;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Rubik Broken Fax\";s:10:\"fontFamily\";s:29:\"\"Rubik Broken Fax\", system-ui\";s:4:\"slug\";s:16:\"rubik-broken-fax\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/rubikbrokenfax/v1/NGSvv4rXG042O-GzH9sg1cUgl8w8YWqWdmGi300.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Rubik Broken Fax\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/rubik-broken-fax/rubik-broken-fax-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/rubik-broken-fax/rubik-broken-fax.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1288;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Rubik Bubbles\";s:10:\"fontFamily\";s:26:\"\"Rubik Bubbles\", system-ui\";s:4:\"slug\";s:13:\"rubik-bubbles\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTQNfDxyRXI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Rubik Bubbles\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/rubik-bubbles/rubik-bubbles-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/rubik-bubbles/rubik-bubbles.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1289;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Rubik Burned\";s:10:\"fontFamily\";s:25:\"\"Rubik Burned\", system-ui\";s:4:\"slug\";s:12:\"rubik-burned\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniGAuaCY5ZSg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rubik Burned\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rubik-burned/rubik-burned-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/rubik-burned/rubik-burned.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1290;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Rubik Dirt\";s:10:\"fontFamily\";s:23:\"\"Rubik Dirt\", system-ui\";s:4:\"slug\";s:10:\"rubik-dirt\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Rubik Dirt\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/rubik-dirt/rubik-dirt-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/rubik-dirt/rubik-dirt.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1291;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Rubik Distressed\";s:10:\"fontFamily\";s:29:\"\"Rubik Distressed\", system-ui\";s:4:\"slug\";s:16:\"rubik-distressed\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWUhatVBaGM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Rubik Distressed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/rubik-distressed/rubik-distressed-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/rubik-distressed/rubik-distressed.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1292;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Rubik Doodle Shadow\";s:10:\"fontFamily\";s:32:\"\"Rubik Doodle Shadow\", system-ui\";s:4:\"slug\";s:19:\"rubik-doodle-shadow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/rubikdoodleshadow/v1/rP2bp3im_k8G_wTVdvvMdHqmXTR3lEaLyK6Z3KOY7Gw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Rubik Doodle Shadow\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/rubik-doodle-shadow/rubik-doodle-shadow-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/rubik-doodle-shadow/rubik-doodle-shadow.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1293;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Rubik Doodle Triangles\";s:10:\"fontFamily\";s:35:\"\"Rubik Doodle Triangles\", system-ui\";s:4:\"slug\";s:22:\"rubik-doodle-triangles\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/rubikdoodletriangles/v1/esDA301BLOmMKxKspb3g-domRuLPeaSn2bTzdL2_slZxgWE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Rubik Doodle Triangles\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/rubik-doodle-triangles/rubik-doodle-triangles-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/rubik-doodle-triangles/rubik-doodle-triangles.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1294;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Rubik Gemstones\";s:10:\"fontFamily\";s:28:\"\"Rubik Gemstones\", system-ui\";s:4:\"slug\";s:15:\"rubik-gemstones\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOjSnGqi1GMw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Rubik Gemstones\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/rubik-gemstones/rubik-gemstones-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/rubik-gemstones/rubik-gemstones.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1295;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Rubik Glitch\";s:10:\"fontFamily\";s:25:\"\"Rubik Glitch\", system-ui\";s:4:\"slug\";s:12:\"rubik-glitch\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvnS7HONiSFQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rubik Glitch\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rubik-glitch/rubik-glitch-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/rubik-glitch/rubik-glitch.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1296;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Rubik Iso\";s:10:\"fontFamily\";s:22:\"\"Rubik Iso\", system-ui\";s:4:\"slug\";s:9:\"rubik-iso\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABefACvy_1BA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Rubik Iso\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/rubik-iso/rubik-iso-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/rubik-iso/rubik-iso.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1297;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Rubik Lines\";s:10:\"fontFamily\";s:24:\"\"Rubik Lines\", system-ui\";s:4:\"slug\";s:11:\"rubik-lines\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rubiklines/v1/_gP81R3vsjYzVW2Y6xFF-GS0YPp7oSNy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Rubik Lines\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/rubik-lines/rubik-lines-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/rubik-lines/rubik-lines.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1298;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Rubik Maps\";s:10:\"fontFamily\";s:23:\"\"Rubik Maps\", system-ui\";s:4:\"slug\";s:10:\"rubik-maps\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/rubikmaps/v1/Gw6_wcjl80TZK9XxtbbejSMUChRqp9k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Rubik Maps\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/rubik-maps/rubik-maps-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/rubik-maps/rubik-maps.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1299;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Rubik Marker Hatch\";s:10:\"fontFamily\";s:31:\"\"Rubik Marker Hatch\", system-ui\";s:4:\"slug\";s:18:\"rubik-marker-hatch\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQCb4iw0H6zw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Rubik Marker Hatch\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/rubik-marker-hatch/rubik-marker-hatch-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/rubik-marker-hatch/rubik-marker-hatch.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1300;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Rubik Maze\";s:10:\"fontFamily\";s:23:\"\"Rubik Maze\", system-ui\";s:4:\"slug\";s:10:\"rubik-maze\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAXvinS-bxV4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Rubik Maze\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/rubik-maze/rubik-maze-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/rubik-maze/rubik-maze.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1301;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Rubik Microbe\";s:10:\"fontFamily\";s:26:\"\"Rubik Microbe\", system-ui\";s:4:\"slug\";s:13:\"rubik-microbe\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcsoaaKgiauE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Rubik Microbe\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/rubik-microbe/rubik-microbe-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/rubik-microbe/rubik-microbe.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1302;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Rubik Mono One\";s:10:\"fontFamily\";s:28:\"\"Rubik Mono One\", sans-serif\";s:4:\"slug\";s:14:\"rubik-mono-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/rubikmonoone/v18/UqyJK8kPP3hjw6ANTdfRk9YSN-81RqQrc_j9.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Rubik Mono One\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/rubik-mono-one/rubik-mono-one-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/rubik-mono-one/rubik-mono-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1303;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Rubik Moonrocks\";s:10:\"fontFamily\";s:28:\"\"Rubik Moonrocks\", system-ui\";s:4:\"slug\";s:15:\"rubik-moonrocks\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/rubikmoonrocks/v5/845ANMAmAI2VUZMLu_W0M7HqlDHnWMD7JGy1Sw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Rubik Moonrocks\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/rubik-moonrocks/rubik-moonrocks-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/rubik-moonrocks/rubik-moonrocks.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1304;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Rubik Pixels\";s:10:\"fontFamily\";s:25:\"\"Rubik Pixels\", system-ui\";s:4:\"slug\";s:12:\"rubik-pixels\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSbRYRagrQrA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Rubik Pixels\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/rubik-pixels/rubik-pixels-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/rubik-pixels/rubik-pixels.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1305;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Rubik Puddles\";s:10:\"fontFamily\";s:26:\"\"Rubik Puddles\", system-ui\";s:4:\"slug\";s:13:\"rubik-puddles\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfW0wVMT-aE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Rubik Puddles\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/rubik-puddles/rubik-puddles-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/rubik-puddles/rubik-puddles.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1306;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Rubik Scribble\";s:10:\"fontFamily\";s:27:\"\"Rubik Scribble\", system-ui\";s:4:\"slug\";s:14:\"rubik-scribble\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/rubikscribble/v1/snfzs0Cp48d67SuHQOpjXLsQpbqeSjORSo9W.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Rubik Scribble\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/rubik-scribble/rubik-scribble-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/rubik-scribble/rubik-scribble.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1307;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Rubik Spray Paint\";s:10:\"fontFamily\";s:30:\"\"Rubik Spray Paint\", system-ui\";s:4:\"slug\";s:17:\"rubik-spray-paint\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro7QoaBZQxP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Rubik Spray Paint\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/rubik-spray-paint/rubik-spray-paint-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/rubik-spray-paint/rubik-spray-paint.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1308;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Rubik Storm\";s:10:\"fontFamily\";s:24:\"\"Rubik Storm\", system-ui\";s:4:\"slug\";s:11:\"rubik-storm\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL4T2Xh9NQk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Rubik Storm\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/rubik-storm/rubik-storm-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/rubik-storm/rubik-storm.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1309;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Rubik Vinyl\";s:10:\"fontFamily\";s:24:\"\"Rubik Vinyl\", system-ui\";s:4:\"slug\";s:11:\"rubik-vinyl\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXbxox2ztOU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Rubik Vinyl\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/rubik-vinyl/rubik-vinyl-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/rubik-vinyl/rubik-vinyl.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1310;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Rubik Wet Paint\";s:10:\"fontFamily\";s:28:\"\"Rubik Wet Paint\", system-ui\";s:4:\"slug\";s:15:\"rubik-wet-paint\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F_jz313DuvQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Rubik Wet Paint\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/rubik-wet-paint/rubik-wet-paint-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/rubik-wet-paint/rubik-wet-paint.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1311;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Ruda\";s:10:\"fontFamily\";s:16:\"Ruda, sans-serif\";s:4:\"slug\";s:4:\"ruda\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_72KiSGg-H.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Ruda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_72KiSGg-H.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Ruda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_72KiSGg-H.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Ruda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_72KiSGg-H.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Ruda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_72KiSGg-H.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Ruda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_72KiSGg-H.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Ruda\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda-900-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/ruda/ruda.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1312;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Rufina\";s:10:\"fontFamily\";s:13:\"Rufina, serif\";s:4:\"slug\";s:6:\"rufina\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/rufina/v15/Yq6V-LyURyLy-aKyphRktOdClg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Rufina\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rufina/rufina-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/rufina/v15/Yq6W-LyURyLy-aKKHztAucxenxE0SA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Rufina\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/rufina/rufina-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/rufina/rufina.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1313;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Ruge Boogie\";s:10:\"fontFamily\";s:22:\"\"Ruge Boogie\", cursive\";s:4:\"slug\";s:11:\"ruge-boogie\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/rugeboogie/v28/JIA3UVFwbHRF_GIWSMhKNROnPzUveSxy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Ruge Boogie\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ruge-boogie/ruge-boogie-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/ruge-boogie/ruge-boogie.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1314;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ruluko\";s:10:\"fontFamily\";s:18:\"Ruluko, sans-serif\";s:4:\"slug\";s:6:\"ruluko\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pDqWzKX_QmA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ruluko\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ruluko/ruluko-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ruluko/ruluko.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1315;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Rum Raisin\";s:10:\"fontFamily\";s:24:\"\"Rum Raisin\", sans-serif\";s:4:\"slug\";s:10:\"rum-raisin\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/rumraisin/v22/nwpRtKu3Ih8D5avB4h2uJ3qIywA7eMM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Rum Raisin\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/rum-raisin/rum-raisin-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/rum-raisin/rum-raisin.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1316;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Ruslan Display\";s:10:\"fontFamily\";s:27:\"\"Ruslan Display\", system-ui\";s:4:\"slug\";s:14:\"ruslan-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ruslandisplay/v25/Gw6jwczl81XcIZuckK_e3UpfdzxuldyFvm1n.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ruslan Display\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ruslan-display/ruslan-display-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/ruslan-display/ruslan-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1317;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Russo One\";s:10:\"fontFamily\";s:23:\"\"Russo One\", sans-serif\";s:4:\"slug\";s:9:\"russo-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/russoone/v16/Z9XUDmZRWg6M1LvRYsH-zcOInrib9Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Russo One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/russo-one/russo-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/russo-one/russo-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1318;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ruthie\";s:10:\"fontFamily\";s:15:\"Ruthie, cursive\";s:4:\"slug\";s:6:\"ruthie\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/ruthie/v26/gokvH63sGkdqXuU9kT53Q2u_mQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ruthie\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ruthie/ruthie-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ruthie/ruthie.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1319;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ruwudu\";s:10:\"fontFamily\";s:13:\"Ruwudu, serif\";s:4:\"slug\";s:6:\"ruwudu\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/ruwudu/v4/syky-y1tj6UzRKfNkACT9tPdpw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ruwudu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ruwudu/ruwudu-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/ruwudu/v4/sykx-y1tj6UzRKf1YSm3-_jBrlSILg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ruwudu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ruwudu/ruwudu-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/ruwudu/v4/sykx-y1tj6UzRKf1TS63-_jBrlSILg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ruwudu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ruwudu/ruwudu-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/ruwudu/v4/sykx-y1tj6UzRKf1KS-3-_jBrlSILg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ruwudu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ruwudu/ruwudu-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ruwudu/ruwudu.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1320;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Rye\";s:10:\"fontFamily\";s:14:\"Rye, system-ui\";s:4:\"slug\";s:3:\"rye\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:64:\"https://fonts.gstatic.com/s/rye/v15/r05XGLJT86YDE5TsXOqx4w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Rye\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/rye/rye-400-normal.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/rye/rye.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1321;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"STIX Two Text\";s:10:\"fontFamily\";s:22:\"\"STIX Two Text\", serif\";s:4:\"slug\";s:13:\"stix-two-text\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOdWxFMN1WD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOdWxFMN1WD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOdWxFMN1WD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOdWxFMN1WD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURBuMkWDmSo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURBuMkWDmSo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURBuMkWDmSo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/stixtwotext/v12/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURBuMkWDmSo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"STIX Two Text\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/stix-two-text/stix-two-text.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1322;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Sacramento\";s:10:\"fontFamily\";s:19:\"Sacramento, cursive\";s:4:\"slug\";s:10:\"sacramento\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sacramento/v15/buEzpo6gcdjy0EiZMBUG0C8V_NxLeiw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sacramento\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sacramento/sacramento-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/sacramento/sacramento.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1323;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Sahitya\";s:10:\"fontFamily\";s:14:\"Sahitya, serif\";s:4:\"slug\";s:7:\"sahitya\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaSIFPywEDnI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sahitya\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sahitya/sahitya-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyEvEnvSexI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sahitya\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sahitya/sahitya-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/sahitya/sahitya.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1324;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Sail\";s:10:\"fontFamily\";s:15:\"Sail, system-ui\";s:4:\"slug\";s:4:\"sail\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBHDADYAbvw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sail\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sail/sail-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/sail/sail.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1325;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Saira\";s:10:\"fontFamily\";s:17:\"Saira, sans-serif\";s:4:\"slug\";s:5:\"saira\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/saira/v20/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFos07lwYmUVY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/saira/v20/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxliQjQVYmxA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Saira\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/saira/saira-900-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/saira/saira.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1326;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Saira Condensed\";s:10:\"fontFamily\";s:29:\"\"Saira Condensed\", sans-serif\";s:4:\"slug\";s:15:\"saira-condensed\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetF2omSrzS8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfoOFE-IyCrw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg9aeepi2lHw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Saira Condensed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/saira-condensed/saira-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1327;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Saira Extra Condensed\";s:10:\"fontFamily\";s:35:\"\"Saira Extra Condensed\", sans-serif\";s:4:\"slug\";s:21:\"saira-extra-condensed\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:106:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0j09i5ss3a3.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT6kL11Ct8sw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R2QBgum-uoQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Saira Extra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed-900-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/saira-extra-condensed/saira-extra-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1328;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Saira Semi Condensed\";s:10:\"fontFamily\";s:34:\"\"Saira Semi Condensed\", sans-serif\";s:4:\"slug\";s:20:\"saira-semi-condensed\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOY8rXT-8V8.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8OYuceqGT-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MTg3j36Ebz.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Saira Semi Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed-900-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/saira-semi-condensed/saira-semi-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1329;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Saira Stencil One\";s:10:\"fontFamily\";s:30:\"\"Saira Stencil One\", system-ui\";s:4:\"slug\";s:17:\"saira-stencil-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/sairastencilone/v16/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsJawif2YQ2.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Saira Stencil One\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/saira-stencil-one/saira-stencil-one-400-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/saira-stencil-one/saira-stencil-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1330;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Salsa\";s:10:\"fontFamily\";s:16:\"Salsa, system-ui\";s:4:\"slug\";s:5:\"salsa\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/salsa/v21/gNMKW3FiRpKj-imd8ncKEZez.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Salsa\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/salsa/salsa-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/salsa/salsa.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1331;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Sanchez\";s:10:\"fontFamily\";s:14:\"Sanchez, serif\";s:4:\"slug\";s:7:\"sanchez\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/sanchez/v15/Ycm2sZJORluHnXbITmtb_BwE1l0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sanchez\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sanchez/sanchez-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/sanchez/v15/Ycm0sZJORluHnXbIfmxR_T4Bxl3gkw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sanchez\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sanchez/sanchez-400-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/sanchez/sanchez.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1332;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Sancreek\";s:10:\"fontFamily\";s:19:\"Sancreek, system-ui\";s:4:\"slug\";s:8:\"sancreek\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/sancreek/v25/pxiHypAnsdxUm159X7D7XV9NEe-K.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sancreek\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sancreek/sancreek-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/sancreek/sancreek.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1333;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Sansita\";s:10:\"fontFamily\";s:19:\"Sansita, sans-serif\";s:4:\"slug\";s:7:\"sansita\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBy7TXFf3qw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxTFNazqx2xg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXx0wqVv3_g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-w4dqz_joDQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-700-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXx0wqVv3_g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-w4dqz_joDQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-800-italic.svg\";}i:6;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXx0wqVv3_g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-900-normal.svg\";}i:7;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-w4dqz_joDQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sansita\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/sansita/sansita.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1334;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Sansita Swashed\";s:10:\"fontFamily\";s:28:\"\"Sansita Swashed\", system-ui\";s:4:\"slug\";s:15:\"sansita-swashed\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/sansitaswashed/v18/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubT8VehmEa4Q.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sansita Swashed\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/sansita-swashed/sansita-swashed.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1335;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Sarabun\";s:10:\"fontFamily\";s:19:\"Sarabun, sans-serif\";s:4:\"slug\";s:7:\"sarabun\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/sarabun/v15/DtVhJx26TKEr37c9YHZJn3YI5gnOpg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/sarabun/v15/DtVnJx26TKEr37c9aBBx_nwJxAzephhN.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YNpoulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxUl0s6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YL5rulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxNl4s6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/sarabun/v15/DtVjJx26TKEr37c9WBdDnlQN9gk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/sarabun/v15/DtVhJx26TKEr37c9aBBJn3YI5gnOpg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YOZqulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxbl8s6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YMptulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxQlgs6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YK5sulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxJlks6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YLJvulkm6gDXvwE.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxOlos6yLSrwFUlw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Sarabun\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun-800-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/sarabun/sarabun.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1336;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Sarala\";s:10:\"fontFamily\";s:18:\"Sarala, sans-serif\";s:4:\"slug\";s:6:\"sarala\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/sarala/v12/uK_y4riEZv4o1w9RDx0TMv6EXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Sarala\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/sarala/sarala-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/sarala/v12/uK_x4riEZv4o1w9ptjI3P9WYVkMpXA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Sarala\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/sarala/sarala-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/sarala/sarala.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1337;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Sarina\";s:10:\"fontFamily\";s:17:\"Sarina, system-ui\";s:4:\"slug\";s:6:\"sarina\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/sarina/v23/-F6wfjF3ITQwasLhK0DUriBQxw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Sarina\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/sarina/sarina-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/sarina/sarina.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1338;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Sarpanch\";s:10:\"fontFamily\";s:20:\"Sarpanch, sans-serif\";s:4:\"slug\";s:8:\"sarpanch\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/sarpanch/v13/hESy6Xt4NCpRuk6Pzh2FRIrX_20n.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sarpanch\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziV0ba7a1HEuRHkM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sarpanch\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziVYaq7a1HEuRHkM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sarpanch\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziU8a67a1HEuRHkM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sarpanch\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziUgaK7a1HEuRHkM.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sarpanch\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziUEaa7a1HEuRHkM.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sarpanch\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/sarpanch/sarpanch.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1339;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Sassy Frass\";s:10:\"fontFamily\";s:22:\"\"Sassy Frass\", cursive\";s:4:\"slug\";s:11:\"sassy-frass\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sassyfrass/v7/LhWhMVrGOe0FLb97BjhsE99YGNWQg_am.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Sassy Frass\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/sassy-frass/sassy-frass-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/sassy-frass/sassy-frass.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1340;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Satisfy\";s:10:\"fontFamily\";s:16:\"Satisfy, cursive\";s:4:\"slug\";s:7:\"satisfy\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/satisfy/v21/rP2Hp2yn6lkG50LoOZGCHBeHFl0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Satisfy\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/satisfy/satisfy-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/satisfy/satisfy.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1341;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Sawarabi Gothic\";s:10:\"fontFamily\";s:29:\"\"Sawarabi Gothic\", sans-serif\";s:4:\"slug\";s:15:\"sawarabi-gothic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NACk3E2YljQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sawarabi Gothic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sawarabi-gothic/sawarabi-gothic-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/sawarabi-gothic/sawarabi-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1342;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Sawarabi Mincho\";s:10:\"fontFamily\";s:24:\"\"Sawarabi Mincho\", serif\";s:4:\"slug\";s:15:\"sawarabi-mincho\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTKKhP46UDUw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Sawarabi Mincho\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/sawarabi-mincho/sawarabi-mincho-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/sawarabi-mincho/sawarabi-mincho.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1343;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Scada\";s:10:\"fontFamily\";s:17:\"Scada, sans-serif\";s:4:\"slug\";s:5:\"scada\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJtxzUobkvv.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Scada\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/scada/scada-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTQKa1vvffg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Scada\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/scada/scada-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BElRVfmZOE5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Scada\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/scada/scada-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1bEYfE5p6g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Scada\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/scada/scada-700-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/scada/scada.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1344;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Scheherazade New\";s:10:\"fontFamily\";s:25:\"\"Scheherazade New\", serif\";s:4:\"slug\";s:16:\"scheherazade-new\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/scheherazadenew/v15/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwZsOl4p5Is.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Scheherazade New\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/scheherazade-new/scheherazade-new-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM_dFHlMC-IKnoSE.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Scheherazade New\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/scheherazade-new/scheherazade-new-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM9tCHlMC-IKnoSE.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Scheherazade New\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/scheherazade-new/scheherazade-new-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlMC-IKnoSE.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Scheherazade New\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/scheherazade-new/scheherazade-new-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/scheherazade-new/scheherazade-new.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1345;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Schibsted Grotesk\";s:10:\"fontFamily\";s:31:\"\"Schibsted Grotesk\", sans-serif\";s:4:\"slug\";s:17:\"schibsted-grotesk\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEASsJuXFGVOQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEASsJuXFGVOQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYASsJuXFGVOQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYASsJuXFGVOQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYASsJuXFGVOQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YASsJuXFGVOQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhvflSFOTXs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhvflSFOTXs.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hvflSFOTXs.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hvflSFOTXs.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hvflSFOTXs.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hvflSFOTXs.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:17:\"Schibsted Grotesk\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk-900-italic.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/schibsted-grotesk/schibsted-grotesk.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1346;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Schoolbell\";s:10:\"fontFamily\";s:19:\"Schoolbell, cursive\";s:4:\"slug\";s:10:\"schoolbell\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxcQ6mRqfiQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Schoolbell\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/schoolbell/schoolbell-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/schoolbell/schoolbell.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1347;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Scope One\";s:10:\"fontFamily\";s:18:\"\"Scope One\", serif\";s:4:\"slug\";s:9:\"scope-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1Xk_MJMGxiQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Scope One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/scope-one/scope-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/scope-one/scope-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1348;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Seaweed Script\";s:10:\"fontFamily\";s:27:\"\"Seaweed Script\", system-ui\";s:4:\"slug\";s:14:\"seaweed-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/seaweedscript/v15/bx6cNx6Tne2pxOATYE8C_Rsoe0WM-KcGVbLW.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Seaweed Script\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/seaweed-script/seaweed-script-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/seaweed-script/seaweed-script.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1349;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Secular One\";s:10:\"fontFamily\";s:25:\"\"Secular One\", sans-serif\";s:4:\"slug\";s:11:\"secular-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/secularone/v12/8QINdiTajsj_87rMuMdKypDgMul7LJpK.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Secular One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/secular-one/secular-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/secular-one/secular-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1350;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Sedgwick Ave\";s:10:\"fontFamily\";s:23:\"\"Sedgwick Ave\", cursive\";s:4:\"slug\";s:12:\"sedgwick-ave\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8W2g1Vcf5JA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Sedgwick Ave\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/sedgwick-ave/sedgwick-ave-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/sedgwick-ave/sedgwick-ave.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1351;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Sedgwick Ave Display\";s:10:\"fontFamily\";s:31:\"\"Sedgwick Ave Display\", cursive\";s:4:\"slug\";s:20:\"sedgwick-ave-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/sedgwickavedisplay/v21/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2c2d-YnOzUD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sedgwick Ave Display\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sedgwick-ave-display/sedgwick-ave-display-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/sedgwick-ave-display/sedgwick-ave-display.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1352;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:3:\"Sen\";s:10:\"fontFamily\";s:15:\"Sen, sans-serif\";s:4:\"slug\";s:3:\"sen\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISCq5H4vKlD9q78A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Sen\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/sen/sen-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISBi5H4vKlD9q78A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Sen\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/sen/sen-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISPS-H4vKlD9q78A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Sen\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/sen/sen-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISM2-H4vKlD9q78A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Sen\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/sen/sen-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISKq-H4vKlD9q78A.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:3:\"Sen\";s:7:\"preview\";s:65:\"https://s.w.org/images/fonts/17.7/previews/sen/sen-800-normal.svg\";}}s:7:\"preview\";s:54:\"https://s.w.org/images/fonts/17.7/previews/sen/sen.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1353;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Send Flowers\";s:10:\"fontFamily\";s:23:\"\"Send Flowers\", cursive\";s:4:\"slug\";s:12:\"send-flowers\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sendflowers/v5/If2PXTjtZS-0Xqy13uCQSULvwgjjouU1iw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Send Flowers\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/send-flowers/send-flowers-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/send-flowers/send-flowers.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1354;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Sevillana\";s:10:\"fontFamily\";s:20:\"Sevillana, system-ui\";s:4:\"slug\";s:9:\"sevillana\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/sevillana/v23/KFOlCnWFscmDt1Bfiy1vBh05IsDqlA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Sevillana\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/sevillana/sevillana-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/sevillana/sevillana.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1355;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Seymour One\";s:10:\"fontFamily\";s:25:\"\"Seymour One\", sans-serif\";s:4:\"slug\";s:11:\"seymour-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/seymourone/v23/4iCp6Khla9xbjQpoWGGd0myNPYBvgpUI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Seymour One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/seymour-one/seymour-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/seymour-one/seymour-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1356;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Shadows Into Light\";s:10:\"fontFamily\";s:29:\"\"Shadows Into Light\", cursive\";s:4:\"slug\";s:18:\"shadows-into-light\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/shadowsintolight/v19/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDd8r4xzSMYA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Shadows Into Light\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/shadows-into-light/shadows-into-light-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/shadows-into-light/shadows-into-light.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1357;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:22:\"Shadows Into Light Two\";s:10:\"fontFamily\";s:33:\"\"Shadows Into Light Two\", cursive\";s:4:\"slug\";s:22:\"shadows-into-light-two\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/shadowsintolighttwo/v17/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlA7NGLNnIF0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:22:\"Shadows Into Light Two\";s:7:\"preview\";s:103:\"https://s.w.org/images/fonts/17.7/previews/shadows-into-light-two/shadows-into-light-two-400-normal.svg\";}}s:7:\"preview\";s:92:\"https://s.w.org/images/fonts/17.7/previews/shadows-into-light-two/shadows-into-light-two.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1358;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Shalimar\";s:10:\"fontFamily\";s:17:\"Shalimar, cursive\";s:4:\"slug\";s:8:\"shalimar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/shalimar/v7/uU9MCBoE6I6iNWFUvTP08PCOg0uX.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Shalimar\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/shalimar/shalimar-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/shalimar/shalimar.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1359;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Shantell Sans\";s:10:\"fontFamily\";s:26:\"\"Shantell Sans\", system-ui\";s:4:\"slug\";s:13:\"shantell-sans\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2izyPwxjyRN.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2izyPwxjyRN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2izyPwxjyRN.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGizyPwxjyRN.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGizyPwxjyRN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:154:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGizyPwxjyRN.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:157:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wv0TijRNYgQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-300-italic.svg\";}i:7;a:5:{s:3:\"src\";s:157:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wv0TijRNYgQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:157:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wv0TijRNYgQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-500-italic.svg\";}i:9;a:5:{s:3:\"src\";s:157:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywv0TijRNYgQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:157:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywv0TijRNYgQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-700-italic.svg\";}i:11;a:5:{s:3:\"src\";s:157:\"https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywv0TijRNYgQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Shantell Sans\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans-800-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/shantell-sans/shantell-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1360;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Shanti\";s:10:\"fontFamily\";s:18:\"Shanti, sans-serif\";s:4:\"slug\";s:6:\"shanti\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/shanti/v25/t5thIREMM4uSDgzgVkezpKfwzA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Shanti\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/shanti/shanti-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/shanti/shanti.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1361;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Share\";s:10:\"fontFamily\";s:17:\"Share, sans-serif\";s:4:\"slug\";s:5:\"share\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/share/v18/i7dEIFliZjKNF5VIHLq2cV5d.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Share\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/share/share-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/share/v18/i7dKIFliZjKNF6VPFruUdE5dWFM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Share\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/share/share-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/share/v18/i7dJIFliZjKNF63xM567WkJUQUq7.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Share\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/share/share-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/share/v18/i7dPIFliZjKNF6VPLgK7UEN2RFq7AwU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Share\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/share/share-700-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/share/share.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1362;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Share Tech\";s:10:\"fontFamily\";s:24:\"\"Share Tech\", sans-serif\";s:4:\"slug\";s:10:\"share-tech\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sharetech/v21/7cHtv4Uyi5K0OeZ7bohUwH8DmTcibrA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Share Tech\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/share-tech/share-tech-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/share-tech/share-tech.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1363;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Share Tech Mono\";s:10:\"fontFamily\";s:28:\"\"Share Tech Mono\", monospace\";s:4:\"slug\";s:15:\"share-tech-mono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7oQsEIc3Xew.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Share Tech Mono\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/share-tech-mono/share-tech-mono-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/share-tech-mono/share-tech-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1364;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Shippori Antique\";s:10:\"fontFamily\";s:30:\"\"Shippori Antique\", sans-serif\";s:4:\"slug\";s:16:\"shippori-antique\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8lJPg-IUDNg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Shippori Antique\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/shippori-antique/shippori-antique-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/shippori-antique/shippori-antique.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1365;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Shippori Antique B1\";s:10:\"fontFamily\";s:33:\"\"Shippori Antique B1\", sans-serif\";s:4:\"slug\";s:20:\"shippori-antique-b-1\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRRCj9-5Y8Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Shippori Antique B1\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/shippori-antique-b1/shippori-antique-b1-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/shippori-antique-b1/shippori-antique-b1.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1366;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Shippori Mincho\";s:10:\"fontFamily\";s:24:\"\"Shippori Mincho\", serif\";s:4:\"slug\";s:15:\"shippori-mincho\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA3v-C7LoS7g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Shippori Mincho\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho/shippori-mincho-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am4ZEO5--2zg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Shippori Mincho\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho/shippori-mincho-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm4ZEO5--2zg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Shippori Mincho\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho/shippori-mincho-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm4ZEO5--2zg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Shippori Mincho\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho/shippori-mincho-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om4ZEO5--2zg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Shippori Mincho\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho/shippori-mincho-800-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho/shippori-mincho.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1367;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Shippori Mincho B1\";s:10:\"fontFamily\";s:27:\"\"Shippori Mincho B1\", serif\";s:4:\"slug\";s:19:\"shippori-mincho-b-1\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/shipporiminchob1/v21/wXK2E2wCr44tulPdnn-xbIpJ9RgT9-nyi6Br1lO97Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Shippori Mincho B1\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho-b1/shippori-mincho-b1-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/shipporiminchob1/v21/wXK1E2wCr44tulPdnn-xbIpJ9RgT9-nKeolP23ih5H4Uug.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Shippori Mincho B1\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho-b1/shippori-mincho-b1-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/shipporiminchob1/v21/wXK1E2wCr44tulPdnn-xbIpJ9RgT9-nKVo5P23ih5H4Uug.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Shippori Mincho B1\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho-b1/shippori-mincho-b1-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/shipporiminchob1/v21/wXK1E2wCr44tulPdnn-xbIpJ9RgT9-nKMo9P23ih5H4Uug.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Shippori Mincho B1\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho-b1/shippori-mincho-b1-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/shipporiminchob1/v21/wXK1E2wCr44tulPdnn-xbIpJ9RgT9-nKLoxP23ih5H4Uug.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Shippori Mincho B1\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho-b1/shippori-mincho-b1-800-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/shippori-mincho-b1/shippori-mincho-b1.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1368;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Shizuru\";s:10:\"fontFamily\";s:18:\"Shizuru, system-ui\";s:4:\"slug\";s:7:\"shizuru\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/shizuru/v10/O4ZSFGfvnxFiCA3i30cJlgUTj2A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Shizuru\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/shizuru/shizuru-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/shizuru/shizuru.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1369;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Shojumaru\";s:10:\"fontFamily\";s:20:\"Shojumaru, system-ui\";s:4:\"slug\";s:9:\"shojumaru\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMARJek0vA8A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Shojumaru\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/shojumaru/shojumaru-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/shojumaru/shojumaru.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1370;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Short Stack\";s:10:\"fontFamily\";s:22:\"\"Short Stack\", cursive\";s:4:\"slug\";s:11:\"short-stack\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SXcX8D0nq6.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Short Stack\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/short-stack/short-stack-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/short-stack/short-stack.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1371;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Shrikhand\";s:10:\"fontFamily\";s:20:\"Shrikhand, system-ui\";s:4:\"slug\";s:9:\"shrikhand\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/shrikhand/v15/a8IbNovtLWfR7T7bMJwbAYiQ0zhMtA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Shrikhand\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/shrikhand/shrikhand-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/shrikhand/shrikhand.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1372;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Siemreap\";s:10:\"fontFamily\";s:20:\"Siemreap, sans-serif\";s:4:\"slug\";s:8:\"siemreap\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/siemreap/v28/Gg82N5oFbgLvHAfNl2YenA8DLXpe.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Siemreap\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/siemreap/siemreap-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/siemreap/siemreap.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1373;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Sigmar\";s:10:\"fontFamily\";s:17:\"Sigmar, system-ui\";s:4:\"slug\";s:6:\"sigmar\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/sigmar/v7/hv-XlzJgIE8a85pUaGY3MTFgVg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Sigmar\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/sigmar/sigmar-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/sigmar/sigmar.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1374;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Sigmar One\";s:10:\"fontFamily\";s:23:\"\"Sigmar One\", system-ui\";s:4:\"slug\";s:10:\"sigmar-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sigmarone/v18/co3DmWZ8kjZuErj9Ta3dk6bjp3Di8U0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sigmar One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sigmar-one/sigmar-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/sigmar-one/sigmar-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1375;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Signika\";s:10:\"fontFamily\";s:19:\"Signika, sans-serif\";s:4:\"slug\";s:7:\"signika\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r93zuYyDMngt4xjw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Signika\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/signika/signika-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuYyDMngt4xjw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Signika\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/signika/signika-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9szuYyDMngt4xjw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Signika\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/signika/signika-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9XzyYyDMngt4xjw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Signika\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/signika/signika-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9ZjyYyDMngt4xjw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Signika\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/signika/signika-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/signika/signika.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1376;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Signika Negative\";s:10:\"fontFamily\";s:30:\"\"Signika Negative\", sans-serif\";s:4:\"slug\";s:16:\"signika-negative\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73pt9hiuEq8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Signika Negative\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/signika-negative/signika-negative-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73pt9hiuEq8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Signika Negative\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/signika-negative/signika-negative-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73pt9hiuEq8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Signika Negative\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/signika-negative/signika-negative-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3pt9hiuEq8.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Signika Negative\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/signika-negative/signika-negative-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3pt9hiuEq8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Signika Negative\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/signika-negative/signika-negative-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/signika-negative/signika-negative.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1377;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Silkscreen\";s:10:\"fontFamily\";s:21:\"Silkscreen, system-ui\";s:4:\"slug\";s:10:\"silkscreen\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/silkscreen/v4/m8JXjfVPf62XiF7kO-i9ULFvamODxdI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Silkscreen\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/silkscreen/silkscreen-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/silkscreen/v4/m8JUjfVPf62XiF7kO-i9aAhATm6o2dudFvc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Silkscreen\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/silkscreen/silkscreen-700-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/silkscreen/silkscreen.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1378;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Simonetta\";s:10:\"fontFamily\";s:20:\"Simonetta, system-ui\";s:4:\"slug\";s:9:\"simonetta\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/simonetta/v27/x3dickHVYrCU5BU15c4BefACvy_1BA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Simonetta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/simonetta/simonetta-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/simonetta/v27/x3dkckHVYrCU5BU15c4xfvoDnSrlBBsy.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Simonetta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/simonetta/simonetta-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/simonetta/v27/x3dnckHVYrCU5BU15c45-N0msgTpDQIrGg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Simonetta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/simonetta/simonetta-900-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/simonetta/v27/x3d5ckHVYrCU5BU15c4xfsKCsA7oLwc7Gn88.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Simonetta\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/simonetta/simonetta-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/simonetta/simonetta.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1379;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Single Day\";s:10:\"fontFamily\";s:23:\"\"Single Day\", system-ui\";s:4:\"slug\";s:10:\"single-day\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/singleday/v17/LYjHdGDjlEgoAcF95EI5jV8FUNfeQJU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Single Day\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/single-day/single-day-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/single-day/single-day.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1380;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Sintony\";s:10:\"fontFamily\";s:19:\"Sintony, sans-serif\";s:4:\"slug\";s:7:\"sintony\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/sintony/v15/XoHm2YDqR7-98cVUITEnu98ojjs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sintony\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sintony/sintony-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sintony/v15/XoHj2YDqR7-98cVUGYgIn9IDkjLp6C8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sintony\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sintony/sintony-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/sintony/sintony.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1381;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Sirin Stencil\";s:10:\"fontFamily\";s:26:\"\"Sirin Stencil\", system-ui\";s:4:\"slug\";s:13:\"sirin-stencil\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/sirinstencil/v25/mem4YaWwznmLx-lzGfN7MdRydc1GBq6al6o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sirin Stencil\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sirin-stencil/sirin-stencil-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/sirin-stencil/sirin-stencil.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1382;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Six Caps\";s:10:\"fontFamily\";s:22:\"\"Six Caps\", sans-serif\";s:4:\"slug\";s:8:\"six-caps\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/sixcaps/v20/6ae_4KGrU7VR7bNmabcX9XXaPCop.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Six Caps\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/six-caps/six-caps-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/six-caps/six-caps.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1383;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Skranji\";s:10:\"fontFamily\";s:18:\"Skranji, system-ui\";s:4:\"slug\";s:7:\"skranji\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYz6uklTm3Ek.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Skranji\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/skranji/skranji-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlnNwED-b4g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Skranji\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/skranji/skranji-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/skranji/skranji.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1384;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Slabo 13px\";s:10:\"fontFamily\";s:19:\"\"Slabo 13px\", serif\";s:4:\"slug\";s:11:\"slabo-13-px\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/slabo13px/v15/11hEGp_azEvXZUdSBzzRcKKr2wkYnvI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Slabo 13px\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/slabo-13px/slabo-13px-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/slabo-13px/slabo-13px.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1385;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Slabo 27px\";s:10:\"fontFamily\";s:19:\"\"Slabo 27px\", serif\";s:4:\"slug\";s:11:\"slabo-27-px\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/slabo27px/v14/mFT0WbgBwKPR_Z4hGN2qsx0J1EJ7i90.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Slabo 27px\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/slabo-27px/slabo-27px-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/slabo-27px/slabo-27px.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1386;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Slackey\";s:10:\"fontFamily\";s:18:\"Slackey, system-ui\";s:4:\"slug\";s:7:\"slackey\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/slackey/v28/N0bV2SdQO-5yM0-dKlFaJdbWgdY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Slackey\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/slackey/slackey-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/slackey/slackey.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1387;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Slackside One\";s:10:\"fontFamily\";s:24:\"\"Slackside One\", cursive\";s:4:\"slug\";s:13:\"slackside-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/slacksideone/v10/EJRQQgMrXdcGsiBuvnRxodTwVyvVocNB6Iw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Slackside One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/slackside-one/slackside-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/slackside-one/slackside-one.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1388;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Smokum\";s:10:\"fontFamily\";s:17:\"Smokum, system-ui\";s:4:\"slug\";s:6:\"smokum\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/smokum/v28/TK3iWkUbAhopmrdGGzUHte5fKg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Smokum\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/smokum/smokum-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/smokum/smokum.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1389;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Smooch\";s:10:\"fontFamily\";s:15:\"Smooch, cursive\";s:4:\"slug\";s:6:\"smooch\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/smooch/v7/o-0LIps4xW8U1xUBi6p_6hVdYg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Smooch\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/smooch/smooch-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/smooch/smooch.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1390;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Smooch Sans\";s:10:\"fontFamily\";s:25:\"\"Smooch Sans\", sans-serif\";s:4:\"slug\";s:11:\"smooch-sans\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFoc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBoc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0Boc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBoc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80Boc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0doc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdoc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdoc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdoc6IeNlzayg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Smooch Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/smooch-sans/smooch-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1391;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Smythe\";s:10:\"fontFamily\";s:17:\"Smythe, system-ui\";s:4:\"slug\";s:6:\"smythe\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BPbh_uGInjA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Smythe\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/smythe/smythe-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/smythe/smythe.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1392;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Sniglet\";s:10:\"fontFamily\";s:18:\"Sniglet, system-ui\";s:4:\"slug\";s:7:\"sniglet\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCyrYGkHgIs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sniglet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sniglet/sniglet-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGQsnIJkWL4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Sniglet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/sniglet/sniglet-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/sniglet/sniglet.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1393;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Snippet\";s:10:\"fontFamily\";s:19:\"Snippet, sans-serif\";s:4:\"slug\";s:7:\"snippet\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2vrAfcp9QWc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Snippet\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/snippet/snippet-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/snippet/snippet.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1394;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Snowburst One\";s:10:\"fontFamily\";s:26:\"\"Snowburst One\", system-ui\";s:4:\"slug\";s:13:\"snowburst-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZqUPyacPbo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Snowburst One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/snowburst-one/snowburst-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/snowburst-one/snowburst-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1395;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Sofadi One\";s:10:\"fontFamily\";s:23:\"\"Sofadi One\", system-ui\";s:4:\"slug\";s:10:\"sofadi-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDaIETkmYDU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofadi One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofadi-one/sofadi-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/sofadi-one/sofadi-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1396;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Sofia\";s:10:\"fontFamily\";s:14:\"Sofia, cursive\";s:4:\"slug\";s:5:\"sofia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu7sowsrqjk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Sofia\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/sofia/sofia-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/sofia/sofia.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1397;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Sofia Sans\";s:10:\"fontFamily\";s:24:\"\"Sofia Sans\", sans-serif\";s:4:\"slug\";s:10:\"sofia-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63orvKCXl8k.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPOgW08kdLY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Sofia Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans-900-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans/sofia-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1398;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Sofia Sans Condensed\";s:10:\"fontFamily\";s:34:\"\"Sofia Sans Condensed\", sans-serif\";s:4:\"slug\";s:20:\"sofia-sans-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-CsksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-GsksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-GsksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:118:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasksQO3OfwQQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:120:\"https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084P_uLgQZ_3.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:20:\"Sofia Sans Condensed\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed-900-italic.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-condensed/sofia-sans-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1399;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:26:\"Sofia Sans Extra Condensed\";s:10:\"fontFamily\";s:40:\"\"Sofia Sans Extra Condensed\", sans-serif\";s:4:\"slug\";s:26:\"sofia-sans-extra-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EejmM356GxA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:133:\"https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzON_ZuWxFXe.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:26:\"Sofia Sans Extra Condensed\";s:7:\"preview\";s:111:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-900-italic.svg\";}}s:7:\"preview\";s:100:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1400;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:25:\"Sofia Sans Semi Condensed\";s:10:\"fontFamily\";s:39:\"\"Sofia Sans Semi Condensed\", sans-serif\";s:4:\"slug\";s:25:\"sofia-sans-semi-condensed\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:128:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9WGahllIhN.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:131:\"https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6lHkZhNeas.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:25:\"Sofia Sans Semi Condensed\";s:7:\"preview\";s:109:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-900-italic.svg\";}}s:7:\"preview\";s:98:\"https://s.w.org/images/fonts/17.7/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1401;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Solitreo\";s:10:\"fontFamily\";s:17:\"Solitreo, cursive\";s:4:\"slug\";s:8:\"solitreo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8usyDYtStiJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Solitreo\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/solitreo/solitreo-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/solitreo/solitreo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1402;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Solway\";s:10:\"fontFamily\";s:13:\"Solway, serif\";s:4:\"slug\";s:6:\"solway\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZn80QW3mqyg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Solway\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/solway/solway-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWh3A9kuYMUg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Solway\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/solway/solway-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZn80QW3mqyg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Solway\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/solway/solway-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zn80QW3mqyg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Solway\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/solway/solway-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZn80QW3mqyg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Solway\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/solway/solway-800-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/solway/solway.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1403;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Sometype Mono\";s:10:\"fontFamily\";s:26:\"\"Sometype Mono\", monospace\";s:4:\"slug\";s:13:\"sometype-mono\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sometypemono/v1/70lGu745KGk_R3uxyq0WrROhAJiJsJ_eTWllpTAMGE9fgQBbs7uG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sometypemono/v1/70lGu745KGk_R3uxyq0WrROhAJiJsJ_eTWllpTA-GE9fgQBbs7uG.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sometypemono/v1/70lGu745KGk_R3uxyq0WrROhAJiJsJ_eTWllpTDSH09fgQBbs7uG.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sometypemono/v1/70lGu745KGk_R3uxyq0WrROhAJiJsJ_eTWllpTDrH09fgQBbs7uG.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sometypemono/v1/70lEu745KGk_R3uxyq0WrROhKpG7T0e3JvPLoiXEW6cZiwF5tquGrxk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-400-italic.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sometypemono/v1/70lEu745KGk_R3uxyq0WrROhKpG7T0e3JvPLoiXEW5UZiwF5tquGrxk.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sometypemono/v1/70lEu745KGk_R3uxyq0WrROhKpG7T0e3JvPLoiXEW3keiwF5tquGrxk.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-600-italic.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sometypemono/v1/70lEu745KGk_R3uxyq0WrROhKpG7T0e3JvPLoiXEW0AeiwF5tquGrxk.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Sometype Mono\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono-700-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/sometype-mono/sometype-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1404;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Song Myung\";s:10:\"fontFamily\";s:19:\"\"Song Myung\", serif\";s:4:\"slug\";s:10:\"song-myung\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1SqhcitzeM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Song Myung\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/song-myung/song-myung-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/song-myung/song-myung.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1405;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Sono\";s:10:\"fontFamily\";s:16:\"Sono, sans-serif\";s:4:\"slug\";s:4:\"sono\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdF3R4qYeB4Q.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sono\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sono/sono-800-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/sono/sono.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1406;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Sonsie One\";s:10:\"fontFamily\";s:23:\"\"Sonsie One\", system-ui\";s:4:\"slug\";s:10:\"sonsie-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YV680lbp8JM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Sonsie One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/sonsie-one/sonsie-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/sonsie-one/sonsie-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1407;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Sora\";s:10:\"fontFamily\";s:16:\"Sora, sans-serif\";s:4:\"slug\";s:4:\"sora\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSn3-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSfSnn-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmScMnn-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSnn-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdgnn-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSeMmX-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSfSmX-PIwNhBti0.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sora\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sora/sora-800-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/sora/sora.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1408;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Sorts Mill Goudy\";s:10:\"fontFamily\";s:25:\"\"Sorts Mill Goudy\", serif\";s:4:\"slug\";s:16:\"sorts-mill-goudy\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXHgOjpM75PE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Sorts Mill Goudy\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/sorts-mill-goudy/sorts-mill-goudy-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8Ej7E-9PGLfQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Sorts Mill Goudy\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/sorts-mill-goudy/sorts-mill-goudy-400-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/sorts-mill-goudy/sorts-mill-goudy.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1409;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Source Code Pro\";s:10:\"fontFamily\";s:28:\"\"Source Code Pro\", monospace\";s:4:\"slug\";s:15:\"source-code-pro\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhMthTXUcdJg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprTFcZZJiGpw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:15:\"Source Code Pro\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro-900-italic.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/source-code-pro/source-code-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1410;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Source Sans 3\";s:10:\"fontFamily\";s:27:\"\"Source Sans 3\", sans-serif\";s:4:\"slug\";s:13:\"source-sans-3\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEI_io6npfB.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9CsYm4fB3Ts.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Source Sans 3\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3-900-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/source-sans-3/source-sans-3.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1411;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Source Serif 4\";s:10:\"fontFamily\";s:23:\"\"Source Serif 4\", serif\";s:4:\"slug\";s:14:\"source-serif-4\";s:8:\"fontFace\";a:16:{i:0;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:121:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhlXD-wGvjU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-900-normal.svg\";}i:8;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-800-italic.svg\";}i:15;a:5:{s:3:\"src\";s:124:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdDs4DrjXEXw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Source Serif 4\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/source-serif-4/source-serif-4.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1412;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Space Grotesk\";s:10:\"fontFamily\";s:27:\"\"Space Grotesk\", sans-serif\";s:4:\"slug\";s:13:\"space-grotesk\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsmNsFjTDJK.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Space Grotesk\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/space-grotesk/space-grotesk-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsmNsFjTDJK.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Space Grotesk\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/space-grotesk/space-grotesk-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsmNsFjTDJK.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Space Grotesk\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/space-grotesk/space-grotesk-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksmNsFjTDJK.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Space Grotesk\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/space-grotesk/space-grotesk-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksmNsFjTDJK.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Space Grotesk\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/space-grotesk/space-grotesk-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/space-grotesk/space-grotesk.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1413;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Space Mono\";s:10:\"fontFamily\";s:23:\"\"Space Mono\", monospace\";s:4:\"slug\";s:10:\"space-mono\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spacemono/v13/i7dPIFZifjKcF5UAWdDRUEN2RFq7AwU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Space Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/space-mono/space-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spacemono/v13/i7dNIFZifjKcF5UAWdDRYER8RXi-EwWMbg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Space Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/space-mono/space-mono-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/spacemono/v13/i7dMIFZifjKcF5UAWdDRaPpZYFeQHwyVd3U.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Space Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/space-mono/space-mono-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/spacemono/v13/i7dSIFZifjKcF5UAWdDRYERE_FeaHi6QZ3WfYg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Space Mono\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/space-mono/space-mono-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/space-mono/space-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1414;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Special Elite\";s:10:\"fontFamily\";s:26:\"\"Special Elite\", system-ui\";s:4:\"slug\";s:13:\"special-elite\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhnIESXFtUsM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Special Elite\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/special-elite/special-elite-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/special-elite/special-elite.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1415;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Spectral\";s:10:\"fontFamily\";s:15:\"Spectral, serif\";s:4:\"slug\";s:8:\"spectral\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M7mHnOSOuk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8knjsTfukQHs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3DY_etWWIJ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-800-normal.svg\";}i:13;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafaPXHIJErY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Spectral\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral-800-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/spectral/spectral.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1416;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Spectral SC\";s:10:\"fontFamily\";s:20:\"\"Spectral SC\", serif\";s:4:\"slug\";s:11:\"spectral-sc\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTSPYeVXJZB.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTSPYeVXJZB.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWn6WDfFpuc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42H9E4ucRY8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETSPYeVXJZB.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-500-normal.svg\";}i:7;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TSPYeVXJZB.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-600-normal.svg\";}i:9;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-600-italic.svg\";}i:10;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTSPYeVXJZB.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-700-normal.svg\";}i:11;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-700-italic.svg\";}i:12;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTSPYeVXJZB.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-800-normal.svg\";}i:13;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4a3WYZB_sU.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Spectral SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc-800-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/spectral-sc/spectral-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1417;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Spicy Rice\";s:10:\"fontFamily\";s:23:\"\"Spicy Rice\", system-ui\";s:4:\"slug\";s:10:\"spicy-rice\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/spicyrice/v25/uK_24rSEd-Uqwk4jY1RyGvq2WkowRcc.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Spicy Rice\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/spicy-rice/spicy-rice-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/spicy-rice/spicy-rice.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1418;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Spinnaker\";s:10:\"fontFamily\";s:21:\"Spinnaker, sans-serif\";s:4:\"slug\";s:9:\"spinnaker\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/spinnaker/v19/w8gYH2oyX-I0_rvR6Hmn2XwLqOqSBg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Spinnaker\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/spinnaker/spinnaker-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/spinnaker/spinnaker.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1419;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Spirax\";s:10:\"fontFamily\";s:17:\"Spirax, system-ui\";s:4:\"slug\";s:6:\"spirax\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cW0tt-Csn-Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Spirax\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/spirax/spirax-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/spirax/spirax.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1420;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Splash\";s:10:\"fontFamily\";s:15:\"Splash, cursive\";s:4:\"slug\";s:6:\"splash\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/splash/v6/KtksAL2RZoDkbU6hofPGNdS6wg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Splash\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/splash/splash-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/splash/splash.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1421;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Spline Sans\";s:10:\"fontFamily\";s:25:\"\"Spline Sans\", sans-serif\";s:4:\"slug\";s:11:\"spline-sans\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/splinesans/v10/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYF9vlUfE2kw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spline Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spline-sans/spline-sans-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/splinesans/v10/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYF9vlUfE2kw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spline Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spline-sans/spline-sans-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/splinesans/v10/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYF9vlUfE2kw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spline Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spline-sans/spline-sans-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/splinesans/v10/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YF9vlUfE2kw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spline Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spline-sans/spline-sans-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/splinesans/v10/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YF9vlUfE2kw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Spline Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/spline-sans/spline-sans-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/spline-sans/spline-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1422;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Spline Sans Mono\";s:10:\"fontFamily\";s:29:\"\"Spline Sans Mono\", monospace\";s:4:\"slug\";s:16:\"spline-sans-mono\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtQy4d4dGb1.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtQy4d4dGb1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtQy4d4dGb1.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtQy4d4dGb1.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtQy4d4dGb1.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYZacXb12MM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYZacXb12MM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYZacXb12MM.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYZacXb12MM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYZacXb12MM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Spline Sans Mono\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono-700-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/spline-sans-mono/spline-sans-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1423;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Squada One\";s:10:\"fontFamily\";s:23:\"\"Squada One\", system-ui\";s:4:\"slug\";s:10:\"squada-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/squadaone/v18/BCasqZ8XsOrx4mcOk6MtWaU8WDBkHgs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Squada One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/squada-one/squada-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/squada-one/squada-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1424;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Square Peg\";s:10:\"fontFamily\";s:21:\"\"Square Peg\", cursive\";s:4:\"slug\";s:10:\"square-peg\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/squarepeg/v5/y83eW48Nzw6ZlUHc-phrBDTrHHfrFPE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Square Peg\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/square-peg/square-peg-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/square-peg/square-peg.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1425;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Sree Krushnadevaraya\";s:10:\"fontFamily\";s:29:\"\"Sree Krushnadevaraya\", serif\";s:4:\"slug\";s:20:\"sree-krushnadevaraya\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWe2FhQuXir.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Sree Krushnadevaraya\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/sree-krushnadevaraya/sree-krushnadevaraya-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/sree-krushnadevaraya/sree-krushnadevaraya.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1426;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Sriracha\";s:10:\"fontFamily\";s:17:\"Sriracha, cursive\";s:4:\"slug\";s:8:\"sriracha\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/sriracha/v14/0nkrC9D4IuYBgWcI9ObdRQDioeb0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Sriracha\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/sriracha/sriracha-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/sriracha/sriracha.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1427;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Srisakdi\";s:10:\"fontFamily\";s:19:\"Srisakdi, system-ui\";s:4:\"slug\";s:8:\"srisakdi\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq5fSx5i814.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Srisakdi\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/srisakdi/srisakdi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUgh0oNFxW0Hz.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Srisakdi\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/srisakdi/srisakdi-700-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/srisakdi/srisakdi.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1428;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Staatliches\";s:10:\"fontFamily\";s:22:\"Staatliches, system-ui\";s:4:\"slug\";s:11:\"staatliches\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/staatliches/v13/HI_OiY8KO6hCsQSoAPmtMbeZtJG9O9PS.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Staatliches\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/staatliches/staatliches-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/staatliches/staatliches.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1429;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Stalemate\";s:10:\"fontFamily\";s:18:\"Stalemate, cursive\";s:4:\"slug\";s:9:\"stalemate\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/stalemate/v22/taiIGmZ_EJq97-UfkZRpv6Ss8ZQpaQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Stalemate\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/stalemate/stalemate-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/stalemate/stalemate.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1430;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Stalinist One\";s:10:\"fontFamily\";s:26:\"\"Stalinist One\", system-ui\";s:4:\"slug\";s:13:\"stalinist-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/stalinistone/v56/MQpS-WezM9W4Dd7D3B7I-UT7eZqUPyacPbo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Stalinist One\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/stalinist-one/stalinist-one-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/stalinist-one/stalinist-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1431;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Stardos Stencil\";s:10:\"fontFamily\";s:28:\"\"Stardos Stencil\", system-ui\";s:4:\"slug\";s:15:\"stardos-stencil\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR6lR3tiSx0g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Stardos Stencil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/stardos-stencil/stardos-stencil-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTuw-t29HSHw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Stardos Stencil\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/stardos-stencil/stardos-stencil-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/stardos-stencil/stardos-stencil.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1432;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Stick\";s:10:\"fontFamily\";s:17:\"Stick, sans-serif\";s:4:\"slug\";s:5:\"stick\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/stick/v17/Qw3TZQpMCyTtJSvavPVDMPoF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Stick\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/stick/stick-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/stick/stick.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1433;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Stick No Bills\";s:10:\"fontFamily\";s:28:\"\"Stick No Bills\", sans-serif\";s:4:\"slug\";s:14:\"stick-no-bills\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7L7iwKhcTKA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Stick No Bills\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills-800-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/stick-no-bills/stick-no-bills.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1434;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Stint Ultra Condensed\";s:10:\"fontFamily\";s:30:\"\"Stint Ultra Condensed\", serif\";s:4:\"slug\";s:21:\"stint-ultra-condensed\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/stintultracondensed/v23/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-rxUO2cNvdg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Stint Ultra Condensed\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/stint-ultra-condensed/stint-ultra-condensed-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/stint-ultra-condensed/stint-ultra-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1435;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Stint Ultra Expanded\";s:10:\"fontFamily\";s:29:\"\"Stint Ultra Expanded\", serif\";s:4:\"slug\";s:20:\"stint-ultra-expanded\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/stintultraexpanded/v22/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qtATQkWwam.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Stint Ultra Expanded\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/stint-ultra-expanded/stint-ultra-expanded-400-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/stint-ultra-expanded/stint-ultra-expanded.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1436;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Stoke\";s:10:\"fontFamily\";s:12:\"Stoke, serif\";s:4:\"slug\";s:5:\"stoke\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/stoke/v24/z7NXdRb7aTMfKNvFVgxH_pjcTeWU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Stoke\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/stoke/stoke-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/stoke/v24/z7NadRb7aTMfKONsfihK1YTV.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Stoke\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/stoke/stoke-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/stoke/stoke.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1437;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Strait\";s:10:\"fontFamily\";s:18:\"Strait, sans-serif\";s:4:\"slug\";s:6:\"strait\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/strait/v17/DtViJxy6WaEr1LZzfThtkl0U7w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Strait\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/strait/strait-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/strait/strait.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1438;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Style Script\";s:10:\"fontFamily\";s:23:\"\"Style Script\", cursive\";s:4:\"slug\";s:12:\"style-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/stylescript/v11/vm8xdRX3SV7Z0aPa88xzW5npfVT76NZnMw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Style Script\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/style-script/style-script-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/style-script/style-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1439;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Stylish\";s:10:\"fontFamily\";s:19:\"Stylish, sans-serif\";s:4:\"slug\";s:7:\"stylish\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/stylish/v22/m8JSjfhPYriQkk7-foj5dLxEdmo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Stylish\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/stylish/stylish-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/stylish/stylish.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1440;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Sue Ellen Francisco\";s:10:\"fontFamily\";s:30:\"\"Sue Ellen Francisco\", cursive\";s:4:\"slug\";s:19:\"sue-ellen-francisco\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/sueellenfrancisco/v20/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ro9F2lqk9H4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Sue Ellen Francisco\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/sue-ellen-francisco/sue-ellen-francisco-400-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/sue-ellen-francisco/sue-ellen-francisco.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1441;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Suez One\";s:10:\"fontFamily\";s:17:\"\"Suez One\", serif\";s:4:\"slug\";s:8:\"suez-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/suezone/v13/taiJGmd_EZ6rqscQgNFMkIqg-I0w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Suez One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/suez-one/suez-one-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/suez-one/suez-one.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1442;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Sulphur Point\";s:10:\"fontFamily\";s:27:\"\"Sulphur Point\", sans-serif\";s:4:\"slug\";s:13:\"sulphur-point\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6wFUHPIFaU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sulphur Point\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sulphur-point/sulphur-point-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfwSu6EuTHo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sulphur Point\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sulphur-point/sulphur-point-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6wFUHPIFaU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Sulphur Point\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/sulphur-point/sulphur-point-700-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/sulphur-point/sulphur-point.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1443;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Sumana\";s:10:\"fontFamily\";s:13:\"Sumana, serif\";s:4:\"slug\";s:6:\"sumana\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G9Rji76zR4w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Sumana\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/sumana/sumana-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG4ofN6ppsKg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Sumana\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/sumana/sumana-700-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/sumana/sumana.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1444;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Sunflower\";s:10:\"fontFamily\";s:21:\"Sunflower, sans-serif\";s:4:\"slug\";s:9:\"sunflower\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-06MfirIsGBGBzCw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Sunflower\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/sunflower/sunflower-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0sMbirIsGBGBzCw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Sunflower\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/sunflower/sunflower-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0-MDirIsGBGBzCw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Sunflower\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/sunflower/sunflower-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/sunflower/sunflower.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1445;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Sunshiney\";s:10:\"fontFamily\";s:18:\"Sunshiney, cursive\";s:4:\"slug\";s:9:\"sunshiney\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgFsmoUePWkg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Sunshiney\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/sunshiney/sunshiney-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/sunshiney/sunshiney.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1446;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Supermercado One\";s:10:\"fontFamily\";s:29:\"\"Supermercado One\", system-ui\";s:4:\"slug\";s:16:\"supermercado-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/supermercadoone/v26/OpNXnpQWg8jc_xps_Gi14kVVEXOn60P3MClBRTs.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Supermercado One\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/supermercado-one/supermercado-one-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/supermercado-one/supermercado-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1447;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Sura\";s:10:\"fontFamily\";s:11:\"Sura, serif\";s:4:\"slug\";s:4:\"sura\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/sura/v19/SZc23FL5PbyzFftUWzXtjUM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sura/sura-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/sura/v19/SZc53FL5PbyzLUJ7fzjGkUrS8DI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Sura\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/sura/sura-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/sura/sura.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1448;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Suranna\";s:10:\"fontFamily\";s:14:\"Suranna, serif\";s:4:\"slug\";s:7:\"suranna\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBFZT2KmgP0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Suranna\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/suranna/suranna-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/suranna/suranna.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1449;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Suravaram\";s:10:\"fontFamily\";s:16:\"Suravaram, serif\";s:4:\"slug\";s:9:\"suravaram\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAjm61Qv9roQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Suravaram\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/suravaram/suravaram-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/suravaram/suravaram.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1450;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Suwannaphum\";s:10:\"fontFamily\";s:18:\"Suwannaphum, serif\";s:4:\"slug\";s:11:\"suwannaphum\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/suwannaphum/v31/jAnAgHV7GtDvc8jbe8hXXL3B9cGWXx2VZmk.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Suwannaphum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/suwannaphum/suwannaphum-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/suwannaphum/v31/jAnfgHV7GtDvc8jbe8hXXL0J1-S5cRGcf3Ai.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Suwannaphum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/suwannaphum/suwannaphum-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/suwannaphum/v31/jAnCgHV7GtDvc8jbe8hXXIWg_8C0Wg2V.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Suwannaphum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/suwannaphum/suwannaphum-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/suwannaphum/v31/jAnfgHV7GtDvc8jbe8hXXL0Z0OS5cRGcf3Ai.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Suwannaphum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/suwannaphum/suwannaphum-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/suwannaphum/v31/jAnfgHV7GtDvc8jbe8hXXL0h0uS5cRGcf3Ai.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Suwannaphum\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/suwannaphum/suwannaphum-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/suwannaphum/suwannaphum.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1451;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Swanky and Moo Moo\";s:10:\"fontFamily\";s:29:\"\"Swanky and Moo Moo\", cursive\";s:4:\"slug\";s:18:\"swanky-and-moo-moo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUsLPkR64SYQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Swanky and Moo Moo\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/swanky-and-moo-moo/swanky-and-moo-moo-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/swanky-and-moo-moo/swanky-and-moo-moo.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1452;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Syncopate\";s:10:\"fontFamily\";s:21:\"Syncopate, sans-serif\";s:4:\"slug\";s:9:\"syncopate\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/syncopate/v21/pe0sMIuPIYBCpEV5eFdyB_2-C99ycg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Syncopate\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/syncopate/syncopate-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/syncopate/v21/pe0pMIuPIYBCpEV5eFdKvtKaBvRue1UwVg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Syncopate\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/syncopate/syncopate-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/syncopate/syncopate.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1453;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Syne\";s:10:\"fontFamily\";s:16:\"Syne, sans-serif\";s:4:\"slug\";s:4:\"syne\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6hR47NCV5Z.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Syne\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/syne/syne-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6hR47NCV5Z.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Syne\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/syne/syne-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6hR47NCV5Z.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Syne\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/syne/syne-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6hR47NCV5Z.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Syne\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/syne/syne-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6hR47NCV5Z.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Syne\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/syne/syne-800-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/syne/syne.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1454;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Syne Mono\";s:10:\"fontFamily\";s:22:\"\"Syne Mono\", monospace\";s:4:\"slug\";s:9:\"syne-mono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzJ6CkDyvqZA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Syne Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/syne-mono/syne-mono-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/syne-mono/syne-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1455;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Syne Tactile\";s:10:\"fontFamily\";s:25:\"\"Syne Tactile\", system-ui\";s:4:\"slug\";s:12:\"syne-tactile\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh2isdjvKU8Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Syne Tactile\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/syne-tactile/syne-tactile-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/syne-tactile/syne-tactile.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1456;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Tai Heritage Pro\";s:10:\"fontFamily\";s:25:\"\"Tai Heritage Pro\", serif\";s:4:\"slug\";s:16:\"tai-heritage-pro\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/taiheritagepro/v6/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHlSENxuLuE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Tai Heritage Pro\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/tai-heritage-pro/tai-heritage-pro-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/taiheritagepro/v6/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNFFMuhjCXY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Tai Heritage Pro\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/tai-heritage-pro/tai-heritage-pro-700-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/tai-heritage-pro/tai-heritage-pro.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1457;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Tajawal\";s:10:\"fontFamily\";s:19:\"Tajawal, sans-serif\";s:4:\"slug\";s:7:\"tajawal\";s:8:\"fontFace\";a:7:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrNjiLlJ-G0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrNjiLlJ-G0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzOLCr5IlLA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrNjiLlJ-G0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrNjiLlJ-G0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrNjiLlJ-G0.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-800-normal.svg\";}i:6;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrNjiLlJ-G0.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tajawal\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal-900-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/tajawal/tajawal.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1458;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Tangerine\";s:10:\"fontFamily\";s:18:\"Tangerine, cursive\";s:4:\"slug\";s:9:\"tangerine\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBC5xNhLBQ4Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Tangerine\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/tangerine/tangerine-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpiZtM6G0t9w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Tangerine\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/tangerine/tangerine-700-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/tangerine/tangerine.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1459;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Tapestry\";s:10:\"fontFamily\";s:17:\"Tapestry, cursive\";s:4:\"slug\";s:8:\"tapestry\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/tapestry/v4/SlGTmQecrosEYXhaGBIhqnB6aSQU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tapestry\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tapestry/tapestry-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/tapestry/tapestry.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1460;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Taprom\";s:10:\"fontFamily\";s:17:\"Taprom, system-ui\";s:4:\"slug\";s:6:\"taprom\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFRik3-0kvHg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Taprom\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/taprom/taprom-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/taprom/taprom.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1461;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Tauri\";s:10:\"fontFamily\";s:17:\"Tauri, sans-serif\";s:4:\"slug\";s:5:\"tauri\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/tauri/v18/TwMA-IISS0AM3IpQWHU_TBqO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Tauri\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/tauri/tauri-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/tauri/tauri.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1462;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Taviraj\";s:10:\"fontFamily\";s:14:\"Taviraj, serif\";s:4:\"slug\";s:7:\"taviraj\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/taviraj/v13/ahcbv8Cj3ylylTXzRIorUsN1jU2gog.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/taviraj/v13/ahcdv8Cj3ylylTXzTOwTM8l0r0iwolLl.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRCYKd-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwTn-hRgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzREIJd-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT--tRgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/taviraj/v13/ahcZv8Cj3ylylTXzfOshU-FwnU0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/taviraj/v13/ahcbv8Cj3ylylTXzTOwrUsN1jU2gog.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRBoId-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwTo-pRgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRDYPd-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwTj-1RgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRFIOd-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT6-xRgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRE4Nd-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT9-9RgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRGoMd-xbgUS5u0s.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT0-5RgGa8q0v8ag.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Taviraj\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/taviraj/taviraj.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1463;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Teko\";s:10:\"fontFamily\";s:16:\"Teko, sans-serif\";s:4:\"slug\";s:4:\"teko\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN9JG7S33TKEvkCF.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Teko\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/teko/teko-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN8XG7S33TKEvkCF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Teko\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/teko/teko-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN8lG7S33TKEvkCF.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Teko\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/teko/teko-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN_JHLS33TKEvkCF.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Teko\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/teko/teko-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN_wHLS33TKEvkCF.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Teko\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/teko/teko-700-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/teko/teko.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1464;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Tektur\";s:10:\"fontFamily\";s:17:\"Tektur, system-ui\";s:4:\"slug\";s:6:\"tektur\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrwuVYtLY8P7TWd0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tektur\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrwcVYtLY8P7TWd0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tektur\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrzwUotLY8P7TWd0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tektur\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrzJUotLY8P7TWd0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tektur\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TryuUotLY8P7TWd0.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tektur\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TryHUotLY8P7TWd0.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tektur\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/tektur/tektur.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1465;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Telex\";s:10:\"fontFamily\";s:17:\"Telex, sans-serif\";s:4:\"slug\";s:5:\"telex\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fWB1piKFIf.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Telex\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/telex/telex-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/telex/telex.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1466;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"Tenali Ramakrishna\";s:10:\"fontFamily\";s:32:\"\"Tenali Ramakrishna\", sans-serif\";s:4:\"slug\";s:18:\"tenali-ramakrishna\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8LZXqUFFvtA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"Tenali Ramakrishna\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/tenali-ramakrishna/tenali-ramakrishna-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/tenali-ramakrishna/tenali-ramakrishna.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1467;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Tenor Sans\";s:10:\"fontFamily\";s:24:\"\"Tenor Sans\", sans-serif\";s:4:\"slug\";s:10:\"tenor-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tenorsans/v19/bx6ANxqUneKx06UkIXISr3dyC22IyqI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Tenor Sans\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/tenor-sans/tenor-sans-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/tenor-sans/tenor-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1468;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Text Me One\";s:10:\"fontFamily\";s:25:\"\"Text Me One\", sans-serif\";s:4:\"slug\";s:11:\"text-me-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/textmeone/v24/i7dOIFdlayuLUvgoFvHQFWZZalayGhyV.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Text Me One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/text-me-one/text-me-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/text-me-one/text-me-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1469;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Texturina\";s:10:\"fontFamily\";s:16:\"Texturina, serif\";s:4:\"slug\";s:9:\"texturina\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ul25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUl25riW1OD.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:115:\"https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0ZvAXkODN94.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Texturina\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/texturina/texturina.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1470;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Thasadith\";s:10:\"fontFamily\";s:21:\"Thasadith, sans-serif\";s:4:\"slug\";s:9:\"thasadith\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/thasadith/v11/mtG44_1TIqPYrd_f5R1YtUkU0CWuFw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Thasadith\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/thasadith/thasadith-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/thasadith/v11/mtG-4_1TIqPYrd_f5R1oskMV8iC-F1ZE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Thasadith\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/thasadith/thasadith-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/thasadith/v11/mtG94_1TIqPYrd_f5R1gDGYw3Q6yHk9d8w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Thasadith\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/thasadith/thasadith-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/thasadith/v11/mtGj4_1TIqPYrd_f5R1osnus3QSzPEpN8zxA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Thasadith\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/thasadith/thasadith-700-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/thasadith/thasadith.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1471;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"The Girl Next Door\";s:10:\"fontFamily\";s:29:\"\"The Girl Next Door\", cursive\";s:4:\"slug\";s:18:\"the-girl-next-door\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:96:\"https://fonts.gstatic.com/s/thegirlnextdoor/v22/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIUrt7w6bE2A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"The Girl Next Door\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/the-girl-next-door/the-girl-next-door-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/the-girl-next-door/the-girl-next-door.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1472;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"The Nautigal\";s:10:\"fontFamily\";s:23:\"\"The Nautigal\", cursive\";s:4:\"slug\";s:12:\"the-nautigal\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/thenautigal/v6/VdGZAZ8ZH51Lvng9fQV2bfKr4gVk09Se5Q.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"The Nautigal\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/the-nautigal/the-nautigal-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/thenautigal/v6/VdGGAZ8ZH51Lvng9fQV2bfKTWypA3v-C7LoS7g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"The Nautigal\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/the-nautigal/the-nautigal-700-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/the-nautigal/the-nautigal.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1473;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Tienne\";s:10:\"fontFamily\";s:13:\"Tienne, serif\";s:4:\"slug\";s:6:\"tienne\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LlUPHSFNyxw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tienne\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tienne/tienne-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjRXhuzvef5Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tienne\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tienne/tienne-700-normal.svg\";}i:2;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jRXhuzvef5Q.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Tienne\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/tienne/tienne-900-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/tienne/tienne.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1474;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Tillana\";s:10:\"fontFamily\";s:18:\"Tillana, system-ui\";s:4:\"slug\";s:7:\"tillana\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/tillana/v13/VuJxdNvf35P4qJ1OeKPXOIFneRo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tillana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tillana/tillana-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQFL-HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tillana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tillana/tillana-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQH75HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tillana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tillana/tillana-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQBr4HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tillana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tillana/tillana-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQAb7HIxMZRNcp0o.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tillana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tillana/tillana-800-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/tillana/tillana.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1475;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Tilt Neon\";s:10:\"fontFamily\";s:22:\"\"Tilt Neon\", system-ui\";s:4:\"slug\";s:9:\"tilt-neon\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/tiltneon/v10/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK4WualJ9DS.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Tilt Neon\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/tilt-neon/tilt-neon-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/tilt-neon/tilt-neon.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1476;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Tilt Prism\";s:10:\"fontFamily\";s:23:\"\"Tilt Prism\", system-ui\";s:4:\"slug\";s:10:\"tilt-prism\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/tiltprism/v11/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwpDSrn86NKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Tilt Prism\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/tilt-prism/tilt-prism-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/tilt-prism/tilt-prism.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1477;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Tilt Warp\";s:10:\"fontFamily\";s:22:\"\"Tilt Warp\", system-ui\";s:4:\"slug\";s:9:\"tilt-warp\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/tiltwarp/v12/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Tilt Warp\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/tilt-warp/tilt-warp-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/tilt-warp/tilt-warp.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1478;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Timmana\";s:10:\"fontFamily\";s:19:\"Timmana, sans-serif\";s:4:\"slug\";s:7:\"timmana\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCm7bKHwJUOM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Timmana\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/timmana/timmana-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/timmana/timmana.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1479;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Tinos\";s:10:\"fontFamily\";s:12:\"Tinos, serif\";s:4:\"slug\";s:5:\"tinos\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX5dGVh8TI-.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Tinos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/tinos/tinos-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmRD9CI-4NU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Tinos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/tinos/tinos-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fs2i43-cxL.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Tinos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/tinos/tinos-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0C8V_NxLeiw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:5:\"Tinos\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/tinos/tinos-700-italic.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/tinos/tinos.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1480;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Tiro Bangla\";s:10:\"fontFamily\";s:20:\"\"Tiro Bangla\", serif\";s:4:\"slug\";s:11:\"tiro-bangla\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG4-UPeuz4i.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Tiro Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/tiro-bangla/tiro-bangla-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80L8vi4imBM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Tiro Bangla\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/tiro-bangla/tiro-bangla-400-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/tiro-bangla/tiro-bangla.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1481;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Tiro Devanagari Hindi\";s:10:\"fontFamily\";s:30:\"\"Tiro Devanagari Hindi\", serif\";s:4:\"slug\";s:21:\"tiro-devanagari-hindi\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:103:\"https://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fTekOfG0Y3A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Tiro Devanagari Hindi\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-hindi/tiro-devanagari-hindi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMPXmgI3F_o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:21:\"Tiro Devanagari Hindi\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-hindi/tiro-devanagari-hindi-400-italic.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-hindi/tiro-devanagari-hindi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1482;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Tiro Devanagari Marathi\";s:10:\"fontFamily\";s:32:\"\"Tiro Devanagari Marathi\", serif\";s:4:\"slug\";s:23:\"tiro-devanagari-marathi\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDuDJYM2lAZ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Tiro Devanagari Marathi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-marathi/tiro-devanagari-marathi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpcu30AZbUY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:23:\"Tiro Devanagari Marathi\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-marathi/tiro-devanagari-marathi-400-italic.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-marathi/tiro-devanagari-marathi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1483;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:24:\"Tiro Devanagari Sanskrit\";s:10:\"fontFamily\";s:33:\"\"Tiro Devanagari Sanskrit\", serif\";s:4:\"slug\";s:24:\"tiro-devanagari-sanskrit\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pF4EqgtOh0w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:24:\"Tiro Devanagari Sanskrit\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-sanskrit/tiro-devanagari-sanskrit-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsroNax06MM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:24:\"Tiro Devanagari Sanskrit\";s:7:\"preview\";s:107:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-sanskrit/tiro-devanagari-sanskrit-400-italic.svg\";}}s:7:\"preview\";s:96:\"https://s.w.org/images/fonts/17.7/previews/tiro-devanagari-sanskrit/tiro-devanagari-sanskrit.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1484;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Tiro Gurmukhi\";s:10:\"fontFamily\";s:22:\"\"Tiro Gurmukhi\", serif\";s:4:\"slug\";s:13:\"tiro-gurmukhi\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7JvlyvHAQsyA2Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Tiro Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/tiro-gurmukhi/tiro-gurmukhi-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNACk3E2YljQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Tiro Gurmukhi\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/tiro-gurmukhi/tiro-gurmukhi-400-italic.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/tiro-gurmukhi/tiro-gurmukhi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1485;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Tiro Kannada\";s:10:\"fontFamily\";s:21:\"\"Tiro Kannada\", serif\";s:4:\"slug\";s:12:\"tiro-kannada\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKTfl6tOU9Eg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Tiro Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/tiro-kannada/tiro-kannada-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN7luAtEnKp.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:12:\"Tiro Kannada\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/tiro-kannada/tiro-kannada-400-italic.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/tiro-kannada/tiro-kannada.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1486;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Tiro Tamil\";s:10:\"fontFamily\";s:19:\"\"Tiro Tamil\", serif\";s:4:\"slug\";s:10:\"tiro-tamil\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULFvamODxdI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Tiro Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/tiro-tamil/tiro-tamil-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZla0GG1dKEDw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Tiro Tamil\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/tiro-tamil/tiro-tamil-400-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/tiro-tamil/tiro-tamil.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1487;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Tiro Telugu\";s:10:\"fontFamily\";s:20:\"\"Tiro Telugu\", serif\";s:4:\"slug\";s:11:\"tiro-telugu\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSIQqn0X0BO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Tiro Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/tiro-telugu/tiro-telugu-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSKjWWlBOoas.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Tiro Telugu\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/tiro-telugu/tiro-telugu-400-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/tiro-telugu/tiro-telugu.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1488;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Titan One\";s:10:\"fontFamily\";s:22:\"\"Titan One\", system-ui\";s:4:\"slug\";s:9:\"titan-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/titanone/v15/mFTzWbsGxbbS_J5cQcjyljIn2Etikg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Titan One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/titan-one/titan-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/titan-one/titan-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1489;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Titillium Web\";s:10:\"fontFamily\";s:27:\"\"Titillium Web\", sans-serif\";s:4:\"slug\";s:13:\"titillium-web\";s:8:\"fontFace\";a:11:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIl5YrSYqWM.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zY5aduWMmxA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-200-italic.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIl5YrSYqWM.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zY5aduWMmxA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-300-italic.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPecZTIAOhVxoMyOr9n_E7fRMHsDIRSfr0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-400-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPAcZTIAOhVxoMyOr9n_E7fdMbmDaZXbr2BsA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-400-italic.svg\";}i:6;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIl5YrSYqWM.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzY5aduWMmxA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIl5YrSYqWM.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzY5aduWMmxA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIl5YrSYqWM.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Titillium Web\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web-900-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/titillium-web/titillium-web.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1490;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Tomorrow\";s:10:\"fontFamily\";s:20:\"Tomorrow, sans-serif\";s:4:\"slug\";s:8:\"tomorrow\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLgrETNbFtZCeGqgR2xe2DiKMiokE4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLirETNbFtZCeGqgRXXQwHoKeqtgE5h0A.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR0dWkXNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ63JDMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR15WUXNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ8nKDMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLmrETNbFtZCeGqgSXQcWHALdio.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLgrETNbFtZCeGqgRXXe2DiKMiokE4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR0hWEXNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ5HLDMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR0NX0XNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ73MDMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR1pXkXNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ9nNDMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR11XUXNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ8XODMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR1RXEXNBsShiVd4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ-HPDMWDjEd4yVY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Tomorrow\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/tomorrow/tomorrow.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1491;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Tourney\";s:10:\"fontFamily\";s:18:\"Tourney, system-ui\";s:4:\"slug\";s:7:\"tourney\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyYDp1I1LcGA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITB0AVfMGOPb.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Tourney\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/tourney/tourney.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1492;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Trade Winds\";s:10:\"fontFamily\";s:24:\"\"Trade Winds\", system-ui\";s:4:\"slug\";s:11:\"trade-winds\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jv7PKP5Z_G.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Trade Winds\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/trade-winds/trade-winds-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/trade-winds/trade-winds.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1493;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Train One\";s:10:\"fontFamily\";s:22:\"\"Train One\", system-ui\";s:4:\"slug\";s:9:\"train-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHP6bZRY7JVQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Train One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/train-one/train-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/train-one/train-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1494;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Trirong\";s:10:\"fontFamily\";s:14:\"Trirong, serif\";s:4:\"slug\";s:7:\"trirong\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/trirong/v15/7r3EqXNgp8wxdOdOl-go2IRl6ujngw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/trirong/v15/7r3CqXNgp8wxdOdOn44QuY5kyO33g8IY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-100-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOl0QJ_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-200-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QFa9B58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-200-italic.svg\";}i:4;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlyAK_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-300-normal.svg\";}i:5;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QcaxB58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/trirong/v15/7r3GqXNgp8wxdOdOr4ki2aZg-ug.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-400-normal.svg\";}i:7;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/trirong/v15/7r3EqXNgp8wxdOdOn44o2IRl6ujngw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-400-italic.svg\";}i:8;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOl3gL_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-500-normal.svg\";}i:9;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QKa1B58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-500-italic.svg\";}i:10;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOl1QM_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-600-normal.svg\";}i:11;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QBapB58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-600-italic.svg\";}i:12;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlzAN_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-700-normal.svg\";}i:13;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QYatB58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-700-italic.svg\";}i:14;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlywO_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-800-normal.svg\";}i:15;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QfahB58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-800-italic.svg\";}i:16;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlwgP_atL5uH-mts.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-900-normal.svg\";}i:17;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QWalB58P7itsB5g.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trirong\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/trirong/trirong.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1495;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Trispace\";s:10:\"fontFamily\";s:20:\"Trispace, sans-serif\";s:4:\"slug\";s:8:\"trispace\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:110:\"https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQx0zHugpt0.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Trispace\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace-800-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/trispace/trispace.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1496;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Trocchi\";s:10:\"fontFamily\";s:14:\"Trocchi, serif\";s:4:\"slug\";s:7:\"trocchi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/trocchi/v17/qWcqB6WkuIDxDZLcDr5UvMeTYD0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trocchi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trocchi/trocchi-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/trocchi/trocchi.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1497;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Trochut\";s:10:\"fontFamily\";s:18:\"Trochut, system-ui\";s:4:\"slug\";s:7:\"trochut\";s:8:\"fontFace\";a:3:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/trochut/v22/CHyjV-fDDlP9bDIw5nGIfVIPLns.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trochut\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trochut/trochut-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/trochut/v22/CHyhV-fDDlP9bDIw1naCfHAKPns8jw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Trochut\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trochut/trochut-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/trochut/v22/CHymV-fDDlP9bDIw3sinWV8kMnIllmA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trochut\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trochut/trochut-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/trochut/trochut.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1498;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Truculenta\";s:10:\"fontFamily\";s:22:\"Truculenta, sans-serif\";s:4:\"slug\";s:10:\"truculenta\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:132:\"https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswIFHnJMMhg.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Truculenta\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/truculenta/truculenta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1499;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Trykker\";s:10:\"fontFamily\";s:14:\"Trykker, serif\";s:4:\"slug\";s:7:\"trykker\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNzoOd2j22U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Trykker\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/trykker/trykker-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/trykker/trykker.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1500;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Tsukimi Rounded\";s:10:\"fontFamily\";s:29:\"\"Tsukimi Rounded\", sans-serif\";s:4:\"slug\";s:15:\"tsukimi-rounded\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7VkVsqMrMT3T9X8g.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Tsukimi Rounded\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/tsukimi-rounded/tsukimi-rounded-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/tsukimirounded/v10/sJoc3LJNksWZO0LvnZwkF3HtoB7tOHMOP5gP1A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Tsukimi Rounded\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/tsukimi-rounded/tsukimi-rounded-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7VyVoqMrMT3T9X8g.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Tsukimi Rounded\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/tsukimi-rounded/tsukimi-rounded-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7V5V0qMrMT3T9X8g.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Tsukimi Rounded\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/tsukimi-rounded/tsukimi-rounded-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7VgVwqMrMT3T9X8g.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Tsukimi Rounded\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/tsukimi-rounded/tsukimi-rounded-700-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/tsukimi-rounded/tsukimi-rounded.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1501;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Tulpen One\";s:10:\"fontFamily\";s:23:\"\"Tulpen One\", system-ui\";s:4:\"slug\";s:10:\"tulpen-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/tulpenone/v25/dFa6ZfeC474skLgesc0CWjgw_HyIRlE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Tulpen One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/tulpen-one/tulpen-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/tulpen-one/tulpen-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1502;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Turret Road\";s:10:\"fontFamily\";s:24:\"\"Turret Road\", system-ui\";s:4:\"slug\";s:11:\"turret-road\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0ONEdeOYk1Mq3ap.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Turret Road\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0PpEteOYk1Mq3ap.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Turret Road\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/turretroad/v9/pxiAypMgpcBFjE84Zv-fE3tAOvODSVFF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Turret Road\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0OxE9eOYk1Mq3ap.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Turret Road\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0P5FdeOYk1Mq3ap.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Turret Road\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0PlFteOYk1Mq3ap.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Turret Road\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road-800-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/turret-road/turret-road.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1503;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Twinkle Star\";s:10:\"fontFamily\";s:23:\"\"Twinkle Star\", cursive\";s:4:\"slug\";s:12:\"twinkle-star\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/twinklestar/v6/pe0pMI6IL4dPoFl9LGEmY6WaBvRue1UwVg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Twinkle Star\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/twinkle-star/twinkle-star-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/twinkle-star/twinkle-star.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1504;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Ubuntu\";s:10:\"fontFamily\";s:18:\"Ubuntu, sans-serif\";s:4:\"slug\";s:6:\"ubuntu\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTsmaMH4V_gg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyNPYBvgpUI.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6fQT3v02QFg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg72nUiAFpxm.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3TsmaMH4V_gg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyNPYBvgpUI.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyNPYBvgpUI.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:6:\"Ubuntu\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu-700-italic.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/ubuntu/ubuntu.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1505;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Ubuntu Condensed\";s:10:\"fontFamily\";s:30:\"\"Ubuntu Condensed\", sans-serif\";s:4:\"slug\";s:16:\"ubuntu-condensed\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-LVqvHoJXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Ubuntu Condensed\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-condensed/ubuntu-condensed-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-condensed/ubuntu-condensed.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1506;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Ubuntu Mono\";s:10:\"fontFamily\";s:24:\"\"Ubuntu Mono\", monospace\";s:4:\"slug\";s:11:\"ubuntu-mono\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/ubuntumono/v17/KFOjCneDtsqEr0keqCMhbBc4AMX6lJBP.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Ubuntu Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-mono/ubuntu-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/ubuntumono/v17/KFOhCneDtsqEr0keqCMhbCc_CsTYkYBPY3o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Ubuntu Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-mono/ubuntu-mono-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/ubuntumono/v17/KFO-CneDtsqEr0keqCMhbC-BL-H3v4xGemO1.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Ubuntu Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-mono/ubuntu-mono-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/ubuntumono/v17/KFO8CneDtsqEr0keqCMhbCc_Mn33tY1kf3O1GVg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Ubuntu Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-mono/ubuntu-mono-700-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/ubuntu-mono/ubuntu-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1507;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Uchen\";s:10:\"fontFamily\";s:12:\"Uchen, serif\";s:4:\"slug\";s:5:\"uchen\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:67:\"https://fonts.gstatic.com/s/uchen/v9/nKKZ-GokGZ1baIaXEQGodLxA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Uchen\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/uchen/uchen-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/uchen/uchen.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1508;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Ultra\";s:10:\"fontFamily\";s:12:\"Ultra, serif\";s:4:\"slug\";s:5:\"ultra\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/ultra/v23/zOLy4prXmrtY-tT_yLOD6NxF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Ultra\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/ultra/ultra-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/ultra/ultra.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1509;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Unbounded\";s:10:\"fontFamily\";s:21:\"Unbounded, sans-serif\";s:4:\"slug\";s:9:\"unbounded\";s:8:\"fontFace\";a:8:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx04jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx04jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx04jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b204jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__204jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-700-normal.svg\";}i:6;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j204jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-800-normal.svg\";}i:7;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H204jHgP6LR0Y.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unbounded\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/unbounded/unbounded.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1510;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Uncial Antiqua\";s:10:\"fontFamily\";s:27:\"\"Uncial Antiqua\", system-ui\";s:4:\"slug\";s:14:\"uncial-antiqua\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfUS5VBBSSF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Uncial Antiqua\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/uncial-antiqua/uncial-antiqua-400-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/uncial-antiqua/uncial-antiqua.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1511;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Underdog\";s:10:\"fontFamily\";s:19:\"Underdog, system-ui\";s:4:\"slug\";s:8:\"underdog\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSnU14GN2Il.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Underdog\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/underdog/underdog-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/underdog/underdog.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1512;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Unica One\";s:10:\"fontFamily\";s:22:\"\"Unica One\", system-ui\";s:4:\"slug\";s:9:\"unica-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/unicaone/v18/DPEuYwWHyAYGVTSmalshc9ffuEY7FA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Unica One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/unica-one/unica-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/unica-one/unica-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1513;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"UnifrakturCook\";s:10:\"fontFamily\";s:25:\"UnifrakturCook, system-ui\";s:4:\"slug\";s:14:\"unifrakturcook\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/unifrakturcook/v23/IurA6Yli8YOdcoky-0PTTdkm56n05Uww3ILXs-h6.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"UnifrakturCook\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/unifrakturcook/unifrakturcook-700-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/unifrakturcook/unifrakturcook.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1514;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:18:\"UnifrakturMaguntia\";s:10:\"fontFamily\";s:29:\"UnifrakturMaguntia, system-ui\";s:4:\"slug\";s:18:\"unifrakturmaguntia\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:99:\"https://fonts.gstatic.com/s/unifrakturmaguntia/v20/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVummxNNgNa1A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:18:\"UnifrakturMaguntia\";s:7:\"preview\";s:95:\"https://s.w.org/images/fonts/17.7/previews/unifrakturmaguntia/unifrakturmaguntia-400-normal.svg\";}}s:7:\"preview\";s:84:\"https://s.w.org/images/fonts/17.7/previews/unifrakturmaguntia/unifrakturmaguntia.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1515;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Unkempt\";s:10:\"fontFamily\";s:18:\"Unkempt, system-ui\";s:4:\"slug\";s:7:\"unkempt\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/unkempt/v21/2EbnL-Z2DFZue0DSSYMf8z2Yt_c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Unkempt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/unkempt/unkempt-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/unkempt/v21/2EbiL-Z2DFZue0DScTow1zCzq_5uT84.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Unkempt\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/unkempt/unkempt-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/unkempt/unkempt.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1516;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Unlock\";s:10:\"fontFamily\";s:17:\"Unlock, system-ui\";s:4:\"slug\";s:6:\"unlock\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/unlock/v26/7Au-p_8ykD-cDl7GLQjSwkUVOQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Unlock\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/unlock/unlock-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/unlock/unlock.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1517;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Unna\";s:10:\"fontFamily\";s:11:\"Unna, serif\";s:4:\"slug\";s:4:\"unna\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/unna/v23/AYCEpXzofN0NCp0BlGHCWFM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Unna\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/unna/unna-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:69:\"https://fonts.gstatic.com/s/unna/v23/AYCKpXzofN0NOpoLlUPHSFNyxw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Unna\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/unna/unna-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/unna/v23/AYCLpXzofN0NMiQusGzpRFpr3vc.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Unna\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/unna/unna-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/unna/v23/AYCJpXzofN0NOpozLGzjRXhuzvef5Q.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Unna\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/unna/unna-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/unna/unna.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1518;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Updock\";s:10:\"fontFamily\";s:15:\"Updock, cursive\";s:4:\"slug\";s:6:\"updock\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:70:\"https://fonts.gstatic.com/s/updock/v5/nuF4D_3dVZ70UI9SibK3602XBw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Updock\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/updock/updock-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/updock/updock.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1519;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Urbanist\";s:10:\"fontFamily\";s:20:\"Urbanist, sans-serif\";s:4:\"slug\";s:8:\"urbanist\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfE5OrS8SlKw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmqacG1K4S1.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Urbanist\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/urbanist/urbanist.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1520;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"VT323\";s:10:\"fontFamily\";s:18:\"\"VT323\", monospace\";s:4:\"slug\";s:6:\"vt-323\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsdHpT2dkNE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"VT323\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/vt323/vt323-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/vt323/vt323.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1521;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Vampiro One\";s:10:\"fontFamily\";s:24:\"\"Vampiro One\", system-ui\";s:4:\"slug\";s:11:\"vampiro-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqisvhIor3K.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Vampiro One\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/vampiro-one/vampiro-one-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/vampiro-one/vampiro-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1522;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Varela\";s:10:\"fontFamily\";s:18:\"Varela, sans-serif\";s:4:\"slug\";s:6:\"varela\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJARQFfvzDsQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Varela\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/varela/varela-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/varela/varela.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1523;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Varela Round\";s:10:\"fontFamily\";s:26:\"\"Varela Round\", sans-serif\";s:4:\"slug\";s:12:\"varela-round\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvpcGOD9gxZw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Varela Round\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/varela-round/varela-round-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/varela-round/varela-round.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1524;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Varta\";s:10:\"fontFamily\";s:17:\"Varta, sans-serif\";s:4:\"slug\";s:5:\"varta\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4Ej7E-9PGLfQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Varta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/varta/varta-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4Ej7E-9PGLfQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Varta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/varta/varta-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4Ej7E-9PGLfQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Varta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/varta/varta-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEj7E-9PGLfQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Varta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/varta/varta-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEj7E-9PGLfQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Varta\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/varta/varta-700-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/varta/varta.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1525;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Vast Shadow\";s:10:\"fontFamily\";s:20:\"\"Vast Shadow\", serif\";s:4:\"slug\";s:11:\"vast-shadow\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/vastshadow/v19/pe0qMImKOZ1V62ZwbVY9dfe_Kdpickwp.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Vast Shadow\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/vast-shadow/vast-shadow-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/vast-shadow/vast-shadow.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1526;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Vazirmatn\";s:10:\"fontFamily\";s:21:\"Vazirmatn, sans-serif\";s:4:\"slug\";s:9:\"vazirmatn\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0ORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80ORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0ORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0ORKZ72DF_QY.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vazirmatn\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn-900-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/vazirmatn/vazirmatn.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1527;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Vesper Libre\";s:10:\"fontFamily\";s:21:\"\"Vesper Libre\", serif\";s:4:\"slug\";s:12:\"vesper-libre\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4Ck-N2qIWVQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Vesper Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/vesper-libre/vesper-libre-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap14kKXKvPlw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Vesper Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/vesper-libre/vesper-libre-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp14kKXKvPlw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Vesper Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/vesper-libre/vesper-libre-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:88:\"https://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp14kKXKvPlw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Vesper Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/vesper-libre/vesper-libre-900-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/vesper-libre/vesper-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1528;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"Viaoda Libre\";s:10:\"fontFamily\";s:25:\"\"Viaoda Libre\", system-ui\";s:4:\"slug\";s:12:\"viaoda-libre\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/viaodalibre/v18/vEFW2_lWCgoR6OKuRz9kcRVJamIY2tOHXg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"Viaoda Libre\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/viaoda-libre/viaoda-libre-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/viaoda-libre/viaoda-libre.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1529;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Vibes\";s:10:\"fontFamily\";s:16:\"Vibes, system-ui\";s:4:\"slug\";s:5:\"vibes\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbdyHpbsuBlh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Vibes\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/vibes/vibes-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/vibes/vibes.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1530;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Vibur\";s:10:\"fontFamily\";s:14:\"Vibur, cursive\";s:4:\"slug\";s:5:\"vibur\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTsLjoJd-Xa.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Vibur\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/vibur/vibur-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/vibur/vibur.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1531;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Victor Mono\";s:10:\"fontFamily\";s:24:\"\"Victor Mono\", monospace\";s:4:\"slug\";s:11:\"victor-mono\";s:8:\"fontFace\";a:14:{i:0;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyO8_NgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyu87NgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyZc7NgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyO87NgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyCc7NgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCy5cnNgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCy3MnNgdyOV0Y9bQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen840lxtaPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-100-italic.svg\";}i:8;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen842lx9aPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-200-italic.svg\";}i:9;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen8417x9aPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-300-italic.svg\";}i:10;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen840lx9aPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-400-italic.svg\";}i:11;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen840Xx9aPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-500-italic.svg\";}i:12;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen8437wNaPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-600-italic.svg\";}i:13;a:5:{s:3:\"src\";s:100:\"https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen843CwNaPdUMtba8p.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:11:\"Victor Mono\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono-700-italic.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/victor-mono/victor-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1532;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Vidaloka\";s:10:\"fontFamily\";s:15:\"Vidaloka, serif\";s:4:\"slug\";s:8:\"vidaloka\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass5yn4hnCci.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vidaloka\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vidaloka/vidaloka-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/vidaloka/vidaloka.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1533;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Viga\";s:10:\"fontFamily\";s:16:\"Viga, sans-serif\";s:4:\"slug\";s:4:\"viga\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QcjD4e2OX8.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Viga\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/viga/viga-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/viga/viga.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1534;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Vina Sans\";s:10:\"fontFamily\";s:22:\"\"Vina Sans\", system-ui\";s:4:\"slug\";s:9:\"vina-sans\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/vinasans/v6/m8JQjfZKf6-d2273MP7zdZ5BZmqa3A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Vina Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/vina-sans/vina-sans-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/vina-sans/vina-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1535;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:5:\"Voces\";s:10:\"fontFamily\";s:17:\"Voces, sans-serif\";s:4:\"slug\";s:5:\"voces\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:68:\"https://fonts.gstatic.com/s/voces/v22/-F6_fjJyLyU8d4PEBG7YpzlJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:5:\"Voces\";s:7:\"preview\";s:69:\"https://s.w.org/images/fonts/17.7/previews/voces/voces-400-normal.svg\";}}s:7:\"preview\";s:58:\"https://s.w.org/images/fonts/17.7/previews/voces/voces.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1536;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Volkhov\";s:10:\"fontFamily\";s:14:\"Volkhov, serif\";s:4:\"slug\";s:7:\"volkhov\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTcOhHxzcD0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Volkhov\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/volkhov/volkhov-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEhV52YD0NYw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Volkhov\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/volkhov/volkhov-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHFYbDQUego.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Volkhov\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/volkhov/volkhov-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSbRYRagrQrA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Volkhov\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/volkhov/volkhov-700-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/volkhov/volkhov.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1537;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Vollkorn\";s:10:\"fontFamily\";s:15:\"Vollkorn, serif\";s:4:\"slug\";s:8:\"vollkorn\";s:8:\"fontFace\";a:12:{i:0;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuHGOdEbD63w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuHGOdEbD63w.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauHGOdEbD63w.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auHGOdEbD63w.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauHGOdEbD63w.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-800-normal.svg\";}i:5;a:5:{s:3:\"src\";s:93:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauHGOdEbD63w.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-900-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmcM7Xq34g9.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmcM7Xq34g9.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmcM7Xq34g9.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmcM7Xq34g9.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-700-italic.svg\";}i:10;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmcM7Xq34g9.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-800-italic.svg\";}i:11;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/vollkorn/v23/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmcM7Xq34g9.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Vollkorn\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn-900-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/vollkorn/vollkorn.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1538;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Vollkorn SC\";s:10:\"fontFamily\";s:20:\"\"Vollkorn SC\", serif\";s:4:\"slug\";s:11:\"vollkorn-sc\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF8NH-iSq_E.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Vollkorn SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/vollkorn-sc/vollkorn-sc-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluvYbPN5Yjn.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Vollkorn SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/vollkorn-sc/vollkorn-sc-600-normal.svg\";}i:2;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uvYbPN5Yjn.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Vollkorn SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/vollkorn-sc/vollkorn-sc-700-normal.svg\";}i:3;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuvYbPN5Yjn.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Vollkorn SC\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/vollkorn-sc/vollkorn-sc-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/vollkorn-sc/vollkorn-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1539;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Voltaire\";s:10:\"fontFamily\";s:20:\"Voltaire, sans-serif\";s:4:\"slug\";s:8:\"voltaire\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/voltaire/v20/1Pttg8PcRfSblAvGvQotYKVnBOif.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Voltaire\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/voltaire/voltaire-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/voltaire/voltaire.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1540;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Vujahday Script\";s:10:\"fontFamily\";s:26:\"\"Vujahday Script\", cursive\";s:4:\"slug\";s:15:\"vujahday-script\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/vujahdayscript/v8/RWmQoKGA8fEkrIPtSZ3_J7er2dUiCUtvAlaMKw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Vujahday Script\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/vujahday-script/vujahday-script-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/vujahday-script/vujahday-script.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1541;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Waiting for the Sunrise\";s:10:\"fontFamily\";s:34:\"\"Waiting for the Sunrise\", cursive\";s:4:\"slug\";s:23:\"waiting-for-the-sunrise\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/waitingforthesunrise/v20/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZV9h_ZYk5J.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Waiting for the Sunrise\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/waiting-for-the-sunrise/waiting-for-the-sunrise-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/waiting-for-the-sunrise/waiting-for-the-sunrise.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1542;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Wallpoet\";s:10:\"fontFamily\";s:19:\"Wallpoet, system-ui\";s:4:\"slug\";s:8:\"wallpoet\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/wallpoet/v20/f0X10em2_8RnXVVdUNbr7cXP8L8G.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wallpoet\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wallpoet/wallpoet-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/wallpoet/wallpoet.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1543;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Walter Turncoat\";s:10:\"fontFamily\";s:26:\"\"Walter Turncoat\", cursive\";s:4:\"slug\";s:15:\"walter-turncoat\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/walterturncoat/v23/snfys0Gs98ln43n0d-14ULoToe67ZR2dQ5ZPqQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Walter Turncoat\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/walter-turncoat/walter-turncoat-400-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/walter-turncoat/walter-turncoat.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1544;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Warnes\";s:10:\"fontFamily\";s:17:\"Warnes, system-ui\";s:4:\"slug\";s:6:\"warnes\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/warnes/v27/pONn1hc0GsW6sW5OoyC2o6Lkqg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Warnes\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/warnes/warnes-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/warnes/warnes.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1545;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Water Brush\";s:10:\"fontFamily\";s:22:\"\"Water Brush\", cursive\";s:4:\"slug\";s:11:\"water-brush\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/waterbrush/v4/AYCPpXPqc8cJWLhp4hywKHJv7PKP5Z_G.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Water Brush\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/water-brush/water-brush-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/water-brush/water-brush.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1546;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Waterfall\";s:10:\"fontFamily\";s:18:\"Waterfall, cursive\";s:4:\"slug\";s:9:\"waterfall\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/waterfall/v6/MCoRzAfo293fACdFKcwY37H8D_EZwA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Waterfall\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/waterfall/waterfall-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/waterfall/waterfall.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1547;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Wavefont\";s:10:\"fontFamily\";s:19:\"Wavefont, system-ui\";s:4:\"slug\";s:8:\"wavefont\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI3V0rDCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI1V07DCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI2L07DCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI3V07DCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI3n07DCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI0L1LDCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI0y1LDCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI1V1LDCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:127:\"https://fonts.gstatic.com/s/wavefont/v10/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI181LDCXKtOXOg4.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wavefont\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont-900-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/wavefont/wavefont.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1548;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Wellfleet\";s:10:\"fontFamily\";s:16:\"Wellfleet, serif\";s:4:\"slug\";s:9:\"wellfleet\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/wellfleet/v22/nuF7D_LfQJb3VYgX6eyT5maLDhO2HA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Wellfleet\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/wellfleet/wellfleet-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/wellfleet/wellfleet.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1549;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Wendy One\";s:10:\"fontFamily\";s:23:\"\"Wendy One\", sans-serif\";s:4:\"slug\";s:9:\"wendy-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/wendyone/v18/2sDcZGJOipXfgfXV5wgDam-4C7wFZQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Wendy One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/wendy-one/wendy-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/wendy-one/wendy-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1550;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Whisper\";s:10:\"fontFamily\";s:16:\"Whisper, cursive\";s:4:\"slug\";s:7:\"whisper\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:72:\"https://fonts.gstatic.com/s/whisper/v5/q5uHsoqtKftx74K9mixCBxxdmYU.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Whisper\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/whisper/whisper-400-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/whisper/whisper.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1551;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"WindSong\";s:10:\"fontFamily\";s:17:\"WindSong, cursive\";s:4:\"slug\";s:8:\"windsong\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:75:\"https://fonts.gstatic.com/s/windsong/v11/KR1WBsyu-P-GFEW57r98HdG6vjH3.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"WindSong\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/windsong/windsong-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/windsong/v11/KR1RBsyu-P-GFEW57oeNNPW3lS3-jVXm.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"WindSong\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/windsong/windsong-500-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/windsong/windsong.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1552;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Wire One\";s:10:\"fontFamily\";s:22:\"\"Wire One\", sans-serif\";s:4:\"slug\";s:8:\"wire-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/wireone/v28/qFdH35Wah5htUhV75WGnWdrCwwcJ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Wire One\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/wire-one/wire-one-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/wire-one/wire-one.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1553;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Wix Madefor Display\";s:10:\"fontFamily\";s:33:\"\"Wix Madefor Display\", sans-serif\";s:4:\"slug\";s:19:\"wix-madefor-display\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYlthv_3HQKgh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Wix Madefor Display\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-display/wix-madefor-display-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYlthv_3HQKgh.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Wix Madefor Display\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-display/wix-madefor-display-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVthv_3HQKgh.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Wix Madefor Display\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-display/wix-madefor-display-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVthv_3HQKgh.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Wix Madefor Display\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-display/wix-madefor-display-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:116:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVthv_3HQKgh.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Wix Madefor Display\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-display/wix-madefor-display-800-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-display/wix-madefor-display.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1554;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Wix Madefor Text\";s:10:\"fontFamily\";s:30:\"\"Wix Madefor Text\", sans-serif\";s:4:\"slug\";s:16:\"wix-madefor-text\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeAgpRt9rN5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJVP86N53IY.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-400-italic.svg\";}i:2;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeAgpRt9rN5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJVP86N53IY.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-500-italic.svg\";}i:4;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eAgpRt9rN5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJVP86N53IY.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-600-italic.svg\";}i:6;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eAgpRt9rN5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJVP86N53IY.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-700-italic.svg\";}i:8;a:5:{s:3:\"src\";s:109:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eAgpRt9rN5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-800-normal.svg\";}i:9;a:5:{s:3:\"src\";s:112:\"https://fonts.gstatic.com/s/wixmadefortext/v13/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJVP86N53IY.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:16:\"Wix Madefor Text\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text-800-italic.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/wix-madefor-text/wix-madefor-text.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1555;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Work Sans\";s:10:\"fontFamily\";s:23:\"\"Work Sans\", sans-serif\";s:4:\"slug\";s:9:\"work-sans\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNi0Dp6_cOyA.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:97:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJpo3ZKyDSQQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Work Sans\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans-900-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1556;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Xanh Mono\";s:10:\"fontFamily\";s:22:\"\"Xanh Mono\", monospace\";s:4:\"slug\";s:9:\"xanh-mono\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/xanhmono/v18/R70YjykVmvKCep-vWhSYnQCQXzLhTg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Xanh Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/xanh-mono/xanh-mono-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/xanhmono/v18/R70ejykVmvKCep-vWhSomgqRfTfxTo24.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:9:\"Xanh Mono\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/xanh-mono/xanh-mono-400-italic.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/xanh-mono/xanh-mono.svg\";}s:10:\"categories\";a:1:{i:0;s:9:\"monospace\";}}i:1557;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Yaldevi\";s:10:\"fontFamily\";s:19:\"Yaldevi, sans-serif\";s:4:\"slug\";s:7:\"yaldevi\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvtbxLCBJkS.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Yaldevi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvtbxLCBJkS.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Yaldevi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvtbxLCBJkS.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Yaldevi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvtbxLCBJkS.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Yaldevi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvtbxLCBJkS.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Yaldevi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvtbxLCBJkS.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Yaldevi\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi-700-normal.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/yaldevi/yaldevi.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1558;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:17:\"Yanone Kaffeesatz\";s:10:\"fontFamily\";s:31:\"\"Yanone Kaffeesatz\", sans-serif\";s:4:\"slug\";s:17:\"yanone-kaffeesatz\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpdWuLCnXkVA.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Yanone Kaffeesatz\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz-200-normal.svg\";}i:1;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpdWuLCnXkVA.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Yanone Kaffeesatz\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpdWuLCnXkVA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Yanone Kaffeesatz\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpdWuLCnXkVA.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Yanone Kaffeesatz\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpdWuLCnXkVA.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Yanone Kaffeesatz\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz-600-normal.svg\";}i:5;a:5:{s:3:\"src\";s:113:\"https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpdWuLCnXkVA.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:17:\"Yanone Kaffeesatz\";s:7:\"preview\";s:93:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz-700-normal.svg\";}}s:7:\"preview\";s:82:\"https://s.w.org/images/fonts/17.7/previews/yanone-kaffeesatz/yanone-kaffeesatz.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1559;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Yantramanav\";s:10:\"fontFamily\";s:23:\"Yantramanav, sans-serif\";s:4:\"slug\";s:11:\"yantramanav\";s:8:\"fontFace\";a:6:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/yantramanav/v13/flU-Rqu5zY00QEpyWJYWN5-QXeZzDB41rZg.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yantramanav\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN59Yf8NcIhI8tIHh.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yantramanav\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav-300-normal.svg\";}i:2;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/yantramanav/v13/flU8Rqu5zY00QEpyWJYWN6fxV-dRCQ41.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yantramanav\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN58AfsNcIhI8tIHh.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yantramanav\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav-500-normal.svg\";}i:4;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN59IeMNcIhI8tIHh.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yantramanav\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN59wesNcIhI8tIHh.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yantramanav\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav-900-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/yantramanav/yantramanav.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1560;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Yatra One\";s:10:\"fontFamily\";s:22:\"\"Yatra One\", system-ui\";s:4:\"slug\";s:9:\"yatra-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xxlOBbRDvXw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Yatra One\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/yatra-one/yatra-one-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/yatra-one/yatra-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1561;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Yellowtail\";s:10:\"fontFamily\";s:19:\"Yellowtail, cursive\";s:4:\"slug\";s:10:\"yellowtail\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/yellowtail/v22/OZpGg_pnoDtINPfRIlLotlnNwED-b4g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Yellowtail\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/yellowtail/yellowtail-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/yellowtail/yellowtail.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1562;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Yeon Sung\";s:10:\"fontFamily\";s:22:\"\"Yeon Sung\", system-ui\";s:4:\"slug\";s:9:\"yeon-sung\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:77:\"https://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xTFNazqx2xg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Yeon Sung\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/yeon-sung/yeon-sung-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/yeon-sung/yeon-sung.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1563;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Yeseva One\";s:10:\"fontFamily\";s:23:\"\"Yeseva One\", system-ui\";s:4:\"slug\";s:10:\"yeseva-one\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/yesevaone/v22/OpNJno4ck8vc-xYpwWWxpi9fWhXD00c.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Yeseva One\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/yeseva-one/yeseva-one-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/yeseva-one/yeseva-one.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1564;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Yesteryear\";s:10:\"fontFamily\";s:19:\"Yesteryear, cursive\";s:4:\"slug\";s:10:\"yesteryear\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/yesteryear/v18/dg4g_p78rroaKl8kRKo1r7kHTwonmyw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Yesteryear\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/yesteryear/yesteryear-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/yesteryear/yesteryear.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1565;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Yomogi\";s:10:\"fontFamily\";s:15:\"Yomogi, cursive\";s:4:\"slug\";s:6:\"yomogi\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/yomogi/v11/VuJwdNrS2ZL7rpoPXYz5NIh-YA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Yomogi\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/yomogi/yomogi-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/yomogi/yomogi.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1566;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Young Serif\";s:10:\"fontFamily\";s:20:\"\"Young Serif\", serif\";s:4:\"slug\";s:11:\"young-serif\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:80:\"https://fonts.gstatic.com/s/youngserif/v2/3qTpojO2nS2VtkB3KtkQZ2t_1EcYaQ7F.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Young Serif\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/young-serif/young-serif-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/young-serif/young-serif.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1567;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Yrsa\";s:10:\"fontFamily\";s:11:\"Yrsa, serif\";s:4:\"slug\";s:4:\"yrsa\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-600-normal.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NQ9rRPfrKu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-700-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-300-italic.svg\";}i:6;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-400-italic.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-500-italic.svg\";}i:8;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-600-italic.svg\";}i:9;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LVte6KuGEo.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:4:\"Yrsa\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa-700-italic.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/yrsa/yrsa.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1568;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"Ysabeau\";s:10:\"fontFamily\";s:19:\"Ysabeau, sans-serif\";s:4:\"slug\";s:7:\"ysabeau\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:89:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzY1I8Gcw6Oi.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcC-xrOiIUw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"Ysabeau\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau-900-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/ysabeau/ysabeau.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1569;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Ysabeau Infant\";s:10:\"fontFamily\";s:28:\"\"Ysabeau Infant\", sans-serif\";s:4:\"slug\";s:14:\"ysabeau-infant\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYFo4HLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYlo8HLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYSI8HLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYFo8HLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYJI8HLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYyIgHLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQY8YgHLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYlogHLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYv4gHLpChLwKH6A.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3szvaZqgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3sxvaJqgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3syxaJqgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3szvaJqgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3szdaJqgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3swxb5qgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3swIb5qgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3sxvb5qgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3sxGb5qgDQeX6Dc5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Infant\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-infant/ysabeau-infant.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1570;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Ysabeau Office\";s:10:\"fontFamily\";s:28:\"\"Ysabeau Office\", sans-serif\";s:4:\"slug\";s:14:\"ysabeau-office\";s:8:\"fontFace\";a:18:{i:0;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbh6IfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbB6MfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPb2aMfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbh6MfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbtaMfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbWaQfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbYKQfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbB6QfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbLqQfZCfpQj7IGQ.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-900-normal.svg\";}i:9;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-D3Iy3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-100-italic.svg\";}i:10;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-B3Ii3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-200-italic.svg\";}i:11;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-CpIi3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-300-italic.svg\";}i:12;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-D3Ii3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-400-italic.svg\";}i:13;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-DFIi3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-500-italic.svg\";}i:14;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-ApJS3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-600-italic.svg\";}i:15;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-AQJS3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-700-italic.svg\";}i:16;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-B3JS3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-800-italic.svg\";}i:17;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-BeJS3oYDvYGbGh.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:14:\"Ysabeau Office\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office-900-italic.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-office/ysabeau-office.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1571;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Ysabeau SC\";s:10:\"fontFamily\";s:24:\"\"Ysabeau SC\", sans-serif\";s:4:\"slug\";s:10:\"ysabeau-sc\";s:8:\"fontFace\";a:9:{i:0;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw98U1qBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"100\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-100-normal.svg\";}i:1;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw_8UlqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"200\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-200-normal.svg\";}i:2;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw8iUlqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-300-normal.svg\";}i:3;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw98UlqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-400-normal.svg\";}i:4;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw9OUlqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw-iVVqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-600-normal.svg\";}i:6;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw-bVVqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-700-normal.svg\";}i:7;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw_8VVqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"800\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-800-normal.svg\";}i:8;a:5:{s:3:\"src\";s:95:\"https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw_VVVqBZ4EOmsT5.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Ysabeau SC\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc-900-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/ysabeau-sc/ysabeau-sc.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1572;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:9:\"Yuji Boku\";s:10:\"fontFamily\";s:18:\"\"Yuji Boku\", serif\";s:4:\"slug\";s:9:\"yuji-boku\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1FkiL2r2dgvJA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:9:\"Yuji Boku\";s:7:\"preview\";s:77:\"https://s.w.org/images/fonts/17.7/previews/yuji-boku/yuji-boku-400-normal.svg\";}}s:7:\"preview\";s:66:\"https://s.w.org/images/fonts/17.7/previews/yuji-boku/yuji-boku.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1573;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"Yuji Hentaigana Akari\";s:10:\"fontFamily\";s:32:\"\"Yuji Hentaigana Akari\", cursive\";s:4:\"slug\";s:21:\"yuji-hentaigana-akari\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/yujihentaiganaakari/v11/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIQDzODYALaA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"Yuji Hentaigana Akari\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/yuji-hentaigana-akari/yuji-hentaigana-akari-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/yuji-hentaigana-akari/yuji-hentaigana-akari.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1574;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Yuji Hentaigana Akebono\";s:10:\"fontFamily\";s:34:\"\"Yuji Hentaigana Akebono\", cursive\";s:4:\"slug\";s:23:\"yuji-hentaigana-akebono\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:108:\"https://fonts.gstatic.com/s/yujihentaiganaakebono/v12/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy4NKXRzrrF.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Yuji Hentaigana Akebono\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/yuji-hentaigana-akebono/yuji-hentaigana-akebono-400-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/yuji-hentaigana-akebono/yuji-hentaigana-akebono.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1575;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Yuji Mai\";s:10:\"fontFamily\";s:17:\"\"Yuji Mai\", serif\";s:4:\"slug\";s:8:\"yuji-mai\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC35hmHmNpCO.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Yuji Mai\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/yuji-mai/yuji-mai-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/yuji-mai/yuji-mai.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1576;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Yuji Syuku\";s:10:\"fontFamily\";s:19:\"\"Yuji Syuku\", serif\";s:4:\"slug\";s:10:\"yuji-syuku\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:78:\"https://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPLgwqiA-Rk.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Yuji Syuku\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/yuji-syuku/yuji-syuku-400-normal.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/yuji-syuku/yuji-syuku.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1577;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Yusei Magic\";s:10:\"fontFamily\";s:25:\"\"Yusei Magic\", sans-serif\";s:4:\"slug\";s:11:\"yusei-magic\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHU-tdfcIT_.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Yusei Magic\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/yusei-magic/yusei-magic-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/yusei-magic/yusei-magic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1578;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:12:\"ZCOOL KuaiLe\";s:10:\"fontFamily\";s:26:\"\"ZCOOL KuaiLe\", sans-serif\";s:4:\"slug\";s:12:\"zcool-kuaile\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2Wo4zzoXhC2g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:12:\"ZCOOL KuaiLe\";s:7:\"preview\";s:83:\"https://s.w.org/images/fonts/17.7/previews/zcool-kuaile/zcool-kuaile-400-normal.svg\";}}s:7:\"preview\";s:72:\"https://s.w.org/images/fonts/17.7/previews/zcool-kuaile/zcool-kuaile.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1579;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:21:\"ZCOOL QingKe HuangYou\";s:10:\"fontFamily\";s:35:\"\"ZCOOL QingKe HuangYou\", sans-serif\";s:4:\"slug\";s:21:\"zcool-qingke-huangyou\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:104:\"https://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIjv28c8bHWA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:21:\"ZCOOL QingKe HuangYou\";s:7:\"preview\";s:101:\"https://s.w.org/images/fonts/17.7/previews/zcool-qingke-huangyou/zcool-qingke-huangyou-400-normal.svg\";}}s:7:\"preview\";s:90:\"https://s.w.org/images/fonts/17.7/previews/zcool-qingke-huangyou/zcool-qingke-huangyou.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1580;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"ZCOOL XiaoWei\";s:10:\"fontFamily\";s:27:\"\"ZCOOL XiaoWei\", sans-serif\";s:4:\"slug\";s:13:\"zcool-xiaowei\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFeQHwyVd3U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"ZCOOL XiaoWei\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/zcool-xiaowei/zcool-xiaowei-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/zcool-xiaowei/zcool-xiaowei.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1581;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"Zen Antique\";s:10:\"fontFamily\";s:20:\"\"Zen Antique\", serif\";s:4:\"slug\";s:11:\"zen-antique\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:81:\"https://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJv7PKP5Z_G.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"Zen Antique\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/zen-antique/zen-antique-400-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/zen-antique/zen-antique.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1582;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:16:\"Zen Antique Soft\";s:10:\"fontFamily\";s:25:\"\"Zen Antique Soft\", serif\";s:4:\"slug\";s:16:\"zen-antique-soft\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:92:\"https://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwVmkui5HNg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:16:\"Zen Antique Soft\";s:7:\"preview\";s:91:\"https://s.w.org/images/fonts/17.7/previews/zen-antique-soft/zen-antique-soft-400-normal.svg\";}}s:7:\"preview\";s:80:\"https://s.w.org/images/fonts/17.7/previews/zen-antique-soft/zen-antique-soft.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1583;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Zen Dots\";s:10:\"fontFamily\";s:21:\"\"Zen Dots\", system-ui\";s:4:\"slug\";s:8:\"zen-dots\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:74:\"https://fonts.gstatic.com/s/zendots/v12/XRXX3ICfm00IGoesQeaBTM_FcCIG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Zen Dots\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/zen-dots/zen-dots-400-normal.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/zen-dots/zen-dots.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1584;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:23:\"Zen Kaku Gothic Antique\";s:10:\"fontFamily\";s:37:\"\"Zen Kaku Gothic Antique\", sans-serif\";s:4:\"slug\";s:23:\"zen-kaku-gothic-antique\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TauWJtyZyGU.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Zen Kaku Gothic Antique\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:107:\"https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-l3RKjc4d7.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Zen Kaku Gothic Antique\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DauWJtyZyGU.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Zen Kaku Gothic Antique\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jauWJtyZyGU.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Zen Kaku Gothic Antique\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:111:\"https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DauWJtyZyGU.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:23:\"Zen Kaku Gothic Antique\";s:7:\"preview\";s:105:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-900-normal.svg\";}}s:7:\"preview\";s:94:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1585;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:19:\"Zen Kaku Gothic New\";s:10:\"fontFamily\";s:33:\"\"Zen Kaku Gothic New\", sans-serif\";s:4:\"slug\";s:19:\"zen-kaku-gothic-new\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWHSTGlMyd8.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Zen Kaku Gothic New\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:98:\"https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkj5iTWz5UGA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Zen Kaku Gothic New\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWHSTGlMyd8.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Zen Kaku Gothic New\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWHSTGlMyd8.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Zen Kaku Gothic New\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:102:\"https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWHSTGlMyd8.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:19:\"Zen Kaku Gothic New\";s:7:\"preview\";s:97:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-900-normal.svg\";}}s:7:\"preview\";s:86:\"https://s.w.org/images/fonts/17.7/previews/zen-kaku-gothic-new/zen-kaku-gothic-new.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1586;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Zen Kurenaido\";s:10:\"fontFamily\";s:27:\"\"Zen Kurenaido\", sans-serif\";s:4:\"slug\";s:13:\"zen-kurenaido\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/zenkurenaido/v16/3XFsEr0515BK2u6UUptu_gWJZfn22PRLd0U.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Zen Kurenaido\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/zen-kurenaido/zen-kurenaido-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/zen-kurenaido/zen-kurenaido.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1587;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:8:\"Zen Loop\";s:10:\"fontFamily\";s:21:\"\"Zen Loop\", system-ui\";s:4:\"slug\";s:8:\"zen-loop\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/zenloop/v9/h0GrssK16UsnJwHsEK92qwzX5vOG.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:8:\"Zen Loop\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/zen-loop/zen-loop-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/zenloop/v9/h0GtssK16UsnJwHsEJ9xoQ314-OGJ0w.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:8:\"Zen Loop\";s:7:\"preview\";s:75:\"https://s.w.org/images/fonts/17.7/previews/zen-loop/zen-loop-400-italic.svg\";}}s:7:\"preview\";s:64:\"https://s.w.org/images/fonts/17.7/previews/zen-loop/zen-loop.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1588;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:15:\"Zen Maru Gothic\";s:10:\"fontFamily\";s:29:\"\"Zen Maru Gothic\", sans-serif\";s:4:\"slug\";s:15:\"zen-maru-gothic\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCOZqa_ajlvw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Zen Maru Gothic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/zen-maru-gothic/zen-maru-gothic-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:90:\"https://fonts.gstatic.com/s/zenmarugothic/v16/o-0SIpIxzW5b-RxT-6A8jWAtCp-k6EJmNLGG9A.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Zen Maru Gothic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/zen-maru-gothic/zen-maru-gothic-400-normal.svg\";}i:2;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCOZqa_ajlvw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Zen Maru Gothic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/zen-maru-gothic/zen-maru-gothic-500-normal.svg\";}i:3;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1COZqa_ajlvw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Zen Maru Gothic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/zen-maru-gothic/zen-maru-gothic-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:94:\"https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9COZqa_ajlvw.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:15:\"Zen Maru Gothic\";s:7:\"preview\";s:89:\"https://s.w.org/images/fonts/17.7/previews/zen-maru-gothic/zen-maru-gothic-900-normal.svg\";}}s:7:\"preview\";s:78:\"https://s.w.org/images/fonts/17.7/previews/zen-maru-gothic/zen-maru-gothic.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1589;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:14:\"Zen Old Mincho\";s:10:\"fontFamily\";s:23:\"\"Zen Old Mincho\", serif\";s:4:\"slug\";s:14:\"zen-old-mincho\";s:8:\"fontFace\";a:5:{i:0;a:5:{s:3:\"src\";s:87:\"https://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYbyg31S2s8p.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Zen Old Mincho\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/zen-old-mincho/zen-old-mincho-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqllf8dMgPgBu.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Zen Old Mincho\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/zen-old-mincho/zen-old-mincho-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVlf8dMgPgBu.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Zen Old Mincho\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/zen-old-mincho/zen-old-mincho-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFlf8dMgPgBu.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Zen Old Mincho\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/zen-old-mincho/zen-old-mincho-700-normal.svg\";}i:4;a:5:{s:3:\"src\";s:91:\"https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrllf8dMgPgBu.woff2\";s:10:\"fontWeight\";s:3:\"900\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:14:\"Zen Old Mincho\";s:7:\"preview\";s:87:\"https://s.w.org/images/fonts/17.7/previews/zen-old-mincho/zen-old-mincho-900-normal.svg\";}}s:7:\"preview\";s:76:\"https://s.w.org/images/fonts/17.7/previews/zen-old-mincho/zen-old-mincho.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1590;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Zen Tokyo Zoo\";s:10:\"fontFamily\";s:26:\"\"Zen Tokyo Zoo\", system-ui\";s:4:\"slug\";s:13:\"zen-tokyo-zoo\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:84:\"https://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8ahuRWe9amg.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Zen Tokyo Zoo\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/zen-tokyo-zoo/zen-tokyo-zoo-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/zen-tokyo-zoo/zen-tokyo-zoo.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:1591;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:6:\"Zeyada\";s:10:\"fontFamily\";s:15:\"Zeyada, cursive\";s:4:\"slug\";s:6:\"zeyada\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:71:\"https://fonts.gstatic.com/s/zeyada/v19/11hAGpPTxVPUbgZDMWatWKaZ3g.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:6:\"Zeyada\";s:7:\"preview\";s:71:\"https://s.w.org/images/fonts/17.7/previews/zeyada/zeyada-400-normal.svg\";}}s:7:\"preview\";s:60:\"https://s.w.org/images/fonts/17.7/previews/zeyada/zeyada.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1592;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"Zhi Mang Xing\";s:10:\"fontFamily\";s:24:\"\"Zhi Mang Xing\", cursive\";s:4:\"slug\";s:13:\"zhi-mang-xing\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0aItfektIJ0.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"Zhi Mang Xing\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/zhi-mang-xing/zhi-mang-xing-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/zhi-mang-xing/zhi-mang-xing.svg\";}s:10:\"categories\";a:1:{i:0;s:11:\"handwriting\";}}i:1593;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:10:\"Zilla Slab\";s:10:\"fontFamily\";s:19:\"\"Zilla Slab\", serif\";s:4:\"slug\";s:10:\"zilla-slab\";s:8:\"fontFace\";a:10:{i:0;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HGjWlhzbaw.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-300-normal.svg\";}i:1;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapW3p2fazkfg.woff2\";s:10:\"fontWeight\";s:3:\"300\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-300-italic.svg\";}i:2;a:5:{s:3:\"src\";s:79:\"https://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWjgw_HyIRlE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-400-normal.svg\";}i:3;a:5:{s:3:\"src\";s:82:\"https://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86_V6NVlFqdA.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-400-italic.svg\";}i:4;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HGjWlhzbaw.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-500-normal.svg\";}i:5;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepW3p2fazkfg.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-500-italic.svg\";}i:6;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HGjWlhzbaw.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-600-normal.svg\";}i:7;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpW3p2fazkfg.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-600-italic.svg\";}i:8;a:5:{s:3:\"src\";s:83:\"https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HGjWlhzbaw.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-700-normal.svg\";}i:9;a:5:{s:3:\"src\";s:86:\"https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpW3p2fazkfg.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:10:\"Zilla Slab\";s:7:\"preview\";s:79:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab-700-italic.svg\";}}s:7:\"preview\";s:68:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab/zilla-slab.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}i:1594;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:20:\"Zilla Slab Highlight\";s:10:\"fontFamily\";s:29:\"\"Zilla Slab Highlight\", serif\";s:4:\"slug\";s:20:\"zilla-slab-highlight\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:101:\"https://fonts.gstatic.com/s/zillaslabhighlight/v19/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtNY2DwSXlM.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Zilla Slab Highlight\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab-highlight/zilla-slab-highlight-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:105:\"https://fonts.gstatic.com/s/zillaslabhighlight/v19/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET9YmVF0Mb6.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:20:\"Zilla Slab Highlight\";s:7:\"preview\";s:99:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab-highlight/zilla-slab-highlight-700-normal.svg\";}}s:7:\"preview\";s:88:\"https://s.w.org/images/fonts/17.7/previews/zilla-slab-highlight/zilla-slab-highlight.svg\";}s:10:\"categories\";a:1:{i:0;s:5:\"serif\";}}}}','no'); +INSERT INTO `wp_options` VALUES +(208,'_site_transient_timeout_community-events-6718ef04d3f46d7f6ff6aabe77f33591','1721288893','no'), +(209,'_site_transient_community-events-6718ef04d3f46d7f6ff6aabe77f33591','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:27:\"WordCamp Karlsruhe, Germany\";s:3:\"url\";s:36:\"https://karlsruhe.wordcamp.org/2024/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-10-12 00:00:00\";s:8:\"end_date\";s:19:\"2024-10-12 00:00:00\";s:20:\"start_unix_timestamp\";i:1728684000;s:18:\"end_unix_timestamp\";i:1728684000;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Karlsruhe, Germany\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:48.9916377;s:9:\"longitude\";d:8.3991433;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"Rome Core Days 2024\";s:3:\"url\";s:48:\"https://events.wordpress.org/rome/2024/coredays/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-11-08 00:00:00\";s:8:\"end_date\";s:19:\"2024-11-09 00:00:00\";s:20:\"start_unix_timestamp\";i:1731020400;s:18:\"end_unix_timestamp\";i:1731106800;s:8:\"location\";a:4:{s:8:\"location\";s:4:\"Rome\";s:7:\"country\";s:2:\"IT\";s:8:\"latitude\";d:41.9015232;s:9:\"longitude\";d:12.5033448;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Europe\";s:3:\"url\";s:33:\"https://europe.wordcamp.org/2025/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2025-06-05 00:00:00\";s:8:\"end_date\";s:19:\"2025-06-07 00:00:00\";s:20:\"start_unix_timestamp\";i:1749074400;s:18:\"end_unix_timestamp\";i:1749247200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Europe\";s:7:\"country\";s:2:\"CH\";s:8:\"latitude\";d:47.5627438;s:9:\"longitude\";d:7.5993872;}}}}','no'), +(210,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1721288893','no'), +(211,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jul 2024 08:22:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.7-alpha-58743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:66:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.6 “Dorsey”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2024/07/dorsey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jul 2024 16:51:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17517\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:272:\"Say hello to the latest WordPress! WordPress 6.6 \"Dorsey\" is here to deliver on the promise of a better web with style, finesse, and a suite of enhanced tools to create beautifully coherent design elements and the confidence of automatic rollbacks for your plugin updates.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:57905:\"\n
\"\"
\n\n\n\n

Say hello to WordPress 6.6 “Dorsey,” named after the legendary American Big Band leader, Tommy Dorsey. Renowned for his smooth-toned trombone and compositions, Dorsey’s music captivated audiences with its emotional depth and vibrant energy.

\n\n\n\n

Let your heart swing, sing, and sway to the deep brass notes of Dorsey’s Big Band sound as you explore the new features and enhancements of WordPress 6.6.

\n\n\n\n

Hello, 6.6!

\n\n\n\n

WordPress 6.6 delivers on the promise of a better web by bringing style, finesse, and a suite of creative possibilities to your site-building experience. This version helps you do more with ease, putting enhanced tools at your fingertips and giving you unprecedented power behind the scenes. You will find more ways to create beautiful, coherent design elements across your site, a new layout for quick page previews in the Site Editor, and the safety of automatic rollbacks for failed plugin auto-updates—among many other highlights.

\n\n\n\n

In addition to the new features, “Dorsey” continues to deliver the performance and accessibility gains you can expect from every WordPress release. Explore what WordPress 6.6 has to offer and get ready to let its features take your sites to new heights.

\n\n\n\n
\n\n
\n\n\n\n

What’s inside

\n\n\n\n

Add more design options to block themes

\n\n\n\n

Create color or font sets to multiply design combinations across one theme. These sets offer more contained design possibilities, allowing visual variety within the site’s broader styling guidelines.

\n\n\n\n
\"\"
\n\n\n\n

Simplify your workflow with a new layout for pages in the Site Editor

\n\n\n\n

See all of your pages and a preview of any selected page with the new side-by-side layout in the Site Editor.

\n\n\n\n
\"\"
\n\n\n\n

Auto-update your plugins with peace of mind

\n\n\n\n

Enjoy the convenience of plugin auto-updates with the safety of rollbacks if anything goes wrong—offering your site a new level of security, enhanced functionality as it becomes available, and almost no time or bandwidth from you to make it happen.

\n\n\n\n
\"\"
\n\n\n\n

Customize content in synced patterns

\n\n\n\n

Make content changes in each instance of a synced pattern while maintaining a consistent style across them. Set these overrides for Heading, Paragraph, Button, and Image blocks when placed in a synced pattern.

\n\n\n\n
\"\"
\n\n\n\n

Performance

\n\n\n\n

WordPress 6.6 features important updates like removing redundant WP_Theme_JSON calls, disabling autoload for large options, and eliminating unnecessary polyfill dependencies. Other highlights include lazy-loading post embeds, a new data-wp-on-async directive, and templates in the editor that load approximately 35% faster overall.

\n\n\n\n

Accessibility

\n\n\n\n

This release includes 58 accessibility fixes and enhancements. These focus on foundational aspects of the WordPress experience, particularly the data views component powering the new site editing experience and areas like the Inserter, which provide a key way of interacting with blocks and patterns.

\n\n\n\n

And much more

\n\n\n\n

Visit the feature showcase for a full overview of all the new features and enhancements in WordPress 6.6.

\n\n\n\n
\n\n
\n\n\n\n

Learn more about WordPress 6.6

\n\n\n\n

Explore Learn WordPress for quick how-to videos, online workshops, and other free resources to level up your WordPress knowledge and skills.

\n\n\n\n

The WordPress 6.6 Field Guide contains detailed technical information and developer notes to help you build with WordPress and get the most out of this release. Don’t forget to subscribe to the Developer Blog for updates, tutorials, and other helpful WordPress content for developers.

\n\n\n\n

For information about installation, file changes, fixes, and other updates, read the 6.6 release notes.

\n\n\n\n

The 6.6 release squad

\n\n\n\n

Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.6 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.

\n\n\n\n\n\n\n\n

Thank you, contributors

\n\n\n\n

The mission of WordPress is to democratize publishing and embody the freedoms that come with open source. A global and diverse community of people collaborating to strengthen the software supports this effort.

\n\n\n\n

WordPress 6.6 reflects the tireless efforts and passion of more than 630 contributors in at least 51 countries. This release also welcomed over 150 first-time contributors!

\n\n\n\n

Their collaboration delivered more than 1,900 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.

\n\n\n\n

!Benni · 1naveengiri · Aaron Jorbin · Aaron Robertshaw · aatanasov · abditsori · Abha Thakor · abhi3315 · Abhijit Rakas · abitofmind · Adam Harley (Kawauso) · Adam Silverstein · Adel Tahri · adrianduffell · Aezaz Shekh · Ahmed Kabir Chaion · ajfleming · Ajit Bohra · Akash Dhawade · Aki Hamano · Akira Tachibana · akmelias · Alan Fuller · Albert Juhé Lluveras · alesflex · Alex Concha · Alex Kozack · Alex Lende · Alex Stine · Alexandre Buffet · alexminza · allilevine · Alvaro Gómez · amanias1977 · Amber Hinds · Amir Abbas · amisiewicz · Amit Raj · Anamarija Papić · Anders Norén · Andre Ribeiro · Andrea Fercia · Andrea Roenning · Andrei Draganescu · Andrei Lupu · Andrew Hayward · Andrew Hutchings · Andrew Nacin · Andrew Ozz · Andrew Serong · André Maneiro · Andy Fragen · Aneesh Devasthale · Angela Jin · Anil Vaza · Ankit K Gupta · Ankit Panchal · Anne McCarthy · Anthony Burchell · Anton Vlasenko · Ari Stathopoulos · Artemio Morales · Arthur Chu · Artur Piszek · Arun Sharma · Arunas Liuiza · Ashesh Magar · Asiqur Rahman · Asish Chandra Mohon · Aslam Doctor · asmittle · Aurooba Ahmed · Ayesh Karunaratne · Balu B · bangank36 · Bart Kalisz · Beatriz Fialho · Beau Lebens · Ben Dwyer · Ben Keith · Ben Ritner - Kadence WP · Benjamin Pick · Benjamin Zekavica · benjpw · bernhard-reiter · Birgit Pauli-Haack · bissy · Bjarne Oldrup · Blackbam · Blockify · bnewboldbsky · Brad Jorsch · Brennan Goewert · Brian Alexander · Brian Coords · Brian Gardner · Brian Gosnell · Brian Haas · Bridget Willard · Brooke · Bruno Freiberger Garcia · burnuser · Caleb Burks · Candy · Carlos Bravo · Carlos G. P. · Carolina Nymark · cbirdsong · Chad Chadbourne · Charlie Merland · Chloe Bringmann · Chouby · Chris Reynolds · chrisdotdotdot · Christopher · Colin Stewart · ColinD · colle · comecaramelos · Constantine Vasilyev · CookiesForDevo · Corey McKrill · Craig Francis · crazytonyli · Cullen Whitmore · Curdin Krummenacher · cyrus11 · Dale du Preez · Damon Cook · Damon Cook · Dan Soschin · Dani Guardiola · Daniel Richards · darerodz · Darren Ethier (nerrad) · Darshit Rajyaguru · dav4 · Dave Page · David · David A. Kennedy · David Baumwald · David Biňovec · David Bowman · David Calhoun · David Herrera · David Jensen · David Levine · David Rozando · David Smith · davideferre · De\'Yonté W. · Dean Sas · Deep Patel · Deepak Vijayan · Denis Žoljom · Dennis Snell · Derek Blank · Devin Curtis · Dharmesh Patel · Dhrumil Kumbhani · Dhruval Shah · dhruvang21 · dhruvkb · DiedeExterkate · Dilip Bheda · Dion Hulse · DJ · DjZoNe · Dominik Schilling · Drew Jaynes · drrxbracho · Earle Davies · Elena Brescacin · Ella van Durpe · Emmanuel Hesry · Enej Bajgorić · Eneko Garrido · enodekciw · Enrico Battocchi · Enrico Sorcinelli · Erik · Estela Rueda · evanltd · Fabian Kägy · Fabian Todt · Faisal Alvi · Fanly · Farhan Ahmed · Felix Arntz · Flavia Bernárdez Rodríguez · Florian TIAR · Franz Josef Kaiser · Gabor Lippert · Gal Baras · Garth Mortensen · Gary Jones · George Mamadashvili · George Stephanis · Gerardo Pacheco · Glen Davies · Glenn Ansley · Grant M. Kinney · Greg Ziółkowski · Guido Scialfa · Héctor Prieto · hakre · hanneslsm · Hans-Gerd Gerhards · Harit Panchal · Harsh Gajipara · Haz · heinvv · HelgaTheViking · Hinnerk Altenburg · Hit Bhalodia · Hitendra Chopda · humanify · huubl · Huzaifa Al Mesbah · Ian Belanger · ignatiusjeroe · Imran · inwerpsel · Ipstenu (Mika Epstein) · Isabel Brison · IT Path Solutions · ivanottinger · Jaap Weijland · Jack Stevens · jaclync · James Koster · James Wesley Goedert · Jamie Speller · Jan Boddez · Jansen Tolle · janthiel · Jarda Snajdr · Jarek Mazurczak · Jaroslav \"Dero\" Polakovic · Jason Adams · Jason Crist · Jason Johnston · Jason LeMahieu (MadtownLems) · Javier Casares · jayanthparthsarathy · jdekhtiar · Jean-Baptiste Audras · Jeff Chi · Jeff Ong · Jeffrey Paul · jeflopo · Jenny Dupuy · Jeremy Felt · Jeremy Herve · Jeremy Pry · Jerry Jones · Jesús Amieiro · Jess · Jessica Lyschik · jhned · Jigar Bhanushali · Jip Moors · JiveDig · Joe Dolson · Joe McGill · Joen Asmussen · Johannes Jülg · John Blackbourn · John Espiritu · John Godley · John Hooks · John James Jacoby · Jon Surrell · jon092 · Jonathan · Jonathan Bossenger · Jonathan Desrosiers · Joni Erkkilä · Jonny Harris · jordesign · Jorge Costa · Jose Varghese · Josep Morán · Joseph Scott · Joshua Goode · Jossnaz · Juan Aldasoro · JuanMa Garrido · jules · Julie Moynat · Juliette Reinders Folmer · Julio Potier · Justin Tadlock · justnorris · Jyolsna J E · K. Adam White · KafleG · Kai Hao · Kajal Gohel · kamran8176 · Kapil Paul · Karlijn Bok · Karol Manijak · Karthik Thayyil · Kathryn Presner · Kellen Mace · Kelly Choyce-Dwan · keoshi · Kevin Hoffman · Khokan Sardar · killua99 · Kira Schroder · kitchin · Kite · Kjell Reigstad · kkmuffme · kmvan · Konstantin Kovshenin · kristastevens · kristenfisher427 · Krupa Nanda · Krupal Panchal · Kushang Tailor · kyleak · Lae · Lanre Smith · Lars Gersmann · Laura Byrne · laurelfulford · Lauren · Lauren Stein · Laurent Naudier · leemon · Lena Morita · Leonidas Milosis · Linkon Miyan · liviopv · Louis Wolmarans · Lovekesh Kumar · luboslives · Luigi Teschio · Luis · Luis Molina (interdevel) · luisherranz · Lyon Müller · Márcio Duarte · Madhu Dollu · Maggie Cabrera · Mai · Makdia Hussain · manfcarlo · Manoj Maharrshi · Marc · Marc Armengou · Marcelo de Moraes Serpa · Marco Ciampini · Marco Pereirinha · marherumr · Marie Comet · Marin Atanasov · Mario Santos · Marius L. J. · Mark Howells-Mead · Mark Jaquith · Mark Szymanski · Mark Uraine · Martijn van der Klis · Mary Baum · Mat Lipe · Mathieu Viet · Matias Benedetto · Matias Ventura · Matt Cromwell · Matt Medeiros · Matt Mullenweg · Matt Sherman · Md Abul Bashar · Md Sahadat Husain · Md Tofajjal Hossen · MD.NESAR MRIDHA · Meet Makadia · Meet Mehta · megane9988 · Meher Bala · Michael James Ilett · Michal Czaplinski · Miguel Fonseca · miguelsansegundo · Mihai Joldis · Miikka · Mikael Korpela · Mike Henderson · Mike McAlister · Mikey Binns · Minal Diwan · Miriam Schwab · miya · mkismy · Mohit Dadhich · Monzur Alam · Morais Junior · mrwweb · Muhibul Haque · mujuonly · Mukesh Panchal · Musannif Zahir · Mustaque Ahmed · myhro · mykolashlyakhtun · Mykyta Synelnikov · Nadir Seghir · Naeem Haque · Namith Jawahar · Narendra Sishodiya · Naresh Bheda · Nate Gay · Nazmul Hasan Robin · Nazmul Hosen · Nick Diego · nicmare · Nico · Nicolas Tatarchenko · Nicole Furlan · Nicole Paschen Caylor · nicomollet · nidhidhandhukiya · Niels Lange · Nihar Ranjan Das · Nik Tsekouras · Nilo Velez · Nirav Sherasiya · Nithin John · Nithin SreeRaj · nkeller15 · nosilver4u · obliviousharmony · Ohia ᚛ᚈᚐᚂᚐᚋᚆ᚜ · okat · Old account · Olga Gleckler · Oliver Campion · Oliver Schmid · OllieJones · Omar Alshaker · Paal Joachim Romdahl · Pablo Honey · Paolo L. Scala · Pascal Birchler · Patricia BT · Paul Bearne · Paul de Wouters · Paul Kevan · Paul Wilde · Pavan Patil · pavelevap · Pedro Mendonça · peiche · Per Søderlind · perryrylance · Peter Rubin · Peter Wilson · petitphp · Phi Phan · Pieterjan Deneys · Pinar · Pitam Dey · pkuliga · Pooja N Muchandikar · Povilas Staškus · Praful Patel · Pranit Dugad · Prasad Karmalkar · Prashant Baldha · Pratik Londhe · Prem Tiwari · Presskopp · presstoke · printsachen1 · Priyanshii Vijayvargiya · Prottoy Sarkar Argho · QuietNoise · Rachel Baker · Rafael Galani · Rafał Całka · Rajan Lama · Rajin Sharwar · Ramon Ahnert · Ramon Corrales · Ramon James · Ravikumar Patel · Ravinder Kumar · Rejaul Alom Khan · Remkus de Vries · Remy Perona · renishsurani · retrofox · Riad Benguella · Rich Collier · Rich Tabor · Richard Korthuis · richardevs · Rishi Mehta · Robert Anderson · Robert Ghetau · Robin Cornett · rodionov201 · Rodrigo Arias · Rodrigo Primo · Roger · Rolf Siebers · Roy Tanck · Ryan McCue · Ryan Urban · Ryan Welcher · Sébastien SERRE · Sérgio Gomes · Sören Wünsch · s0what · Sagar Prajapati · sahilthakur02 · Sakib Mohammed · Sal Ferrarello · Sam Berry · Sam Brockway · samiamnot · Sampat Viral · Samuel Rüegger · Samuel Sidler · Sanne van der Meulen · Sarah Norris · Sarkar Ripon · Sascha Metz · Saulius Vikerta · Saxon Fletcher · Saxon Fletcher · scribu · script2see · Sean Fisher · Sergey Biryukov · Seth Miller · Seth Rubenstein · Shail Mehta · Shalin Shah · Shannon Smith · shaunandrews · sheulyshila · Shital Marakana · Shiva Poudel · Shiva Shanker Bhatta · Shreyash Srivastava · Shubham Kumar Bansal · Shuvo Mohajan · Siddharth Thevaril · siliconforks · Simone Maranzana · Siobhan · sirzooro · SJNBham · Sneha Patil · Spencer Finnell · Stefano Minoia · Stephen Bernhardt · Stephen Brook · Stephen Edgar · stephenmiracle · Steve Jones · steveblum · strangehill · strarsis · Sudip Dadhaniya · Sumit Bagthariya · Sumit Singh · SunilPrajapati · Suwash · syamraj24 · Sybre Waaijer · Syed Balkhi · Tahmid ul Karim · Takashi Irie · Takashi Kitajima · Tammie Lister · Taylor Gorman · Terence Eden · Teresa Gobble · Thakor Darshil · thelmachido a11n · Thijs · Thirumani Guhan · Thomas Kräftner · Till Krüss · Tim Brathärig · Tim Nicholson · Tim Nolte · Timo Tijhof · Timothy Jacobs · tmatsuur · TobiasBg · tobifjellner (Tor-Bjorn Fjellner) · Tom Cafferkey · Tomek · tomepajk · Tomoki Shimomura · tomxygen · Toni Viemerö · Tony G · Tonya Mork · Toro_Unit (Hiroshi Urabe) · Torsten Landsiedel · Trupti Kanzariya · tunetheweb · twstokes · tybor · Ugyen Dorji · Umesh Gupta · up1512001 · Vicente Canales · Viktor Szépe · Vinit · Vinita Tandulkar · Vipul Gupta · Vishal Kothari · vivekawsm · WebMan Design | Oliver Juhas · websitegenii · wesatintellitonic · Weston Ruter · whaze · Will Skora · William Earnhardt · WilliamG · Wojtek Naruniec · Yagnik Sangani · yankiara · Yann · Yannis Guyon · Yui · Yukinobu Asakawa · Yuvrajsinh Sisodiya · Zack Krida · Zafar Kamal · zieladam · zkarj · Zunaid Amin

\n\n\n\n

More than 60 locales have translated 90 percent or more of WordPress 6.6 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.

\n\n\n\n

Last but not least, thanks to the volunteers who contribute to the support forums by answering questions from WordPress users worldwide.

\n\n\n\n

Get involved

\n\n\n\n

Participation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to Make WordPress and use this interactive tool to help you decide which is right for you.

\n\n\n\n

6.6 haiku

\n\n\n\n

Six-point-six is here.
Make it all gorgeous; keep it
On brand, and relax.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17517\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.6 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/07/wordpress-6-6-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2024 17:39:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17497\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"WordPress 6.6 RC3 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC3 on a test server or a local environment. Reaching this phase of the release cycle is a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9781:\"\n

WordPress 6.6 RC3 is ready for download and testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC3 on a test server or a local environment.

\n\n\n\n

Reaching this phase of the release cycle is a worthy achievement. While release candidates are considered ready for release, your testing is still vital to make sure everything in WordPress 6.6 is the best it can be.

\n\n\n\n

You can test WordPress 6.6 RC3 in four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the RC3 version (zip) and install it on a WordPress website.
Command LineUse the this WP-CLI command:
wp core update --version=6.6-RC3
WordPress PlaygroundUse the 6.6 RC3 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.
Please test WordPress 6.6 RC3 in one or more of these four ways.
\n\n\n\n

The target for the WordPress 6.6 release is next Tuesday, July 16, 2024. Get an overview of the 6.6 release cycle, and check the Make WordPress Core blog for 6.6-related posts in the next few weeks for further details.

\n\n\n\n

What’s in WordPress 6.6 RC3?

\n\n\n\n

Thanks to your testing (and many other contributors‘ up to now) this release includes eight bug fixes for the Editor and 18 tickets for WordPress Core.

\n\n\n\n

Get a recap of WordPress 6.6’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since RC 2, you can browse the following links:

\n\n\n\n\n\n\n\n

Want to look deeper into the details and technical notes for this release? You might want to make your first stop The WordPress 6.6 Field Guide. Then, check out this list:

\n\n\n\n\n\n\n\n

You can contribute. Here’s how

\n\n\n\n

WordPress is the world’s most popular open source web platform, thanks to a passionate community of people who collaborate on its development in a wide variety of ways. You can help—whether or not you have any technical expertise.

\n\n\n\n

Get involved in testing

\n\n\n\n

Testing for issues is critical to keeping WordPress speedy, stable, and secure. It’s also a vital way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.6. If you’re new to testing, follow this general testing guide for more details on getting set up.

\n\n\n\n

If you encounter an issue, please report it to the Alpha/Beta area of the support forums. If you are comfortable writing a reproducible bug report, you can also report it on WordPress Trac. Before you do either, you may want to check your issue against a list of known bugs.

\n\n\n\n

Curious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

\n\n\n\n

Please update your WordPress product

\n\n\n\n

If you build themes, plugins, blocks, or patterns, your efforts play an integral role in adding new functionality to WordPress and helping bring new people and ideas to the most vibrant (and massive!) open source community in the world. 

\n\n\n\n

Thanks for continuing to test your products with the WordPress 6.6 betas and release candidates. With RC3, you’ll want to make sure everything is working smoothly, and if it’s a plugin, update the “Tested up to” version in its readme file to 6.6.

\n\n\n\n

If you find compatibility issues, please post detailed information to the support forum.

\n\n\n\n

Help translate WordPress

\n\n\n\n

Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.

\n\n\n\n

The RC3 haiku

\n\n\n\n

One week to go. Then:
Open the paintbox! Try the tools!
Play a new jazz tune.

\n\n\n\n

Props to @meher and @audrasjb. for peer review.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WP Briefing: Episode 83: Learning Pathways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2024/07/episode-83-learning-pathways/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Jul 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=17489\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:421:\"Discover how Learning Pathways can guide you through your WordPress journey with clarity and purpose. In the latest episode of WordPress Briefing, host Josepha Haden Chomphosy welcomes special guest Wes Theron to discuss the newly introduced Learning Pathways. These curated lesson sets are tailored to various experience levels, roles, and use cases, ensuring a personalized learning experience for every WordPress user.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2024/07/WPB083.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:35130:\"\n

Discover how Learning Pathways can guide you through your WordPress journey with clarity and purpose. In the latest episode of WordPress Briefing, host Josepha Haden Chomphosy welcomes special guest Wes Theron to discuss the newly introduced Learning Pathways. These curated lesson sets are tailored to various experience levels, roles, and use cases, ensuring a personalized learning experience for every WordPress user.

\n\n\n\n

Credits

\n\n\n\n

Host: Josepha Haden Chomphosy
Guest: Wes Theron
Editor: Dustin Hartzler
Logo: Javier Arce
Production: Brett McSherry
Song: Fearless First by Kevin MacLeod

\n\n\n\n

Show Notes

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[00:00:00] Josepha: Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.

\n\n\n\n

[00:00:28] (Intro music) 

\n\n\n\n

[00:00:39] Josepha: As a steward of the WordPress community, one of the big overarching questions that I grapple with is how to make sure people who have just found out about us know how to get around. Obviously, there’s the contributor path, which is important to me because I am especially concerned with the longevity of our little open source community, but there’s also a path for folks who are learning how to use the software.

\n\n\n\n

[00:01:03] Josepha: And so, joining me today to talk through a project called Learning Pathways is Wes Theron. Wes, welcome to the WordPress Briefing.

\n\n\n\n

[00:01:11] Wes: Good day. Thank you very much for having me. It’s a pleasure.

\n\n\n\n

[00:01:13] Josepha: Before we get into this project that we’re talking about, do you want to just tell me a little bit about who you are and what you do with the WordPress project?

\n\n\n\n

[00:01:22] Wes: Yeah. So, as you know, my name is Wes Theron. I’m based in New Zealand, and I’m an instructional designer. And, I am part of the Training Team. So, most of my life revolves around creating learning content for learn.WordPress.org.

\n\n\n\n

[00:01:38] Josepha: Oh, that’s quite a life. Teaching people how to use WordPress.

\n\n\n\n

[00:01:42] Wes: Yeah, I teach WordPress. We run online workshops. I create video tutorials, courses, and now, of course, this great project we’re working on, Learning Pathways.

\n\n\n\n

[00:01:52] Josepha: Yeah. So, I’ve talked about Learning Pathways a few times here on the podcast, but for folks who have not heard me talk about it or who just need a more in-depth understanding, why don’t you tell us a little bit about this project as it stands today? 

\n\n\n\n

[00:02:06] Wes: Yeah, so when Learn started out, I think the main goal was to just get learning content on the site. But, in May of last year, we shared an individual learning survey with folks, and we were hoping to basically find out what are the needs of the learners? What are learners after? And from that individual learner survey, we actually learned a few things. We learned that tutorials, courses, and online workshops were the most used content types. We also saw that web-based learning is the most popular learning method. And then there was a clear need for a structured way of consuming learning material. And that’s basically where the Learning Pathways project was born; to create Learning Pathways that basically target various types of learners, but also various skill levels. So July of last year, we started with outlines, creating outlines for these learner pathways.

\n\n\n\n

[00:03:10] Wes: And then, in October of last year, we actually started creating content. So, the first learner pathways we started working on was the User Learning Pathway and the Developer Learning Pathway. And what that entails is of course, creating a Learning Pathway for beginner users, intermediate users, and then advanced users.

\n\n\n\n

So that’s how we kind of broke it up. And last week, the Beginner Developer Pathway was actually published, so that’s very exciting. And a few weeks before that, the Beginner WordPress User Pathway. And yeah, of course, we’ve got many other pathways in the pipeline that we want to work on. For example, a Designer Learning Pathway and even a Contributor Learning Pathway.

\n\n\n\n

[00:03:57] Josepha: Yeah, when we’re talking about pathways, what we mean is, like, we are figuring out what you probably need to know when you first arrive and then helping you to identify what you build on based on what your goals might be.

\n\n\n\n

[00:04:11] Josepha: Like, obviously, the beginner user, the goal is basically just like, learn how to get WordPress doing stuff at all. Like that’s, that’s an easy goal to understand. But when you all were doing the work to figure out what needed to be in the pathway for a beginner developer, and as you’re looking towards doing the work around intermediate and advanced topics, like how are you all able to determine what most likely you need in those various steps in the learning process?

\n\n\n\n

[00:04:42] Wes: So, of course, a lot of research went into that. When we created the outlines for these Learning Pathways. We shared it with the community. We asked for feedback. And yeah, a lot of research was done to make sure we cover all the all the bases. 

\n\n\n\n

[00:04:59] Josepha: I know that there were a couple of different proposals about how to, like do skills assessments, maybe? There was something where like we were talking with companies that employ WordPress folks in the ecosystem, and then we were talking to WordPressers who were currently trying to make sure that their skills were advanced enough to get those jobs. And we were trying to figure out like the distance between those and where we actually have some concerns around like the language choices that they need, like basic developer language choices and jargon that goes in there and stuff like that.

\n\n\n\n

[00:05:34] Josepha: So this, if I recall correctly, the research for this has been going on for like maybe two or three years, right?

\n\n\n\n

[00:05:42] Wes: Yeah, definitely. And we’ve reached out to many stakeholders within the WordPress community. And as you say, even agencies, and businesses, you know, trying to find out what do they want people to know when they employ them. And yeah, then of course, speaking to the community, speaking, speaking to folks at WordCamps reaching out to folks an online workshops.

\n\n\n\n

[00:06:04] Wes: So, yeah, it’s definitely been an ongoing process and also seeing what resources are lacking and what needs to be there. 

\n\n\n\n

[00:06:12] Josepha: Yeah, so, the very first, the very first iteration of any training that the WordPress project was offering on, I think it was on learn.WordPress.org, but I don’t actually know for sure, was a troubleshooting workshop, because when you are trying to figure out WordPress for the first time, when you are trying to figure out any software for the first time, being able to figure out what went wrong is a really important part of that. And so that was like the only workshop that existed over there for quite some time. And so it’s really nice to see how we have really, not only created a bunch of resources in general, if you all have not looked at learn.WordPress.org lately, it has, like, workshop outlines that you can use to do a training by yourself at your meetup group or at a school or whatever it is.

\n\n\n\n

[00:07:08] Josepha: But then also, I want to say it was maybe two, three years ago, that you all, as a team, the Training Team, started doing these online workshops. And so, when you created the Learning Pathways, considering like how much time and research has gone into this project overall, did you all have learnings that came from those workshops that you had already done? Is this like a collection of workshops or is this something where you can do it at home and learn by yourself and then go someplace else and learn more about WordPress? Like how does that function in what we have already?

\n\n\n\n

[00:07:45] Wes: Yeah, so maybe I should first, maybe let’s define a learning pathway. So I, I thought about this, but a learning pathway, I would say, is a route taken by learner through a range of modules, lessons, and even courses to build knowledge progressively. So it’s similar to a course, but of course usually covers like a specific topic or subject where learning pathways usually have a larger goal.

\n\n\n\n

[00:08:11] Wes: So I wouldn’t say that the online workshops form part of the Learning Pathways project. And maybe I can also clarify that the teacher notes or the lesson plans that you refer to is something that’s also changing going forward. 

\n\n\n\n

[00:08:23] Josepha: Oh, good. Because I wrote some of those, and I am not an instructional designer. And so, ha!

\n\n\n\n

[00:08:30] Wes: We’ve actually decided to move away from having two different content types. So, we had tutorials. You know, video tutorials, and we had lesson plans, and as you said, the lesson plans were notes that somebody could use to run an online workshop or to go to a WordCamp or at their local meetup and use that to teach something. But moving forward for Learning Pathways, we are actually just going to have one content type, namely lessons. And then lessons from part of creating a course or lessons from part of creating modules and then Learning Pathways. The other exciting thing, and something we haven’t mentioned, is that at the end of this month, when we launched the Learning Pathways or the first few Learning Pathways, it actually coincides with a website redesign.

\n\n\n\n

[00:09:18] Wes: So, yeah, beyond the lookout, hopefully, learn.WordPress.org is going to have a brand new face at the end, from the end of July or, yeah, or August. So, yeah, that’s very exciting.

\n\n\n\n

[00:09:30] Josepha: Excellent. Excellent. So, you said that these Learning Pathways are part of a larger goal. Is that a goal for your learners or a goal for WordPress? A goal for the team?

\n\n\n\n

[00:09:40] Wes: I would say all of the above.

\n\n\n\n

[00:09:42] Josepha: Goals for everybody. We’re like the Oprah of goals. Don’t come get me, Oprah. That’s all I got to say about it.

\n\n\n\n

[00:09:48] Wes: Yeah, I think for us as a team, at the end of the day, we want folks to be able to use the content and find the content and utilize all the learning material on learn.WordPress.org. And then, of course, at the end of the day, for learners, we want folks to be able to succeed in whatever they are trying to do. Is it to build their own website? Is it to maybe find a job as a developer? And. Yeah, I mean, the list can go on.

\n\n\n\n

[00:10:21] Josepha: Yeah. So, on the subject of wanting to help people succeed, I think that as far as I hear from the majority of contributors that I have worked with over the years, like helping other people figure out how to do this and making sure that they can succeed is always something that is top of mind for contributors to open source probably in general, but definitely to WordPress. Like, we really care about helping other people figure out how to have the same sort of benefits that we’ve had in the project and with the software. So if you have somebody who is familiar with all the bits and pieces of WordPress and really, really want to like show up and help teach some things. Is it the case that they can take part in like running a Learning Pathway? Is it something where we mostly need people to help us build some content? Like if we’ve got people who are just desperate to help other people succeed in WordPress, what kinds of things can they show up and help do on this project?

\n\n\n\n

[00:11:22] Wes: Yes, please come to the Training Team. There are many ways to get involved. If you just want to review content, you can do that. But yeah, we do have a need for content creators, folks, you know, creating a video lesson or putting their hand up and saying, I will actually create an entire module or an entire learning, a Learning Pathway. We do have some awesome contributors that’s part of the Training Team that are already doing that. Some people are writing scripts. Some folks are actually, you know, creating everything from the beginning to the end. So they are writing the script, they recording the video, publishing the video, et cetera. And then we’ve, of course, have people reviewing content. We’ve got folks running online workshops. If maybe creating video content is not their, is not their forte, they can can run online workshops. So yeah, many ways getting involved.

\n\n\n\n

[00:12:16] Wes: But Josepha, I wanted to point something else out that I haven’t done. I think there was a real need for Learning Pathways because, at the moment, if somebody new to WordPress or new to developing with WordPress wants to find learning content. You know, where do they go? What’s the main platform to go to? I think most people probably go to YouTube, right? But a lot of the content there are, are scattered and fragmented.

\n\n\n\n

So a lot of learning material or learning about WordPress is all over the place. It’s not in one place. And as I said, a place where you can actually learn from A to Z, learn progressively learning in a structured way. Yes, we know there are courses available that you can pay for, but the awesome thing about this project is that we are providing these Learning Pathways, these learning resources, for free for folks to be able to work through at their own time. I know that’s something else you asked earlier on. So yes, this is a course in quotation marks; this is a Learning Pathway that somebody can start whenever it suits them, you know, in the comfort of their own home, and they can work through the Learning Pathway from the beginning to the end. Or, if they feel I actually know everything taught in module one and two, I’m going to start at module three, they can do that. They basically come in at their skill level.

\n\n\n\n

[00:13:43] Josepha: Yes. I think it’s really important to try to meet people where they are. And I know that it’s difficult because, like, we don’t take a lot of data from our users. You don’t have to give us basically anything in order to use WordPress. And by basically, I mean you literally don’t have to give us anything to use WordPress.

\n\n\n\n

[00:14:01] Josepha: And so we always have some difficulty in figuring out what is it that our users need the most in order to succeed the quickest. And so I agree that there was a real need for this not only because, like, there’s plenty of content for getting from, like, some knowledge to a good amount of knowledge. There’s almost no content around, like, I didn’t know CMSs existed until yesterday, and now I need to quickly learn how to do it because it’s become a thing I need to do in my job. There’s some really clear, like use cases for being able to onboard quickly and progressively.

And I understand that, like, having a clear, structured way to learn doesn’t always fit with the idea of meeting people where they are. But I do really think that, that like what you were saying, it can be as structured as you need it to be. But also, if you get into it and you think to yourself, you know, I know this information already. I can move on to the next module. I can move on to the module after that. Similar to the way we do that at WordCamps also. If you get into a session and you thought it was going to be useful for you, and you discover that it’s not once you’re there, you don’t have to stay. You can go to a different room where they’re teaching about SEO if it turns out that you don’t need to learn about JavaScript today.

\n\n\n\n

[00:15:23] Josepha: And I think that that’s, it’s kind of the value that this is hoping to bring, like, because it is a little bit built one on top of the other when you discover that you have already learned something, you can easily try out the next step and know that it’s probably a good next step.

\n\n\n\n

[00:15:38] Wes: Exactly. And if you maybe want to teach this to other folks. The plan is to, you know, we had lesson plans. We have a lot of lesson plans on Learn. But the plan is also to, instead of having, as I said, two different content types, is to have lessons but then add a tab where you can click on teacher notes and actually teach something as well if that is your goal. But yes, our lessons and modules also include quizzes and, hopefully, some practical activities. We’ve incorporated WordPress Playground where, where folks can actually, you know, test out what they’ve learned or test their knowledge. So yeah, I agree with you that you can basically join the Learning Pathway wherever you feel the most comfortable.

\n\n\n\n

[00:16:28] Josepha: So we’ve been kind of in the weeds of the project itself, the program itself, and if you want to like do stuff with that and in that. Let’s switch gears a little bit and talk about just what people who are wanting to join those pathways would need to know. Do you have any advice for somebody who is just today learning about these Learning Pathways and they think to themselves, I definitely want to sign up for one of those. Like, for one, how do they get started? And for two, your like top two or three bits of advice for as they get started? 

\n\n\n\n

[00:17:05] Wes: So you can make your way to learn.WordPress.org, and you can basically open the, the pathway, and you can start wherever, wherever you want to. We have made it possible to actually view these pathways or our content without logging in with your dot org profile. The other thing I also wanted to mention is that our content is actually hosted on YouTube now.

\n\n\n\n

So the great thing is we have these pathways within YouTube as well. So, folks can go to the, YouTube channel and see our content. And, of course, that basically reaches a very wide audience. And hopefully some of those videos will also bring people to the dot org site so that they can access the content.

\n\n\n\n

[00:17:57] Josepha: I think it’s great that you don’t have to sign up for a profile. If you are a brand new WordPresser and ran into this in your dashboard and are listening to this podcast now. So dot org profiles are a place where you can kind of log your activity in the WordPress community and the WordPress project. You do not have to have one in order to use WordPress. You don’t have to have one in order to look at these courses or to learn from them. But I always think that it’s kind of nice to get your profile set up so that people kind of know who you are and what you’re doing. And then also your activity shows up. Like, you can see that you enrolled in the course and you get to know for yourself that you made some progress. I know that when you’re getting started, it’s hard to, like, see your progress because you don’t know how far you have to go. And so, like progress when you’re starting out is really difficult to feel is real. And so I like it just so that you have a few reminders to yourself, like, look how far I’ve come as you’re trying to figure out how far you still have to go. And so I like that a lot. 

\n\n\n\n

[00:18:58] Wes: You won’t be able to access all the content on Learn without your dot org profile. But one of the things we’ve made possible is to access these Learning Pathways, the new ones being launched without, you know, removing those blockers. So, of course, when you work through a Learning Pathway, you will be able to track your progress, and you will be able to see which lessons you have completed. So yeah, one of the pieces of advice I would give to somebody starting with the Learning Pathways actually to first go through the modules. And go through the lessons to see which things you know and feel comfortable with so that you don’t waste time maybe going through the first module and say, oh, I know this, and you’ve wasted time. Rather do a bit of research, a bit of reading, and then find the right place for you to start the journey.

\n\n\n\n

[00:19:45] Josepha: That’s excellent. I also, just as a learner, I try to always learn some stuff. And also, as you get older, it’s harder and harder to learn things partially because like you’re in a set path, but also, and here’s my advice to new learners: you worry about looking foolish. Like you, you worry, you’re showing up, and you don’t know anything about anybody else in the classroom. And so there’s this feeling of like, what if I’m the only person who does not know how to make this work? What if I’m the only person who can’t figure out what Wes meant by “Playground” or whatever it is? There’s this real feeling of looking silly when you’re doing something like this.

\n\n\n\n

[00:20:25] Josepha: I can’t control what anybody else says or does to anyone else, unfortunately. But what I can say is that I think that there’s never a bad time to start something you wish you had done, right? Like, the best time to have learned how to use your CMS, your website, make your website work was probably a year ago or something, but the second best time is today. And so, like, why not go ahead and get started and be part of that small group of adults that are learning new things every single day? I think that’s great. And so that’s my tip is to just embrace looking silly sometimes because you’re making some choices about your future, and that’s always a good choice.

\n\n\n\n

[00:21:04] Wes: And I would also say test your knowledge. So you’ve mentioned WordPress Playground. And as I said, we’ve incorporated into the Learning Pathways, but sometimes you watch a video, or you read something, and you feel like, oh yeah, I know this, but you know, the proof is in the pudding. So go and test it out. Use a test website or use WordPress Playground and test yourself to see if you can actually implement this or do something. So yeah, that’s definitely one of the other tips I want to highlight; you know, they also say you, you learn by doing.

\n\n\n\n

[00:21:38] Josepha: Yeah, absolutely. And also, like if you have gotten to a point you’ve done the learning, you’ve done some practicing, you think you’ve got it and want to like try to figure out what other things can be done with it. I recommend this is how I did a lot of my early WordPress learning to organize an event with your local meetup.

Like, I did not know enough about WordPress when I started organizing WordPress meetups. I literally knew nothing. And I basically brought people in and was like, hey, we need people to teach us about this, us being half me. Come in and teach us. And, and that can be a really good thing, partially because, like, you get to know your local folks and see what’s going on and get a sense for, like, what is out there, especially if you’re learning this in order to run a business or to accomplish something for your job that you already have, like knowing what’s out there is super helpful. But then I find that once you embrace the fact that sometimes you will look silly, and that’s the only way that we can know we’re learning something. Like once you’ve embraced it, having some people who are willing to look a little silly with you is kind of, kind of fun, kind of nice. Also, like we’re all going to look at this problem that we definitely don’t understand and hopefully look like, at the end, we know what we’re doing, but between looking at it the first time and at the end of this meetup, we’re all going to look a little bit silly, ask silly questions. And I think that that’s a really helpful thing, too. But yeah, knowing some basic information is a great place to start before you do that, especially if you get anxious about looking silly. And I think these pathways are going to really help to get folks a little bit of a leg up on those big questions that they have as you’re starting to learn how to use WordPress.

\n\n\n\n

[00:23:18] Josepha: So we talked about, like, tips and tricks for learners in general. But if you had something that you wanted to share with us that, like, you’re really excited about for either the Training Team or for the Learning Pathways in general, I think the Learning Pathways are slated to be shipped by, like, end of September or something. So, like, a lot of them are coming quite quickly. 

\n\n\n\n

[00:23:38] Wes: So I am most excited about the website redesign and the new look and feel of the website. And also, you know, one of the goals for us as a Training Team is for learn.WordPress.org to be one of the places people come to and learn about WordPress. And I feel these Learning Pathways and the new website redesign and all the hard work that’s gone into this project is hopefully going to, make that happen. As I said, our content is also available on YouTube. So we’ve really tried to make it easy for folks to find our content and also now to digest our content in a progressive and in a structured way. Because, you know, learning is hard. And hopefully, these Learning Pathways have made it easier for folks to, as you said, to build on your knowledge. You know, a lot of times, there’s knowledge gaps. And I think that’s what makes learning so hard. And hopefully with these pathways, you can build that knowledge one step at a time.

\n\n\n\n

[00:24:44] Josepha: Yeah. And as is the way with open source, like we can only make these pieces of content better if you all show up and help us like try it out, learn some stuff, and tell us what was confusing. Tell us what was too big a step. Cause yeah, you’re right. There are some knowledge gaps and when you’re on the other side of knowing something, it is so hard to tell how big a step is, you know?

\n\n\n\n

[00:25:11] Wes: Exactly.

\n\n\n\n

[00:25:12] Josepha: And so we need y’all to come in here and tell us very plainly as a new learner like that was eventually what I needed, but this part here was especially confusing. This part over here was too like too many little steps like we just we’re trying to make sure that it works for you WordPressers, future WordPressers of the world. And so yeah, come build some learning with us over here on the Training Team.

\n\n\n\n

[00:25:35] Wes: And yes, please, we want feedback because, as you say, as we iterate, we want to improve. So there will be a place where you can provide feedback, and at the end of the pathway where there will also be a satisfaction survey for folks to to complete.

\n\n\n\n

[00:25:50] Josepha: Great. Well, folks, we’re gonna have a bunch of links in the show notes. There’s so much stuff out here to learn with and about WordPress. Wes, thank you so much for joining me today.

\n\n\n\n

[00:26:01] Wes: Thank you for having me. And I will see you all on Learn.

\n\n\n\n

[00:26:05] (Music interlude)

\n\n\n\n

[00:26:12] Josepha: That brings us now to our small list of big things. Although I have to say we have a bunch of links that we’re going to share in the show notes. If you’re listening to this in a place where there are not show notes, you can head over to WordPress.org/news. That’s where we keep all of those. If you are lucky, we also will help you find it on Twitter/X, but I think that it’s hard to find things over there these days. So WordPress.org/news is your best bet. Now, it is time for the small list of big things.

\n\n\n\n

So, first up on my list is that WordPress 6.5.5 is now available. It’s got a few fixes in it, some maintenance things and some security fixes as well. I recommend that you update your sites immediately. You can download it from WordPress.org/download, or you can just visit your WordPress dashboard. If you’re on a managed host, they may have already done this for you, too. But auto-updates, manual updates, CLI updates. However, you want to get it done, get it done. But it is recommended to do this as soon as possible. 6.5.5. 

\n\n\n\n

[00:27:16] Josepha: The second thing on my list is that the WordPress Contributor Mentorship program has a call for interest out. This is a program that we launched about a year ago as well. And we had such a good bit of success at the end of the first round in February that there was significant interest in doing another cohort. So, that program connects seasoned WordPress contribution experts with folks who are new to contributing and offer a fantastic opportunity for mentees to gain hands-on experience contributing to WordPress while their mentors share their expertise and improve their leadership skills. So, most of the time, what you are going to be contributing to is probably a release of WordPress, but there are also a lot of opportunities to contribute to things like the Training Team that we’ve been talking about today and other teams as well. Not everything is focused all around our release cycle. We have things happening in the WordPress project literally all the time. It is a project that never sleeps. 

\n\n\n\n

[00:28:17] Josepha: Speaking of projects that never sleep, our next official release, our second release of the year, is coming out. WordPress 6.6 is coming out just about a week from now. It is the second major release of 2024 and has a lot of things in it that you will want to check out. If you have not yet seen the hallway hangout where we take a look at what was happening in the release, what we intended to get into the release, take a look at it. And if you haven’t tested it yet, if you are one of our plugin developers, if you are building something on top of WordPress core, now is the time to check that out and test it against your products.

\n\n\n\n

And then the final thing is that it’s a new month, my friends. Here we are in July, and we have a ton of things happening in the project. That’s the theme of my small list of big things: the project that never sleeps. But we have a lot of team meetings that are happening. If you haven’t attended one in a while or even if you have never attended one of these meetings and you were trying to figure out when to start, now is as good a time as any. You can join your fellow community members and contribute to the WordPress project. And there are ways that you can do that from home and from your computer and for some parts of the project, like from your phone, if you are taking photos out and about and submitting those. So check out make.WordPress.org/meetings. It’ll give you a sense for everything that’s happening. Do not get overwhelmed by that calendar. You can just choose which team you think is most interesting to you.

\n\n\n\n

[00:29:45] Josepha: And that, my friends, is your small list of big things. Your small list of never-sleeping things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at WPBriefing@WordPress.org. I’m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks. 

\n\n\n\n

[00:30:15] (Music outro)

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.6 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/07/wordpress-6-6-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2024 17:09:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17469\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"WordPress 6.6 RC2 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC2 on a test server or a local environment. Reaching this phase of the release cycle is a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10955:\"\n

WordPress 6.6 RC2 is ready for download and testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC2 on a test server or a local environment.

\n\n\n\n

Reaching this phase of the release cycle is a worthy achievement. While release candidates are considered ready for release, your testing is still vital to make sure everything in WordPress 6.6 is the best it can be.

\n\n\n\n

You can test WordPress 6.6 RC2 in four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the RC2 version (zip) and install it on a WordPress website.
Command LineUse the this WP-CLI command:
wp core update --version=6.6-RC2
WordPress PlaygroundUse the 6.6 RC2 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.
Please test WordPress 6.6 RC2 in one or more of these four ways.
\n\n\n\n

The target for the WordPress 6.6 release is July 16, 2024. Get an overview of the 6.6 release cycle, and check the Make WordPress Core blog for 6.6-related posts in the next few weeks for further details.

\n\n\n\n

What’s in WordPress 6.6 RC2?

\n\n\n\n

Thanks to your testing and many other contributors‘ up to now, this release includes more than 19 bug fixes for the Editor and more than 20 tickets for WordPress Core.

\n\n\n\n

Get a recap of WordPress 6.6’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since Beta 3, you can browse the following links:

\n\n\n\n\n\n\n\n

Want to look deeper into the details and technical notes for this release? You might want to make your first stop The WordPress 6.6 Field Guide. Then, check out this list:

\n\n\n\n\n\n\n\n

You can contribute. Here’s how

\n\n\n\n

WordPress is the world’s most popular open source web platform, thanks to a passionate community of people who collaborate on its development in a wide variety of ways. You can help—whether or not you have any technical expertise.

\n\n\n\n

Get involved in testing

\n\n\n\n

Testing for issues is critical to keeping WordPress speedy, stable, and secure. It’s also a vital way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.6. If you’re new to testing, follow this general testing guide for more details on getting set up.

\n\n\n\n

If you encounter an issue, please report it to the Alpha/Beta area of the support forums. If you are comfortable writing a reproducible bug report, you can also report it on WordPress Trac. Before you do either, you may want to check your issue against a list of known bugs.

\n\n\n\n

Curious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

\n\n\n\n

Search for vulnerabilities

\n\n\n\n

From now until the final release candidate of WordPress 6.6 (scheduled for July 9), the financial reward for reporting new, unreleased security vulnerabilities doubles. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.

\n\n\n\n

Update your theme or plugin

\n\n\n\n

If you build themes, plugins, blocks, or patterns, your products play an integral role in extending the functionality and value of WordPress for all users. 

\n\n\n\n

Thanks for continuing to test your products with the WordPress 6.6 beta releases. With RC2, you’ll want to finish your testing and update the “Tested up to” version in your plugin’s readme file to 6.6.

\n\n\n\n

If you find compatibility issues, please post detailed information to the support forum.

\n\n\n\n

Help translate WordPress

\n\n\n\n

Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.

\n\n\n\n

Release the haiku

\n\n\n\n

6.6 draws near.
In two weeks the final’s here.
Test. Test. Then test more.

\n\n\n\n

Props to @juanmaguitar, @meher, @desrosj and @atachibana for peer review.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17469\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.6 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/06/wordpress-6-6-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jun 2024 16:23:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17429\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:356:\"The first release candidate (RC1) for WordPress 6.6 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC1 on a test server or a local environment. Reaching this phase of […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11225:\"\n

The first release candidate (RC1) for WordPress 6.6 is ready for download and testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC1 on a test server or a local environment.

\n\n\n\n

Reaching this phase of the release cycle is a worthy achievement. While release candidates are considered ready for release, testing is still vital to make sure everything in WordPress 6.6 is the best it can be.

\n\n\n\n

You can test WordPress 6.6 RC1 in four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the RC1 version (zip) and install it on a WordPress website.
Command LineUse the this WP-CLI command:
wp core update --version=6.6-RC1
WordPress PlaygroundUse the 6.6 RC1 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.
Please test WordPress 6.6 RC1 in one or more of these four ways.
\n\n\n\n

The current target for the WordPress 6.6 release is July 16, 2024. Get an overview of the 6.6 release cycle, and check the Make WordPress Core blog for 6.6-related posts in the next few weeks for further details.

\n\n\n\n

Two notes about changes in the RC period

\n\n\n\n

Hard string freeze: From now until July 16, there is a hard string freeze in place—no strings may change, and no new strings may be committed. That’s to give the Polyglots team time to translate WordPress 6.6 into as many languages as possible before final release.

\n\n\n\n

Two-committer signoff: Commits in the RC period also require two Core committers to sign off on every merge. Since release candidates are supposed to be ready to go, only major fixes and blessed tasks should merge at this late date.

\n\n\n\n

What’s in WordPress 6.6 RC1?

\n\n\n\n

Thanks to your testing and many other contributors‘ up to now, this release includes more than 40 bug fixes for the Editor and more than 40 tickets for WordPress Core.

\n\n\n\n

Get a recap of WordPress 6.6’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since Beta 3, you can browse the following links:

\n\n\n\n\n\n\n\n

Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:

\n\n\n\n\n\n\n\n

How you can contribute

\n\n\n\n

WordPress is open source software made possible by a passionate community of people who collaborate on and contribute to to its development. The resources below outline a wide variety of ways you can help the world’s most popular open source web platform, whether or not you have any technical expertise.

\n\n\n\n

Get involved in testing

\n\n\n\n

Testing for issues is critical to making sure WordPress is speedy and stable. It’s also a vital way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.6. If you’re new to testing, follow this general testing guide for more details on getting set up.

\n\n\n\n

If you encounter an issue, please report it to the Alpha/Beta area of the support forums. If you are comfortable writing a reproducible bug report, you can also report it on WordPress Trac. Before you do either, you may want to check your issue against a list of known bugs.

\n\n\n\n

Curious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

\n\n\n\n

Search for vulnerabilities

\n\n\n\n

From now until the final release candidate of WordPress 6.6 (scheduled for July 16), the monetary reward for reporting new, unreleased security vulnerabilities doubles. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.

\n\n\n\n

Update your theme or plugin

\n\n\n\n

If you build themes, plugins, blocks or patterns, your products play an integral role in extending the functionality and value of WordPress for all users. 

\n\n\n\n

Thanks for continuing to test your themes and plugins with the WordPress 6.6 beta releases. With RC1, you’ll want to finish your testing and update the “Tested up to” version in your plugin’s readme file to 6.6.

\n\n\n\n

If you find compatibility issues, please post detailed information to the support forum.

\n\n\n\n

Help translate WordPress

\n\n\n\n

Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.

\n\n\n\n

Release the haiku

\n\n\n\n

We’re here already?
RC1 means three weeks left.
Have some fun—come test!

\n\n\n\n

Props to @meher, @audrasjb for collaborating on this post.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17429\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"WordPress 6.5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2024/06/wordpress-6-5-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jun 2024 19:10:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17426\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"WordPress 6.5.5 is now available! This release features three security fixes. Because this is a security release, it is recommended that you update your sites immediately. This minor release also includes 3 bug fixes in Core. You can download WordPress 6.5.5 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5127:\"\n

WordPress 6.5.5 is now available!

\n\n\n\n

This release features three security fixes. Because this is a security release, it is recommended that you update your sites immediately. This minor release also includes 3 bug fixes in Core.

\n\n\n\n

You can download WordPress 6.5.5 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.

\n\n\n\n

WordPress 6.5.5 is a short-cycle release. The next major release will be version 6.6 which is scheduled for July 16, 2024.

\n\n\n\n

For more information on WordPress 6.5.5, please visit the HelpHub site.

\n\n\n\n

Security updates included in this release

\n\n\n\n

The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:

\n\n\n\n\n\n\n\n

Thank you to these WordPress contributors

\n\n\n\n

This release was led by Aaron Jorbin.

\n\n\n\n

WordPress 6.5.5 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.

\n\n\n\n

Aaron Jorbin, Alex Concha, Andrew Ozz, bernhard-reiter, Colin Stewart, David Baumwald, Dennis Snell, Grant M. Kinney, Greg Ziółkowski, Jb Audras, Jonathan Desrosiers, Matias Ventura, Miguel Fonseca, Peter Wilson, Rajin Sharwar, Scott Reilly, Tonya Mork

\n\n\n\n

How to contribute

\n\n\n\n

To get involved in WordPress core development, head over to Trac, pick a ticket, and join the conversation in the #core Slack channel. Need help? Check out the Core Contributor Handbook.

\n\n\n\n

Already testing WordPress 6.6? The fourth beta is now available (zip) and it contains these security fixes. For more on 6.6, see the beta 3 announcement post. Learn more about testing WordPress 6.6 here.

\n\n\n\n

Props to Paul Kevan, Ehtisham Siddiqui, Alex Concha, Tonya Mork, and Angela Jin for reviewing.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17426\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WP Briefing: Episode 82: WCEU Hallway Track\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2024/06/episode-82-wceu-hallway-track/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jun 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=17409\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:312:\"Big events create big moments, and WordCamp Europe 2024 was no exception. Join host Josepha Haden Chomphosy on this episode of the WordPress Briefing as she shares her top insights and favorite highlights from the event. Discover what the WordPress community focused on during this exciting three-day gathering.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2024/06/WPB082.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10086:\"\n

Big events create big moments, and WordCamp Europe 2024 was no exception. Join host Josepha Haden Chomphosy on this episode of the WordPress Briefing as she shares her top insights and favorite highlights from the event. Discover what the WordPress community focused on during this exciting three-day gathering.

\n\n\n\n

Credits

\n\n\n\n

Host: Josepha Haden Chomphosy
Editor: Dustin Hartzler
Logo: Javier Arce
Production: Brett McSherry
Song: Fearless First by Kevin MacLeod

\n\n\n\n

Show Notes

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n

[00:00:00] Josepha: Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.

\n\n\n\n

[00:00:28] (Intro music) 

\n\n\n\n

[00:00:40] Josepha: My friends, another WordCamp Europe is in the books. We had the second-highest number of tickets sold in the history of our event series, with the first being WordCamp Europe in Berlin. But even with that number of tickets sold, that number of people gathering together to talk about WordPress and related things, there were still a lot of people who didn’t get to join us.

\n\n\n\n

[00:01:01] Josepha: For some, that came with experiencing FOMO, but some of you embraced the JOMO of it all. Either way, at this point, there are a good collection of wrap-ups and round-ups going around, so I’m here to tell you a bit about what was buzzing in the hallway track. 

\n\n\n\n

Firstly, everyone was so excited to see old friends and make new ones. Everywhere I turned, I saw WordPressers in clusters catching up, most included new to the crew faces. So we know that we were using the Pac-Man rule that we love so much. But even while they were catching up on the last two, three, four years, they were also talking to each other about how to get more folks to things like this.

\n\n\n\n

Since we all generally agree that your first time meeting other WordPressers can be a truly pivotal moment in your WordPress journey, it was a delight to hear so much brainstorming focused on that. From mentorship to community introduction and the future of our events, the question of how to keep our ecosystem healthy and thriving was a big topic. Does any one of us have all the answers to this? No, but fortunately, we’ve got a global set of thinkers working on this global question. So, together, I’m sure we can come up with some good guesses to try out.

\n\n\n\n

[00:02:21] Josepha: Secondly, I saw a ton of talks and discussions about career development, not only about how to learn more but also how to be a champion for open source in your company, how to advocate for contribution as a best business practice. And what other communities can teach us about how they commit to their user’s continuing education, for lack of a friendlier term.

\n\n\n\n

And boy, do I love a good conversation about how to make working in open source easier, make it more meaningful, and more impactful. I’m in favor of anything that helps to dignify our profession. The front-facing, easy-to-use experience of WordPress, in particular, has been misunderstood to mean that we are a simple piece of software for simple tasks. And that is the way with our mission really. If we succeed at democratizing publishing or learning or commerce for that matter, we are taking the arcane and making it mundane. But simple to use doesn’t mean simple to create. And I want all of our future employers and clients to see that.

\n\n\n\n

[00:03:24] Josepha: And then the final thing that I saw lighting up the hallway track was the idea of bringing life and excitement back to the web. WordPress has been fighting against closed systems for a long time, but as Matt alluded to in his keynote, merely having an open web is still not quite as fun as having an active and dynamic one. And we saw that both in general desire to bring fun back to being online, but also in the fresh variety of demos and workshops that we saw in the fun that was brought to the event. There were new and shocking implementations of Playground, I must say. Which, as far as I can tell, will basically be able to run everything one day.

\n\n\n\n

[00:04:03] Josepha: But at WordCamp Europe, it ran; it powered our second massive hybrid translation event, where we translated something like 50,000 strings. We also had an amazing speed-building duel with an accepted future challenge between Jessica Lyschik and Matt Mullenweg. And not for nothing; the way we designed; the way the event area was put together included ways to stop and just have fun.

\n\n\n\n

There was a little grassy area with yard games and smaller pods of chairs for those quick hallway catch-ups that you just don’t get anywhere else. And for me, it was simply lovely to see everyone embracing the fun that was there, but also hearing about how much they wanted to help the web embrace the fun that could be.

\n\n\n\n

[00:04:48] (Music interlude) 

\n\n\n\n

[00:04:55] Josepha: Thanks for listening to my hallway track recap. Hopefully, it caused JOMO, not FOMO. And now, let’s turn our attention to the small list of big things.

\n\n\n\n

[00:05:05] Josepha: First thing on my list is WordPress 6.6 update. So we are reaching the release candidate phase tomorrow. WordPress 6.6 RC1 will be released, so download and join the community helping us to get this release out the door. It is scheduled for July 16th. If you have plugins or themes or any sort of business that uses WordPress, now is the time to get in and test it on a test site. I don’t recommend putting it in production at any point, but come and test it. Help us break it so that we can make sure that it doesn’t break for other people, for the, you know, 43% of the web that uses it when we get it out the door on the 16th. 

\n\n\n\n

The second thing on the list is that we have a WordPress Project Contributor Handbook V2 out there. It aims to be the quintessential resource for everyone in our community. And it will provide a bird’s eye view of where to find key information and different aspects of our community. How it all kind of connects together. And, just like a release, we really need some feedback from you. There is the repo on GitHub where you can go and kind of make inline comments, join the discussion about it. It can be a go-to resource if we look at it together and make sure that it has as much information as clearly stated as you wished you had when you were learning your way around WordPress for the first time. 

\n\n\n\n

[00:06:27] Josepha: The third thing on the list is actually another handbook. So, the Sustainability Team has put together a handbook specifically for events. It’s their first version, and over the past few months, members of that team have been sharing their ideas and experiences on how WordPress community events can be held more sustainably. All this input created a first draft, which eventually became this first version. And so we’ll put a link in the show notes, wander over there, take a look at it, see what some best practices for sustainable events are in the WordPress ecosystem. 

\n\n\n\n

[00:07:02] Josepha: And then the final thing on my list is about WordCamp US. I realize this is a podcast about WordCamp Europe right now. And so it’s odd to think that I’m moving right along into WordCamp US. However, there is a deadline coming up. July 1st is the last day to sign up to be a volunteer at this event. It’s taking place this year in Portland, Oregon, on the west side of the US. And it should be a really fun time. It’s middle of September. Come on out there. Learn about WordPress. Learn about contribution. Maybe get some voodoo donuts. You know, the important things. 

\n\n\n\n

And that, my friends, is your small list of big things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at WPBriefing@WordPress.org. I am your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks. 

\n\n\n\n

[00:08:06] (Music outro) 

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/06/wordpress-6-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jun 2024 16:37:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17392\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"WordPress 6.6 Beta 3 is here! Please download and test it. This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites—you risk unexpected results if you do. Instead, test Beta 3 on a local site or a testing environment […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7996:\"\n


WordPress 6.6 Beta 3 is here! Please download and test it.

\n\n\n\n

This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites—you risk unexpected results if you do.

\n\n\n\n

Instead, test Beta 3 on a local site or a testing environment in any of these four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the Beta 3 version (zip) and install it on a WordPress website.
Command LineUse this WP-CLI command:
wp core update --version=6.6-beta3
WordPress PlaygroundUse a 6.6 Beta 3 WordPress Playground instance to test the software directly in your browser. This might be the easiest way ever—no separate sites, no setup. Just click and go! 
Four ways to test WordPress Beta 3.
\n\n\n\n

The target release date for WordPress 6.6 is July 16, 2024. Your help testing Beta and RC versions over the next four weeks is vital to making sure the final release is everything it should be: stable, powerful, and intuitive.

\n\n\n\n

If you find an issue

\n\n\n\n

If you run into an issue, please share it in the Alpha/Beta area of the support forums. If you are comfortable submitting a reproducible bug report, you can do so via WordPress Trac. You can also check your issue against a list of known bugs.

\n\n\n\n

The bug bounty doubles in the beta period

\n\n\n\n

The WordPress community sponsors a financial reward for reporting new, unreleased security vulnerabilities. That reward doubles between Beta 1, which landed June 4, and the final Release Candidate (RC), which will happen July 9. Please follow the project’s responsible-disclosure practices detailed on this HackerOne page and in this security white paper.

\n\n\n\n

The work continues

\n\n\n\n

Catch up with what’s new in 6.6: check out the Beta 1 announcement for the highlights.

\n\n\n\n

Beta 3 packs in more than 50 updates to the Editor since the Beta 2 release, including 39 tickets for WordPress core:

\n\n\n\n\n\n\n\n

The beta cycle is all about fixing the bugs you find in testing.

\n\n\n\n

Do you build themes? Feedback from testing has already prompted a change in the way you offer style variations to your users.

\n\n\n\n

In Beta 1, if you made preset style variations for your theme, it automatically generated a full set of color-only and type-only options your users could mix and match across the different variations.

\n\n\n\n

In Beta 3, your theme no longer generates those options automatically—you do. So you can present a simpler set of choices, curated to guide users’ efforts to more pleasing results. For more insight into the rationale, see this discussion.

\n\n\n\n

Thanks again for this all-important contribution to WordPress!

\n\n\n\n

Props to @meher, @rmartinezduque, @atachibana, and @mobarak for collaboration and review.

\n\n\n\n

A Beta 3 haiku

\n\n\n\n

Beta ends at 3
One more week, then comes RC
When we freeze the strings!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17392\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Highlights from WordCamp Europe 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2024/06/highlights-from-wordcamp-europe-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Jun 2024 21:29:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17374\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"From June 13-15, 2024, WordPress enthusiasts from across the globe gathered in Torino to explore and celebrate the world’s most popular web platform at WordCamp Europe 2024. A dedicated team of 250 volunteers, led by WordCamp veterans Wendie Huis in ‘t Veld, Juan Hernando, and Takis Bouyouris, organized and produced the event.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15851:\"\n

2,584 attendees participated in the 12th annual WordPress event in Europe, held at the Lingotto Conference and Exhibition Centre in Torino, Italy.

\n\n\n\n
\"The
The Mole Antonelliana in Torino, illuminated to celebrate WordCamp Europe 2024. Photo by Chris Clarke.
\n\n\n\n

From June 13-15, 2024, WordPress enthusiasts from across the globe gathered in Torino to explore and celebrate the world’s most popular web platform. A dedicated team of 250 volunteers, led by WordCamp veterans Wendie Huis in ‘t Veld, Juan Hernando, and Takis Bouyouris, organized and produced the event.

\n\n\n\n

Impact in Action on Contributor Day

\n\n\n\n

Contributor Day brought together 726 contributors working across 25 teams to support the WordPress project. Their accomplishments included translating 79,059 “strings” for the WordPress user interface across 29 languages, updating documentation for the forthcoming 6.6 release, onboarding new contributors for the support forums and testing teams, and identifying ways to improve plugin security.

\n\n\n\n
\"Contributors
Contributors gathering during WCEU 2024 Contributor Day. Photo by Chris Clarke.
\n\n\n\n

Sustainable open source is the future

\n\n\n\n
\"Keynote
Keynote presenters, Joost de Valk and Juliette Reinders Folmer. Photo by Fede Padilla.
\n\n\n\n

Joost de Valk and Juliette Reinders Folmer delivered the event’s opening keynote address on sustaining open source software projects. Their keynote covered funding open source, contributing beyond code, and convincing buyers in commercial enterprises that open source is a viable alternative to proprietary platforms.

\n\n\n\n

Two days of engaging sessions

\n\n\n\n

Friday and Saturday saw 60 presentations and workshops held across three tracks. Topics included WordPress development, accessibility, design, business, community, artificial intelligence, and cybersecurity.

\n\n\n\n
\n
\n
\"Three
Speed Build Session. Photo by Roberto Vázquez.
\n
\n\n\n\n
\n
\"Four
Connect Series. Photo by Fede Padilla.
\n
\n
\n\n\n\n

A youth workshop gave younger attendees hands-on opportunities to build WordPress websites, explore new tech, and learn about internet safety. Meanwhile, a wellness-themed track included yoga lessons and walking tours of Torino, encouraging attendees to step away from their screens and explore the beauty of this year’s host city.

\n\n\n\n

Mid-year project update

\n\n\n\n

WordPress Cofounder Matt Mullenweg shared a mid-year project update on WordPress and concluded by fielding questions from the audience on various topics, from Gutenberg Phases to the WordPress Playground, and acknowledging a request to escalate a bug fix.

\n\n\n\n

Matt’s presentation highlighted the success of the contributor mentorship program and WCEU Contributor Day, demoed Translate Live, and shared an update on the Data Liberation initiative. 

\n\n\n\n

Matt also covered the latest innovations with WordPress Playground, highlighted performance gains, and previewed features anticipated in future releases, like rollbacks for auto-updates and zoomed-out view.

\n\n\n\n
\"WordPress
WordPress Cofounder Matt Mullenweg. Photo by Chris Clarke.
\n\n\n\n

Acknowledging an exciting new trend in the WordPress community, Mullenweg discussed “speed build challenges,” where onlookers watch WordPress experts build websites in real-time, showcasing tips, shortcuts, and best practices. One such event took place during a WCEU session, and in the Q&A portion of Matt’s presentation, he was invited to participate in one–an invitation he accepted!

\n\n\n\n

Matt reflected on WordPress reaching its 21st anniversary since he and Mike Little launched the first version in 2003. He shared 11 things to ensure that WordPress remains sustainable for decades to come:

\n\n\n\n
    \n
  1. Simple things should be easy and intuitive, and complex things possible.
  2. \n\n\n\n
  3. Blogs and dynamic sites are better.
  4. \n\n\n\n
  5. Documentation should be wiki-easy to edit.
  6. \n\n\n\n
  7. Forums should be front and center.
  8. \n\n\n\n
  9. Plugins and themes with community infrastructure.
  10. \n\n\n\n
  11. Great theme previews and diverse aesthetics.
  12. \n\n\n\n
  13. We can’t over-index for guidelines and requirements.
  14. \n\n\n\n
  15. Feedback loops are so important.
  16. \n\n\n\n
  17. Core should be opinionated and quirky.
  18. \n\n\n\n
  19. If you make WordPress, use WordPress.
  20. \n\n\n\n
  21. Stay close to our end-users
  22. \n
\n\n\n\n
\n\n
Watch Matt’s project update on the WordPress YouTube channel.
\n\n\n\n

Closing remarks

\n\n\n\n

In their closing remarks, the event organizers expressed gratitude for the endorsements of the European Parliament, the city of Torino, and Turismo Torino, the regional tourism board. The volunteer team was celebrated for their hard work in producing the event. 

\n\n\n\n

Closing out a robust three days of programming, the organizing team announced that WordCamp Europe 2025 would be held in Basel, Switzerland, from June 5 to 7, 2025. The announcement was met with hearty applause and plans to meet in a year’s time.

\n\n\n\n
\"Attendees
Attendees gather for a photo at WCEU in Torino. Photo by Nilo Vélez.
\n\n\n\n

Stay connected

\n\n\n\n

WordPress events enable technologists, open source enthusiasts, and community members around the globe to meet, share ideas, and collaborate to drive WordPress and the open web forward.

\n\n\n\n

Mark your calendars for WordCamp US (Portland, Oregon, United States), State of the Word (Tokyo), and next year’s WordCamp Asia in Manila!

\n\n\n\n
\n\n\n\n

This post is a collaboration between the contributors who produce content for wordpress.org/news and the WordCamp Europe Communications team.

\n\n\n\n

Props to the WCEU photos team for supplying the photos used for this post and to the following contributors for the work reviewing/contributing to this post: @rmartinezduque , @wmjohnston06, @angelasjin, and @cbringmann

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17374\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.6 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/06/wordpress-6-6-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jun 2024 16:26:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17355\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"WordPress 6.6 Beta 2 is here! Please download and test it. This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites—you risk unexpected results if you do. Instead, test Beta 2 on a local site or a testing environment […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7673:\"\n


WordPress 6.6 Beta 2 is here! Please download and test it.

\n\n\n\n

This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites—you risk unexpected results if you do.

\n\n\n\n

Instead, test Beta 2 on a local site or a testing environment in any of these four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the Beta 2 version (zip) and install it on a WordPress website.
Command LineUse this WP-CLI command:
wp core update --version=6.6-beta2
WordPress PlaygroundUse a 6.6 Beta 2 WordPress Playground instance to test the software directly in your browser. This might be the easiest way ever—no separate sites, no setup. Just click and go! 
Three ways to test WordPress Beta 2.
\n\n\n\n

The target release date for WordPress 6.6 is July 16, 2024. Your help testing Beta and RC versions over the next five weeks is vital to making sure the final release is everything it should be: stable, powerful, and intuitive.

\n\n\n\n

If you find an issue

\n\n\n\n

If you run into an issue, please share it in the Alpha/Beta area of the support forums. If you are comfortable submitting a reproducible bug report, you can do so via WordPress Trac. You can also check your issue against a list of known bugs.

\n\n\n\n

The bug bounty doubles in the beta period

\n\n\n\n

The WordPress community sponsors a financial reward for reporting new, unreleased security vulnerabilities. That reward doubles between Beta 1, which landed June 4, and the final Release Candidate (RC) that will happen July 9. Please follow the project’s responsible-disclosure practices detailed on this HackerOne page and in this security white paper.

\n\n\n\n

The work continues

\n\n\n\n

Catch up with what’s new in 6.6: check out the Beta 1 announcement for the highlights.

\n\n\n\n

Beta 2 packs in more than 50 updates to the Editor since the Beta 1 release, including 40+ tickets for WordPress core:

\n\n\n\n\n\n\n\n

The beta cycle is all about fixing the bugs you find in testing. Thanks again for this vitally important contribution to WordPress!

\n\n\n\n

Props to @priethor, @dansoschin, @davidb, @atachibana, @meher, @webcommsat, and @juanmaguitar for collaboration and review.

\n\n\n\n

A Beta 2 haiku

\n\n\n\n

Testing is vital:
It makes everything better.
Let’s find all the bugs!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17355\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 17 Jul 2024 19:48:13 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 17 Jul 2024 08:22:26 GMT\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'), +(212,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1721288893','no'), +(213,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1721245693','no'), +(214,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1721288894','no'); +INSERT INTO `wp_options` VALUES +(215,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: #128 – Fernando Tellado on AI Tools and Rehumanising the Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=157402\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/podcast/128-fernando-tellado-on-ai-tools-and-rehumanising-the-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40651:\"Transcript
\n

[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.

\n\n\n\n

Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, AI tools and making the web more human again.

\n\n\n\n

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice. Or by going to wptavern.com/feed/podcast, and you can copy that URL in some most podcast players.

\n\n\n\n

If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.

\n\n\n\n

So on the podcast today, we have Fernando Tellado. Fernando is a very large force in the WordPress community in Spain. He’s the editor and writer at ayudawp.com, a blog in Spanish about WordPress with more than 15 years of publishing on a daily basis. He does consulting maintenance, security and performance services for WordPress sites. He’s published four books about WordPress. Not only that, he’s been involved with the WordPress community for 20 years organizing meetups, WordCamps, coordinating the official support forums, as well as taking leading roles in Spanish translations and Spain’s official community website.

\n\n\n\n

We begin with a discussion on the current state of AI tools, which offer the capacity to generate thousands of posts in mere moments, mainly for search ranking purposes. Fernando explores the issue of content quality, and the growing challenge of distinguishing between human and AI generated content.

\n\n\n\n

This leads to a chat about the strange position which Google finds itself in with its latest AI model, Gemini, which aims not only to generate content, but also to interact and answer questions like a human. How can Google on the one hand, be able to create content, and on the other be mindful of only promoting content, which it views as credible and reliable?

\n\n\n\n

Fernando also talks about the rapid evolution of technology, drawing parallels to the industrial revolution, and it’s long lasting effects on society.

\n\n\n\n

He tackles concerns about AI potentially replacing jobs, and underscores the addictive nature of mobile phones, particularly for children.

\n\n\n\n

The role of government in regulating technology also comes under scrutiny, but Fernando expresses skepticism about political intervention, and instead stresses the importance of parental responsibility in guiding children’s use of technology.

\n\n\n\n

Towards the end, the discussion revolves around the necessity for both adults and children to learn and use technology responsibly. Fernando is passionate about the importance of human imagination, and our innate capacity to adapt to the technological environment. He advocates for individuals to slow down, assess the impact of technology on their lives, and make deliberate choices that ensure their wellbeing and that of their families.

\n\n\n\n

If you’re intrigued by the intersection of AI, WordPress, and the call for responsible unreflective use of technology, this episode is for you.

\n\n\n\n

If you’re interested in finding out more, you can find all of the links in the show notes by heading over to wptavern.com/podcast, where you’ll find all the other episodes as well.

\n\n\n\n

And so without further delay, I bring you Fernando Tellado.

\n\n\n\n

I am joined on the podcast by Fernando Tellado. Hello, Fernando.

\n\n\n\n

[00:04:09] Fernando Tellado: Hello Nathan. Very nice to see you too.

\n\n\n\n

[00:04:11] Nathan Wrigley: Really nice to meet you. We are at WordCamp Europe. We’re in one of the media rooms, and we’re chatting to Fernando today because Fernando is participating at WordCamp EU. He’s got a presentation, a talk, and the talk is called Re-Humanizing the Web, and everything you want related to WordPress. Is that the correct title? Did I get that right?

\n\n\n\n

[00:04:31] Fernando Tellado: Yes, it’s the correct name.

\n\n\n\n

[00:04:32] Nathan Wrigley: Yeah, perfect. So we’ll get into that presentation, and what it means, and how you are very optimistic I think, about technology and AI, and all of those kind of things. But before we do that, will you just tell us a little bit about you, your relationship with WordPress, the things that you do in your life and in the WordPress community, which I understand in Spain is huge.

\n\n\n\n

[00:04:53] Fernando Tellado: I have been working with WordPress for more than 15 years. In these years I have been part of the community, where there wasn’t community in Spain. We made three WordCamps in Spain, called WordCamp Spain. Afterwards, it should to be named after cities. There was a time when we could make WordCamps the country. Afterwards they said that we must make the WordCamps city related. But we made the three WordCamps in Spain called Spain WorkCamps. In 2008, 2009, 2010. It was the first, the three first ones.

\n\n\n\n

I was making translations at this moment. There was no community, and we began the first embryo of our community in the second WordCamp Spain, in Barcelona. And we began with translations because it was the first need, because everything in WordPress is written in English. In Spain it’s very difficult to introduce some software that isn’t in Spanish, because in Spain we don’t speak English, we don’t speak any other languages.

\n\n\n\n

So it was really important for us that WordPress being in our languages, because it was our first priority. I think we have made a good work, because at this moment we are one of the biggest community. I think we are the best or the big, one of the biggest communities in translation. Every day, there aren’t any pending translation to be approved, day by day. And it’s the same in support.

\n\n\n\n

We have the support forums that, every day, every question made is answered for one volunteer. And we are all volunteers. We have been volunteering for 15 years, in an everyday basis. We are very, very, few people that work in a daily basis, but very constant people. And I am only one of these people.

\n\n\n\n

By the side I have a blog, where I have been writing for more than 15 years about WordPress. Almost in a daily basis. I write four or five posts a week, from Monday to Friday. I enjoy it because I write about the things I learn every day. It’s funny for me to see my blog post 15 years ago. They’re very simple. I have discovered a plugin that made this thing. The name of the plugin is that one, okay perfect, and it could be perfect for someone in every moment. Because in some moment, anyone is going to find solution for anything.

\n\n\n\n

And I have probably more than 5,000 posts. I have 40, more than 50 thousand comments in the blog. And I still write every day, because I every day work in WordPress. I work, my clients WordPress, every day I learn something. I teach WordPress to people, but I learned WordPress from everyone. From my colleagues at the work. From my clients, in every site because every site is different. Every site you have different needs, and it’s not difficult for me to write in the blog.

\n\n\n\n

When a lot of people ask me, is it not difficult for you to write every day year, after year, after year? It could be if I don’t work on WordPress, but as I work in WordPress everyday, I always have something to write about it.

\n\n\n\n

I like writing, I never thought that I want to write about technical things. I always thought, I will compare as a writer. I have written some books, but books about WordPress too. No books about a novel, or history that I would like. It’s about WordPress. So my life has been dedicated to WordPress in all aspects.

\n\n\n\n

[00:08:18] Nathan Wrigley: Quite a story. 15 years of almost daily blogging.

\n\n\n\n

[00:08:22] Fernando Tellado: And not expected at all.

\n\n\n\n

[00:08:23] Nathan Wrigley: Yeah, it just happened. That’s amazing. And I’m sure there’s a lot of people out there in the Spanish community, and maybe further afield who are very thankful for all the things that you’ve written over the years.

\n\n\n\n

[00:08:33] Fernando Tellado: Sometimes I feel like the father of a lot of people.

\n\n\n\n

[00:08:36] Nathan Wrigley: The Spanish community.

\n\n\n\n

[00:08:37] Fernando Tellado: Because I am getting older, it is good to get older too. You have some perspective about things. I am more kind. It is very difficult to make me angry.

\n\n\n\n

[00:08:46] Nathan Wrigley: So do you build websites for clients still? It sounds like, from what you said, that’s what promotes the bits and pieces that you are writing each day, because you find a new thing, you solve the problem, then you write about it. Yeah, like that, okay perfect.

\n\n\n\n

You’ve got this topic that you are doing at WordCamp Europe. By the way, have you done it already?

\n\n\n\n

[00:09:03] Fernando Tellado: I did a basis at WordCamp Pontevedra, it’s a city in the north of Spain. I made a presentation, in which the first part was somewhat like the first part of the presentation. I’m going to talk tomorrow.

\n\n\n\n

[00:09:17] Nathan Wrigley: Oh, it’s tomorrow, okay.

\n\n\n\n

[00:09:18] Fernando Tellado: Tomorrow at 12.

\n\n\n\n

[00:09:19] Nathan Wrigley: Okay, perfect. So it’s called Re-humanising the Web, and everything you want related to WordPress. If you are saying that rehumanising the web is a thing, that means, I presume you think it got dehumanised at some point.

\n\n\n\n

[00:09:34] Fernando Tellado: At some point, yes.

\n\n\n\n

[00:09:35] Nathan Wrigley: What do you mean by that? What’s been dehumanised in the web? Just try to sum up your thoughts.

\n\n\n\n

[00:09:40] Fernando Tellado: The bad use of the tools. I think the tools are great. I am absolutely pro technology, I am absolutely pro AI, but we use badly, the technology. We are dehumanisation, the web. The website is our environment, it’s where we live, it’s where we find, and it is where we will work, in your case or mine. And it’s very important, I think it is the most important thing in the 21st century of the web. And we must take care of the website, or the web. And when people make bad use of the technology, they can dehumanise the technology.

\n\n\n\n

Examples could be niches. There are a lot of people that have a lot of expertise on making niches, with niches automatically. From five years ago, they have the automatic WordPress packs, that they could make about 50 or hundreds of websites in a day or two days, in order to promote SEO niches.

\n\n\n\n

Today, with the AI, they can make about 100,000 websites per day, with the aid of the AI, and paid of $1, $2, or $10. It is very cheap, and it’s very easy to make niches. And niches, there are websites that doesn’t make nothing to the people. They are not going to answer questions. We use the internet in order to answer our questions. When we go to Google, what is Google? Google is our psychologist. We ask Google, what’s happened to me? Do you have any answers? We are going to make questions to Google.

\n\n\n\n

So the people to make niches, the niches website. So it is going to make the website less useful than yesterday. This is dehumanising because there are not people after this content. They are only a machine, that has not brought this content in order to answer a question of a human. It is made only to satisfy the need of the person that works in marketing for SEO, and he’s promoting one niche.

\n\n\n\n

[00:11:38] Nathan Wrigley: So if we rewind the clock, let’s go for five years. If we go back in time five years, when human beings created every piece of content, of course they could copy and paste and that happened. But mostly the content was written by a human, and it was written at a scale which humans could keep up with. So one post per day, two posts per day, whatever. And now you’re saying that the AI tools can create 10,000 posts in a heartbeat, in a few minutes.

\n\n\n\n

[00:12:09] Fernando Tellado: Who can read that?

\n\n\n\n

[00:12:10] Nathan Wrigley: Right, but also, why is it being created? And from what you are saying, it’s been created purely for Google, SEO.

\n\n\n\n

[00:12:16] Fernando Tellado: Purely for business.

\n\n\n\n

[00:12:17] Nathan Wrigley: And ultimately that makes everything pointless because if there’s 10 trillion articles out on the internet, how can Google, which has, people argue about Google and whether it’s a force for good or a force for evil, but it’s definitely been helpful finding information. In the future, if we flood the landscape with AI written content, how can we ever decide what’s actually useful? And I don’t think we’ve got there yet. But do you see it coming? Do you see a day when that will happen, if we don’t put the brakes on?

\n\n\n\n

[00:12:53] Fernando Tellado: I think there are a lot of players that can act in that way, in order to pull the brake. Google is one of these, because Google can defer between human and not human content. Very easy. It’s very easy for Google. It’s very easy for us too. If we read every day, we can distinguish human made content or not.

\n\n\n\n

But I think Google is making the road easy in order to publish AI content. And at the same time, it’s putting in the road tools in order to pull the brake. Because Google is, at the moment, refactoring the more personal research. As you can remember, some years ago, beside some results you can see the face of the person who wrote the post.

\n\n\n\n

I think Google is, well, no, Google has, I say that he’s going to this type of recognising, or the way of recognising, the author of the content, in order to distinguish between human made content and AI content. Because I think it’s a matter of survival for Google, because the end, we are going to rely on the tool, and Google is a tool. It’s a big, I always say this, it is a big spreadsheet. I always see Google as a big, big, big spreadsheet. A big, big, big form, that has the results that can be useful or not.

\n\n\n\n

In few years, doesn’t find good result for us, answer for us, we are going to abandon the tool. We are abandoned a lot of tools by the time. Younger people think that some tools are not going to disappear, never. And you and I know that it’s just, it does not even happen. We have seen disappear tools like Photo Log. We can see disappear, Facebook in some moment, or Instagram. Everything is possible, and Google too.

\n\n\n\n

[00:14:36] Nathan Wrigley: What I find curious about, let’s just keep talking about the Google example, because it’s really easy to understand the benefit of Google. But curious that Google are also in the AI race. At the moment when we’re recording this in June 2024, they have this Gemini model, it’s called Gemini. And it’s obviously an LLM to create content.

\n\n\n\n

But also, there’s the flip side. It’s not just about creating content, but it’s about answering questions, and interacting, and it’s kind of trying to be a human, if you like. So for Google, it’s a really difficult balancing act, because on the one hand, they’ve got to keep up with the AI opposition, so people like, I don’t know, Anthropic or OpenAI.

\n\n\n\n

[00:15:18] Fernando Tellado: People like AI.

\n\n\n\n

[00:15:18] Nathan Wrigley: Yeah, yeah, exactly. But also they’ve got to protect their search engine business, because if that gets just full up of AI, exactly what you said, it won’t even take five years. It would take a year for people to say, well, Google’s useless. It just gives me rubbish every time. I’m going to stop using it and go elsewhere. So that’s a very, very difficult path to tread for them I think.

\n\n\n\n

[00:15:41] Fernando Tellado: I don’t think, where is the market going? Where is going Google? Because one, two years ago we were, every moment, talking about NFTs, and who talk about NFTs today? Nobody. We have the Bitcoin bros, now we have the AI bros. People who embrace every new technology the most. And who knows? Who knows?

\n\n\n\n

I think we must have embraced the technology, as every technology gives us something to learn, and take the best of every technology, in order to advance in our life, and in the society. And every technology has the capacity to make a better life for us. From nuclear energy, it’s an extreme example, but nuclear energy has become a very important way of make our lives better through the years.

\n\n\n\n

In some years not, but through the years, it has become a very important technology in our lives. With this whole, more little technologies, it is going to be the same. In some point they’re going to convert it to facilities, to something that we assume that every time has been there, and we are going to take the better of every technology. In the case of the NFTs, in the case of the AI, we have some kind of AIs from 10 ago. It’s not really new. Growing in very few months, and the technology of ChatGPT, in order more conversational in the AI.

\n\n\n\n

But it’s like a city, it’s like an evolution of a city. There’s an evolution of all the oldest and older technologies. We have to present attention to these technologies, but not to give them too much attention.

\n\n\n\n

[00:17:22] Nathan Wrigley: Interesting. Yeah, the thing that you said there about Bitcoin and NFTs, yeah, you’re really right. If you were to go back, I don’t know, three years or something like that, they really were being talked about a lot. You could barely open a newspaper without somebody talking about Bitcoin, and now complete silence. Nobody’s talking about that. And so maybe the same will happen to AI, and we’re in a kind of hype cycle at the moment, where everybody’s obsessing about it.

\n\n\n\n

I do wonder about that. I do wonder about, let’s say, for example, companies like OpenAI who have a lot of money tied up in it being successful, and presumably spend quite a lot of their time telling us how wonderful it’s going to be, marketing it to us, if you like. And maybe that cycle, we’ll just get bored of it. We just get disinterested, and it will just become something that we use, but we’re not really, you know, it’s nothing to worry about. It’s nothing to get excited about even, because it’s just what we’ve got.

\n\n\n\n

[00:18:22] Fernando Tellado: No, I think we can excite about this. But at the end, all of these technologies in a certain point became a standard. When everyone used the word it tends, in a moment, to not make sense. It’s like freedom or anything. When everyone talks about freedom, freedom doesn’t mean anything. That’s the same. At this moment, I think AI is a claim for every services. Every day we see services with the new AI, with artificial intelligence. Everything has AI, not in my case.

\n\n\n\n

My case, I have that claim, in the blog that is, write it with no AI. You’re not expecting to have something that is going to give you always the reason, because AI always gives you the reason. If you discuss with AI, for example, in ChatGPT, it tends to be nice with you always.

\n\n\n\n

I think this is the first sentence someone teach to the AI. Be nice. At the end, be nice. If someone discuss with you, be nice. Don’t discuss with anything, because do you remember there have been some scandals about the AI in Gemini I thought? Create soldiers of the second world war.

\n\n\n\n

[00:19:27] Nathan Wrigley: An image of the.

\n\n\n\n

[00:19:29] Fernando Tellado: Nazis and so on. That’s because they have no contest, no one behind to tell the child, because it’s a child. No, not this way, better this way. You must learn it every day. And the AI is interesting, if always is going to be someone behind learning every day what it’s going to be, how it must behave with the environment, because the environment changes. We have something different as humans, it’s our capacity to adapt our environment to us, and adapt us to our environment. This is the story of the humans.

\n\n\n\n

So there are some things that I’m going to talk in my presentation at WordCamp Europe. I want to talk especially about this, because always there’re going to be technology. There’s going to be amazing technology, but always remember that the technology doesn’t make by themselves. Always there’s a human that is capable to imagine that technology in the first place. This is the most important thing. The most important thing is to imagine that technology, and this is a human capacity.

\n\n\n\n

And in the second place, it could be to make this technology, or make work this technology. But human is capable to imagine things, that is the most important thing, that because I not afraid of technology. Because I know that for years in the history has been demonstrated that only a human can imagine how could be things. All the rest of the animals, if we can embrace in the animal race or something, has a lot of capacities, but not the capacity to imagine it’s own life. Or it’s own capabilities more beyond the actual capabilities. And that’s because the human can make AIs, and sort of interesting and amazing things.

\n\n\n\n

[00:21:10] Nathan Wrigley: Does it concern you that, even though AIs seemingly can’t be truly creative in the way that a human can. If you tell it to draw a picture of a, I don’t know, a dog sitting on a landscape with the moon in the background, and it can do something like that. And it looks like creativity, but if we understand the way that that’s actually happening, it’s merely a process of, okay, what should this next pixel look like? And eventually it comes out, and it’s got a picture of a dog, but it’s not created that question itself.

\n\n\n\n

Do you worry that it’s good enough that it could put a lot of people out of work, who are doing work that doesn’t require much creativity? I don’t know, imagine that you are in a call center, you’re a support agent, and you are answering questions. The responsibilities that you have are not all that complicated, it’s fairly basic.

\n\n\n\n

I think some people worry that those kind of jobs are going to disappear, because an AI can take over. And then if we imagine the career ladder, you know, you start on the bottom rung, and you go to the next one, and eventually you retire at the top. If we knock out the bottom layer, it’s going to be hard for the next generation, the children of today to start the career, because that whole bottom layer has disappeared. And I don’t know how that’s all going to pan out, but that concerns me a little bit.

\n\n\n\n

[00:22:28] Fernando Tellado: Yeah, I can understand you. It’s a concern for me too because I always think about the children. Who’s going to think about the children? I want to talk about this because there are tools that could be very useful for you and for me, but it is not useful, and they are not suitable, and not recommendable to children.

\n\n\n\n

A simple case, calculator is very good for a person that is a physician, a mathematician that knows how to calculate, and used the tool in order to gain time.

\n\n\n\n

But it’s not a good tool for the children because this tool is going to retain him or her to learn how to calculate. We must put some breaks on, or close 13 doors in order to maintain these priorities. I think we must think about the tools, not only what tool can do, more about, in what moment is this tool can be thrown to the people, or to who?

\n\n\n\n

Because it is very important that, from the beginning of your life, we train our brain in order to make all the human can do. And in some moments the tool can be the worst idea for us. There’s a certain part of our brain, it’s the prefrontal cortex. It’s very important in this thing. There are a lot of scientifical studies, it’s very, very, very interesting. You’re aware about, are concerned, and in this case, about what is going to happen with humanity and society.

\n\n\n\n

It’s very important in this part of our brain because this is the part of the brain that distinguish us as human from the other animals. And it’s especially important for the children. Because, not only for the new tools of the AI, that is very important in case of social media. They use the consummation of social media, it’s a very instant transformation. It’s an transformation that very few seconds, cannot train the brain, the prefrontal cortex, to make all the things that the prefrontal cortex could do.

\n\n\n\n

This part of the brain is the part that differentiates us in things as important as predictions, imagination, how to be nice in a conversation when you need to be nice, when to know how to empathy with someone. There are very important things that some of these tools, today tools, like social media networks, and the AI can not permit this part of the brain to grow as needed.

\n\n\n\n

So, we as parents, we as human adults, we have a responsibility in order to allow our children, or other children to grow as sane as possible, and not to allow to use some tools in certain ages. In Europe, some countries is beginning to forbid to make the mobile phones in the classroom. Because it have been obvious that the attention is dispersed, and the children learn badly.

\n\n\n\n

So I think we are going to this kind of better use of the technology, because it’s true what you say at the beginning of our conversation about the extra hype of the AI, or the new tools. A point that the people cannot distinguish on the right use of externally.

\n\n\n\n

[00:25:29] Nathan Wrigley: I think that’s a really interesting point, because you talked about a calculator, and how that saved you a lot of time, but no child is going to hold the calculator and use it at three o’clock in the morning, or be addicted to doing calculations. I mean, maybe there is a child somewhere who would use the calculator all day, every day because they’re just fascinated.

\n\n\n\n

But the mobile phone in particular, really has the capacity to subvert the entire day. You know, you can pour all of yourself into that thing, you’re scrolling on some kind of social media, or you’re chatting with people, or you’re just watching videos.

\n\n\n\n

And especially for children who are born in an era where that was always around, and they see their parents that are addicted to it, and they see that everybody at the bus stop is using it, that then has become, well, that’s how normal people function.

\n\n\n\n

Everybody’s scrolling all the time, and that concerns me a lot because there is something unique about that device. There’s some way that it can drag you in. Even, you know, the moment you’ve got nothing to do, out comes the phone, and you can spend a long time. So I think you’re right. I think there is a little bit of a shift at the moment. I think people are starting to recognise, that’s probably not healthy for anybody to be doing that.

\n\n\n\n

[00:26:48] Fernando Tellado: I understand absolutely. But we must think that, in very few years, we have gone, we have traveled in a work, in our parents, in a lot of cases, having got a telephone in the release. Very, very few years ago.

\n\n\n\n

[00:27:01] Nathan Wrigley: Yeah not long.

\n\n\n\n

[00:27:02] Fernando Tellado: When you and me born and grow, there weren’t internet. And the problem is for children, but we all child too, because we’re not training in the current use of these new technologies. Technologies are over us, but not only over the children, it’s over us, everyone.

\n\n\n\n

We are not trained how to make a good use of these technologies. We might be trained before, we might be able to be trained, afterwards train the children. We are the first one to train in how to use in the core, the way these technologies, because we are not trained to do it. We have been born in our world very different, and we are astonishing about this technology, because it’s brilliant. They’re awesome. So they surprise us, and we use that in a platform. And we must train us in the first place, and after train the children.

\n\n\n\n

[00:27:53] Fernando Tellado: This is a matter of too much information, too much changes in very few time, for everyone. We must put the breaks on in some moment, and make a reflection. For example, my presentation, it’s not a talk. I’m not going to give answers to any question. I would like to make the people reflect about this problem, this opportunity, in order not to be concerned, in order to be responsible. We must change. As adults, as human adults, we must send to the responsibility, and begin to train ourselves in how to use this technology in a good way.

\n\n\n\n

We can hear a lot of the startups, that is beginning to talk about the bad things about their own technologies. They say a lot of people see themselves as startups, and says about, they don’t allow the children to learn with the iPads, or tablets, or so on because they know what they are going do.

\n\n\n\n

We’re the people, with the adult humans, enlightened with technologies, don’t know how work really the technology. These younger people that knows how the algorithms works are telling us the truth. And the truth is that we must begin to learn how to use these technologies, and afterwards spread it to the children. I don’t mind about you and me because we are adults, and we affect our responsibilities, and make our own life. But we must take responsibility for the children

\n\n\n\n

[00:29:13] Nathan Wrigley: Yeah, it’s an interesting thought because, first of all, I imagine it’s true that every generation that has ever been has faced something which they thought was going to be the end of humanity. You know, whether it was the printing press, Gutenberg’s printing press, or whether it was, oh I don’t know, the plough, or whatever it may be. This is going to be the end of all the things. And it feels like this one really could be that, and yet it’s probably just one, you know, and in history, 200 years from now, people will look back on our time and say, oh, that was an interesting moment.

\n\n\n\n

[00:29:43] Fernando Tellado: This is very interesting to realise that today, I pay my dues, things, a technology that didn’t exist when I was born. And it was going to be the same as the time passes. At the moment, there are works that doesn’t exist, that in the future are going to exist, and a lot of people will work in this new works that doesn’t exist at the moment.

\n\n\n\n

The more radical change I think was in the industrial revolution. That changed everything. It changed not only the way human work, they introduce the plastics, as we know at this moment, because it changed everything. We create the cities because there weren’t cities before, we create the industries, we create the supermarkets, all the world as we know it at the moment.

\n\n\n\n

It led to some problems. We are living today with problems created in that moment, in the Industrial Revolution. As, in the future, someone is going to live with the problems we are creating now, right now with another technologies. But there is going to be always somewhere that is going to disappear.

\n\n\n\n

[00:30:47] Nathan Wrigley: I have one final question, which is that, you say we need to train ourselves. And I think that’s a really important message. If you detect in yourself that technology has overtaken important parts of your life, you need to be an adult, I guess, and say to yourself, put it down. Stop using it at the moments where it’s not useful or it’s not important, or, I don’t know, you are ignoring your family because of it. And we need to train the children to have that understanding. So there’s that message as well.

\n\n\n\n

Do you prefer, or maybe there’s no perfect way, do you think government should be involved in this? Like you said, certain countries are saying, you may not carry mobile phones in schools. In the UK, very recently, I doubt it will happen, but one of the political parties suggested that mobile phones should be banned until you are 16 years old, which is a really, hitting a nut with a big hammer. What do you think about that? Do you think it should be more personal education, or top down government, giving us guidance about what we can and cannot do?

\n\n\n\n

[00:31:49] Fernando Tellado: I have problem with politicians because I not confident of them. Politics is very important in our lives, it’s the way we lead us, decide who is going to represent us. And that’s the way this must to be. But, at the end, political are the new kingdom, are the new cast, are the new kings. So they are very separate for all decisions at the moment. In the case of children, I am especially unconfident, because a politician is always going to try to train the new generations, in order to be good for him.

\n\n\n\n

And I always prefer that the fathers decide because, I know very few things, but I think that I knew that a father going to do nothing that could be bad for your children. You’re going to always protect your children because it’s always you. Is you are father? I don’t know.

\n\n\n\n

[00:32:41] Nathan Wrigley: Yes.

\n\n\n\n

[00:32:42] Fernando Tellado: Yes. You are not going to do anything that is going to be bad for your children. That’s not the same in the politician. The ideas could be nice, could be affordable, but at the end, the fathers has to be the last decision in those things. I don’t believe in politician at the moment because I miss my life. My life in Spain, we’ve had very bad politicians for life. From dictators, to actual, and, not better. But, at the end, we had the less responsibility in the family, we have to decide.

\n\n\n\n

It’s difficult for us because easier for us when someone go to our house, poof, read instructions. I get to my son, read instructions, they are more prepared to do these kind of things. I must read the instructions in order to know, is this tool going to be good or bad to my children? Because I have the responsibility as they live in my home, and I’m responsible for them, I’m responsible for what this technology is going to be in their lives.

\n\n\n\n

So we must take that responsibility in every little thing. We must stop, as you say. We must stop a moment, say, I go, it’s a mobile phone, it’s interesting. There are other apps. What is this app? What this app is important for me, or it’s important for my children. We must live more quietly, and take the things with a little more time. We don’t need to live so fast, it’s not necessary, not mandatory.

\n\n\n\n

It is good for Facebook, it’s good for Meta, good for Google because they live from the algorithms, and they live for how many times we scroll in the mobile phone. But our life is not that. We don’t need so many things. And there are very good technologies, there are good AIs that we can use for our benefit, not for the benefit of who made it in the first time, or someone’s needs above our need.

\n\n\n\n

[00:34:27] Nathan Wrigley: I think I understand a lot more about what you mean by rehumanising the web now. You’ve really explained it very well. So thank you for chatting to us today. Unfortunately, time is short, so we’re going tohave to, as we say in the UK, knock it on the head. We’ll have to end there, but that was a really interesting conversation. So, Fernando Tellado, thank you so much for chatting to me today.

\n\n\n\n

[00:34:46] Fernando Tellado: It has been a pleasure for me.

\n
\n\n\n\n

On the podcast today we have Fernando Tellado.

\n\n\n\n

Fernando is a very large force in the WordPress community in Spain. He’s the editor and writer at ayudawp.com, a blog in Spanish about WordPress, with more than 15 years of publishing on a daily basis. He does consulting, maintenance, security and performance services for WordPress sites. He’s published four books about WordPress. Not only that, he’s been involved with the WordPress community for 20 years, organising meetups, WordCamps, coordinating the official support forums, as well as taking leading roles in Spanish translations, and Spain’s official community website.

\n\n\n\n

We begin with a discussion on the current state of AI tools which offer the capacity to generate thousands of posts in mere moments, mainly for search ranking purposes. Fernando explores the issue of content quality and the growing challenge of distinguishing between human and AI-generated content. This leads to a chat about the strange position which Google finds itself in with its latest AI model, Gemini, which aims not only to generate content but also to interact and answer questions like a human. How can Google on the one hand be able to create content, and on the other be mindful of only promoting content which it views as credible and reliable?

\n\n\n\n

Fernando also talks about the rapid evolution of technology, drawing parallels to the industrial revolution and its long-lasting effects on society. He tackles concerns about AI potentially replacing jobs and underscores the addictive nature of mobile phones, particularly for children. The role of government in regulating technology also comes under scrutiny, but Fernando expresses scepticism about political intervention, and instead stresses the importance of parental responsibility in guiding children’s use of technology.

\n\n\n\n

Towards the end, the discussion revolves around the necessity for both adults and children to learn and use technology responsibly. Fernando is passionate about the importance of human imagination and our innate capacity to adapt to the technological environment. He advocates for individuals to slow down, assess the impact of technology on their lives, and make deliberate choices that ensure their well-being and that of their families.

\n\n\n\n

If you’re intrigued by the intersection of AI, WordPress, and the call for responsible and reflective use of technology, this episode is for you.

\n\n\n\n

Useful links

\n\n\n\n

ayudawp.com

\n\n\n\n

Re-Humanizing the Web – Fernando’s presentation and WordCamp Europe 2024

\n\n\n\n

PonteWordCamp

\n\n\n\n

Gemini

\n\n\n\n

OpenAI

\n\n\n\n

Anthropic

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jul 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: Boosting WooCommerce Performance with Marcel and Mike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/boosting-woocommerce-performance-with-marcel-and-mike/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48839:\"
\n

This show is sponsored by…

\n\n\n\n
\n
\n
\n
\n
\n\"\"\n
\n
\n
\n\n\n\n
\n

Avalara: help developers make sure their Woo projects are tax compliance done right with Avalara’s API. Visit their extensive developer resources today.

\n
\n
\n
\n
\n\n\n\nEpisode Transcript\n
\n

Mike:
Yeah, I think having adequate resources for the site is super important. So there’s enough CPU and RAM, using fast SSD drives. There’s room for growth. A lot of the time I see not enough resources being allocated for the database, for example. It’s like having a big enough engine to power that database. Having access for developers like SSH analytics tools, being able to access the logs and scrape those properly for little nuggets of information. Having some sort of application performance monitor (APM) like New Relic is the one that I use the most. It’s pretty popular because you want to be ideally alerted and proactive about performance issues rather than reactive. You don’t want to find out customers are emailing you or blasting you on social media that, oh, you’re trying to check out on this thing again and it’s crashing or slow or whatever. It’s better if you get an alert from your own systems that you have set up for monitoring, etc., to go out and put that fire out and be able to pinpoint the issue very, very quickly instead of trying to play detective with discovering all the clues instead of having the clues handed to you.

\n\n\n\n

Having some sort of CDN integration I think is quite important as well. There are a lot of Cloudflare enterprise partners now with hosting companies, which I think is, if you wanted to build your own Cloudflare network, good luck. That’s a lot of resources, a lot of money. So I think it’s easier to just get a host that already leverages their network for the DDoS protection and the security because sometimes the performance issues I see on WooCommerce sites are actually security related. The site is constantly getting attacked on the login page or good old XML-RPC, which has been around since the dawn of computing and is used but can still be a very common attack vector. And fraudulent orders was one that I saw come up recently. This client had a bot network that was attacking them, making a bunch of fraudulent orders, just taking up resources from real people who are actually buying stuff. So yeah, those are the things I think off the top of my head.

\n\n\n\n

Marcel:
And I obviously think that the very basic part of it, of the hosting, is if you have an audience or a market that is more US-based or European-based or whatever region you’re selling to or providing your services to, that also plays a very important role in deciding which area of the world you’re selling to and then choosing a hosting company that has good data centers or good resources in that specific area. The region of the world is, I guess, the number one thing we should look for when we’re going to choose a hosting company because they all say they are very fast everywhere, but if you dig a little deeper, you will see that they are probably more US-based. So whenever you go to a hosting company and you search for their data centers and where they’re located, some of them, even when you spin up a hosting service, they will ask which area do you want to cover.

\n\n\n\n

I think some of them are more US-based, some of them are more European-based, and we have Asian ones. For example, if you want to go to the Asian market and sell in China, Japan, and other countries, it’s far more challenging to choose the right hosting company than it would be to sell in Europe or in the US. So that would be probably my advice: choose a hosting company that has all the services you talked about and all the little details that they care about, specific for WooCommerce, but also where they are really strong when it comes to providing the fastest services in the region of the world you want to sell. Number two, I would say, is the theme. When we talk about the theme, do your clients go more with existing themes and then change that, or do they have custom themes?

\n\n\n\n

Mike:
It depends on the size of the client. I work with a range of small businesses to enterprise clients. One of the Shark Tank clients I’m working with, they were using a very popular commercial theme that had a lot of extra bloat and unnecessary stuff they didn’t need. I told them, you have the budget and the resources, go custom. It’s hard to compete with the performance of a custom-built theme, and if you have resources available to maintain it going forward, absolutely it’s the way to go. I generally find that smaller businesses, when they’re just starting out, they don’t know if what they’re going to build and try is going to have legs, is it going to work, is it going to make money?

\n\n\n\n

So they will tend to pick a theme that is pretty, has predefined templates that will work with WooCommerce, and has a bunch of features. As time goes on, they probably also use a page builder or two or three I’m sure we’ve all seen, and other components. That will tend to, of course, slow things down. I tell them during consultations that if you’re using a certain combination of theme and a page builder, I would start with removing that and then if you’re still not happy, we can look further at what’s slowing things down. So I’d say it’s a mixture. Whenever I see a custom-built theme with a cart, I’m like, oh good. This means that I don’t have to have that difficult conversation of if they’re really in love with their theme or the design that the theme provides, and you tell them, hey, you have to get rid of this. It’s like taking a toy away from a child that they’re very, very happy with. Then I tell them, no, no, no, you can have the same design and features, just rebuild it with lighter components.

\n\n\n\n

Marcel:
And usually as a developer, when you have a client that is using an existing theme and they start having these ideas about, oh, what if we could change this page and make the image appear on the right side instead of the left side, or we need the description to have a bigger place now let’s move it down, or now we need an extra tab for this or for that. And then you suddenly end up having so much customization on top of an existing theme that you start asking yourself or challenging the client, this is becoming so cumbersome to maintain all of these changes. It would make more sense to build a custom theme. I would say if you have the resources and if your client has the resources, a custom theme may seem like very hard work at the beginning because you have to do all of those standard pages, the 404s, the search page and all of that, but it will compensate in the end because if you have full control of everything that is being loaded on a theme and usually when you go with an existing theme, you don’t need all of the features that they offer, you have a lot more control over performance.

\n\n\n\n

So if you’re starting out, fine, but if you want to invest in something that is very important to the performance, I would say the theme is the number one category where you should put some resources because we’re talking about web performance and we’re talking about key metrics that we can measure. The theme part is one of the most important components because it is responsible for the front-end part. When we talk about key metrics, we talk about LCP (Largest Contentful Paint), we talk about the First Input Delay (FID), we talk about Cumulative Layout Shift (CLS), which is when the page loads and things start moving up and down because the images are loading or different parts of the page are loading and they’re shifting up and down, which makes it very confusing for a user to follow. That is all the theme, or mostly the theme’s responsibility. From the key metrics, what is the most important one in your view?

\n\n\n\n

Mike:
I think Largest Contentful Paint (LCP) is a big one. So related to conversion rates, time to first byte as well. I know it’s not a core web vital, but…

\n\n\n\n

Marcel:
I forgot to mention that. It’s an important key metric as well.

\n\n\n\n

Mike:
Everything else, the Largest Contentful Paint can only be as fast as the time to first byte. And there’s also Interaction to Next Paint (INP), which you mentioned in the introduction, right? That I think replaced FID, the transition because when you click the button or whatever and you don’t see something happening within a few milliseconds, we get confused or frustrated and keep clicking the button faster. That’s a common human thing where we think clicking the button harder and more intensely will make it work. Maybe you press your mouse button extra hard or…

\n\n\n\n

Marcel:
Multiple times.

\n\n\n\n

Mike:
Yeah, like clicking the elevator button faster and faster…

\n\n\n\n

Marcel:
It’s not coming. Let’s press again.

\n\n\n\n

Mike:
I think that one is really important for stores because of the add-to-cart checkout flow. It’s important to signal to the user that they’re making progress towards their end goal and with their journey of trying to get this product or service that you’re selling. That one is more difficult to measure in, not in the wild, but to pinpoint where the INP issue is coming from is not as difficult as Largest Contentful Paint, for example, which is well established for being very related to the revenue conversion rates. There’s a cool calculator that Google put out a long time ago that they deprecated for some reason. I don’t know why, but we took the code and put it on my website. I think I’ve sent you the link before too with this LCP Premier calculator.

\n\n\n\n

Marcel:
And I would recommend everybody to take a look at that because it’s very interesting how much you can estimate the increase in terms of conversions just by tweaking some of these key metrics in more performance.

\n\n\n\n

Mike:
It can help a lot to put things into perspective for the clients. It’s not based on a specific niche. It’s aggregated data that people and Google Analytics opted in to allow Google to track. So it’s from all niches across all different industries, and it gives us the best idea of if we can improve the LCP from X to Y, and if you know your average order value, the amount of customers that come

\n\n\n\n

per month, and one other piece I can’t remember, you can see how much more revenue you will get if you make that improvement in the LCP. It can help shortcut some of the conversations about price. If you’re saying, oh, it’s going to cost $10,000 or $20,000 to do this reworking of the site or whatever, and they can see, oh, that sounds expensive, but if you use the calculator they can see, oh, that’s going to mean half a million extra in potential profit from a business perspective, it becomes a much easier decision.

\n\n\n\n

Marcel:
And clients do have sort of the first impression that they get when we present them these numbers and we talk about this specific calculator you’re talking about and they go, oh, that sounds too much or that sounds too good to be true and all of that. But you’ve done that. You actually have some cases on a website where you improve some clients’ websites and it really turned into more profit. So that’s something that clients will notice after you do performance tweaks and it’s something that is absolutely incredible how they suddenly start believing in you and suddenly start seeing how important performance is to their funnel and to the sales and conversions and all of that. It sort of makes you feel a little bit like a magician or a special god of some sorts when you get to that point and then that client is hooked to you forever, I would say.

\n\n\n\n

Mike:
Yeah, it’s a very effective way to establish trust for the long-term because a lot of this stuff when it comes to performance is unknown for a client. We all know technology is unreliable, unpredictable, we can have the best intentions, we can make all these plans and then something that we didn’t anticipate can mess things up. And so I think even if you have these case studies and you have lots of proof and stories, clients are still a little bit like, ah, but maybe that won’t work for us. So when it does, I can see the struggle in their faces and that hesitation like, ah, they’re taking that leap, jumping off the cliff and spending the money where things could not get any better. That’s one of their main concerns, that it’s not going to provide the return on investment. Fortunately, when you follow a specific methodology, and I’m sure this is true for anyone who’s worked with performance, if the client is getting enough traffic, if the user experience of the site is otherwise good, their business model is sound. When you’re improving the performance, it always makes sense within reason. Of course, once you get to a certain point, unless you’re Amazon or Walmart or a very large client, spending an extra $500,000 to improve performance is not necessarily going to make sense. But for smaller clients, the initial performance tuning is pretty much always worth it.

\n\n\n\n

Marcel:
I guess being aware that it is an important factor when you go online and do sell products is step one to admit regardless of your size. And I’ve seen other big brands in Portugal and the companies who were selling online who initially didn’t give that much of a thought about performance and their websites were being slow and inconsistent and they were difficult to navigate. And since some time back, a couple of them have been actually working on their performance side and worrying about all these different key metrics we just talked about. And guess what? They’re selling better. And you usually think big companies and big brands, oh, they must for sure know about this. And you probably also think, oh, my client has been online selling this product for more than 10 years now. He heard about performance, he’s done everything that he can. Surprisingly, many people do not know about it in a way that affects immediately their conversion rate.

\n\n\n\n

I wanted to talk also about plugins and the importance of plugins and especially the number of plugins that people install. They think they’re essential and they’re not. So my experience is more in terms of whenever I get hands on a website, it is performing very slowly. 30, 40 plus plugins are installed. Oh, when we start doing the audit and ask, do you need this plugin? What is this for? We certainly get rid of 10 immediately just by talking two minutes into the list of the plugins. And just that alone already cuts down the time considerably. And all the other plugins that are installed there are usually because there’s something missing on the e-commerce out-of-the-box features that people don’t have. And we’ve also seen WooCommerce iterating and adding some of those missing features into the core installation. But the number of plugins is also another thing that is very important to talk about, and that means also you need to update them and the more you have, the more security issues you have. You certainly also have multiple plugins that do the same function, or at least in their feature list they offer the same things and you just add things to the website that are absolutely not necessary.

\n\n\n\n

So when it comes to choosing a plugin, it’s also important to know about their performance and how they affect performance and if they are built in a way that shows the concern of the author of the plugin was performance or not. We usually use plugins to do image optimizations, maybe to do caching as well. We’re going to talk about caching next. We use plugins basically to change features and to add features to WooCommerce. So plugins are very important. What is your experience with plugins? And you mentioned page builders. Page builders are plugins, but there are other nightmares that we can talk about when it comes to plugins and performance, right?

\n\n\n\n

Mike:
Yeah, I mean my approach is similar to yours. It’s remarkable how frequently you ask just simple questions, why do you have three forms plugins or what is this for? And they say, oh, well we haven’t used that in six months or a year, or we don’t use that plugin or feature anymore. And I tell them what you said, every plugin is a security liability and a performance liability. So as soon as you don’t need it, treat your website like an F1 car. There’s nothing on an F1 car that doesn’t need to be there. If it has a specific purpose and provides some value in some way, it should be there, otherwise, there’s no reason to have it. But otherwise, I would say the plugin quality is much more important than the plugin quantity. So I have seen websites that have 90 plugins and perform very, very well.

\n\n\n\n

It’s absolutely possible, but it’s usually these heavier plugins that have lots of bundled features, 80% of which you don’t use, and then you do that 10 times and you can see them in the profiling, code profiling, tools, plugins that are just finding out, do I need to run or running unnecessarily on pages. For example, a client I mentioned earlier, Bingbot. Bingbot was crawling a product archive page and it was triggering the membership plugin to see if the Bingbot had access to the particular pages of products on that product category page because the way the plugin was configured was to grant access based on categories and I was like, it’s ridiculous. First of all, a bot isn’t going to log in and take any courses or download any products, but there was literally no reason for the membership plugin to execute. So that was down to code quality in my experience and making sure that plugins, pretty much most plugins I see, do not have the logic to find out, do I need to execute here? Do I need to do anything here before it starts to process its own code? And I think that’s why when people complain about WooCommerce being slow or WordPress being slow, it’s not the core of WordPress being slow, it’s all the other extra stuff that you added usually that is causing those kinds of experiences.

\n\n\n\n

Marcel:
And when it comes to choosing a particular plugin that has a particular feature, you obviously have a bunch of different plugins out there, and usually what I tell people is, well, you could hire a developer to make a more informed decision about how the code quality is and how the plugin works and how it performs, but if you don’t have the resources to hire an expert when you buy these plugins, basically, I guess looking at the plugin’s reviews and seeing what other people are saying or maybe just trying to get a feel of if you see a plugin that is promoting bundled features that are 30, 40, 50 and they are expanding way beyond whatever the core function of the plugin is, it usually means that they are bloated and they’re not very specifically oriented to the feature that they were talking about. When we did plugins for other companies here at our agency, some of them wanted to expand to other areas that were not the core focus of their plugin initially.

\n\n\n\n

So for a developer, it’s very hard to keep consistency and keep the code in a shape that is solely focused on the core feature it was intended to be in the first place. So if you start doing other features and start adding other elements to the plugin, for the developer or developer team who is responsible for making it perform well, it’s going to be very hard for them to just focus on that particular feature, so that is very important. Next on the list is caching. We talked about caching. There are three main techniques of caching I think we can say. There is page caching, which are static versions of pages that are stored usually on the hosting side. We have object caching, which caches database queries so that they do not need to be executed every time somebody gets into a page. And we also have browser caching, which is telling the browser to store certain resources locally and not have them transmitted all over again. Caching is probably one of the hardest things to manage and to talk about because most of the hosting companies already say, we have the best caching solution and technique, just come with your website and host with us, and you’re going to have the latest caching technology. Then when you dive in and want to control some aspect of the caching, you usually have no idea what they’re doing behind the scenes and they don’t tell you what resources and what techniques they’re using behind the

\n\n\n\n

scenes. So this is a very important topic. It’s a very difficult topic as well from a developer’s perspective because usually people think, oh, we just throw in a bunch of plugins like WPRocket or WP Total Cache or whatever other plugins there are, and the site will be faster, and then you hire a developer and the developer goes in and starts thinking about what is going on. We have all this caching going on, and what do you think about caching? Is it up in earliest as an important part? And also it’s important to talk about the different pages that we have within WooCommerce. We have the checkout, the cart, we have a catalog, we have the first page, so not all of these pages are treated equally when it comes to caching. Right?

\n\n\n\n

Mike:
There’s also two other little pieces of caching too. There’s fragment caching, which is rarely used but handy to cache partial pieces of the page and CDN caching, edge caching, I would argue. Yeah, but I know that those are typically not considered under the umbrella in the same way. It’s not the ones that pop up first in mind, and I think with object caching too, you can also cache the results of API calls. I think we’ve done that before for clients with really slow calls that need to fetch something from some API that takes a couple of minutes, and instead of doing that every page load, we store it in a transient. But yes, caching is very, very important. I think in terms of the order that we discuss things, the hosting, the theme, plugins, caching, they’re all really, really the first points of call when it comes to doing audits and making sure things are running well. I think page caching is probably the most important one to get right because everything else will, like you said, the LCP will depend on your time to first byte, which is tremendously improved once you get page caching working, and if you again can leverage edge caching on top of that, you can save usually another 100, 200, 300 milliseconds, which can speed up the other components.

\n\n\n\n

Marcel:
Especially the initial page. The homepage is probably one of the easiest pages to cache, and because it is the point of entry to the website, it just gives you the first impression that we’re looking for it to be fast and clicky and all of the links that go from the first page to specific products and maybe category pages and all of that, those are very easily cacheable pages, right?

\n\n\n\n

Mike:
Yeah, yeah, exactly. Like the pieces where there aren’t dynamic components that need to do post requests or fetch something from the database particular to that visitor, that kind of stuff. I certainly encourage people to build their homepages like that so that they’re very cache-friendly and we don’t have to worry about users seeing something they’re not supposed to or those kinds of things compared to if you have product category pages where you have something with facets where you can filter and drill down, you’re fetching a lot of information straight from the database, which I noticed…

\n\n\n\n

Marcel:
Even with those pages, you can still cache them. Usually filtering options that you have on the website, in the cases where the number of combinations are not in the millions, if they’re in the hundreds, it’s not difficult to cache all the different variations when it comes to filtering and having fast filtering is one of the biggest challenges in a WooCommerce store. But if you’re small and if you have the knowledge and if you can hire a developer to do that, we developers have the resources to cache those filtered pages as well, right?

\n\n\n\n

Mike:
Yeah, absolutely. Yeah. I think you even built something for, I forgot the name of it, but you built a filter plugin for a client that is actually selling it.

\n\n\n\n

Marcel:
Well, in that particular version we did a little, the client had this awesome idea to just provide the browser with the initial results of the filtered products, but it wasn’t directly related to the caching part, but here’s the deal, it benefits greatly from page caching because the information that comes with the page source is already enough for people to feel the filtering to be very fast. It’s the perceived part that we talked about at the beginning, but it’s not caching everything, but it’s caching just enough for people to think this is super fast. And yes, that was one of the techniques that they used, but even if you don’t have that, even if you have a page caching system where the first customer goes in is the one who generates the HTML for that particular cache, and then the second one that does the same, the same filtering options will be served the cached version of it, and that’s…

\n\n\n\n

Mike:
Possible, and I think with filtering too, you get, so you can do both page caching and basically object caching is what I would call it when you are storing them in the database or if you can cache the query string, get parameters from, if that’s how the facet plugin is working, then you get to leverage Varnish or Nginx or whatever other caching plugin you might be using, and that’s one cool way to do it. But then if that isn’t cached, it fetches it straight from a transient inside the database is the next best thing. So I know some people don’t like having layers of cache because you can have stale cache and you don’t want the user to be delivered expired data, but I think if you get things configured correctly, everything helps boost one another. It’s the same thing with page caching locally on the host and page cache on the edge with Cloudflare or a similar solution.

\n\n\n\n

It’s always better if Cloudflare wants to cache your homepage that when you deliver the page to Cloudflare, if you can give a cached version that’s way faster than taking two to three seconds for time to first byte to then deliver it to Cloudflare. So I think it’s important to consider these aspects in the performance strategy and get things, there might be some little fine-tuning or issues to iron out as you’re rolling out caching, and a lot of planning is usually a good idea with clients asking them what’s the typical user journey? What different types of users and avatars do we have on the site? How do they navigate through the site so that we can make sure we’re considering all types of users? Also for employees, the customers are the ones giving money to the WooCommerce store, but the people who need to work on the backend processing orders, support tickets, that kind of stuff, I think it’s important they have a good experience as well, and you won’t be able to use page caching as much for them, but there’s certain object caching and similar techniques you can use for their tasks daily that can make it a better experience.

\n\n\n\n

They get more productive, store owners are happier and all of that stuff.

\n\n\n\n

Marcel:
And then you have the cart pages and the checkout pages, which obviously cannot be page cached. Maybe parts of it can be object cached because there are elements in there that are repetitive for all customers, but then it goes back to what we were saying before about hosting, right? For those pages, you need to rely on the quality of the CPU, memory, SSD and all of that to render those pages fast enough because it’s not just enough to do a fast homepage and category pages and product pages. If people get to the cart and then to the checkout and the page takes 10 seconds to load, you just basically lost the client right there.

\n\n\n\n

Mike:
Yeah, yeah, exactly. And it’s something to really get nailed down. I think it’s okay for the final checkout when people press after they’ve added their billing details, credit card number, all of that, pressing that final button, it needs to communicate with the payment gateway or API calls back and forth. I think people accept and understand that that could take a bit of time…

\n\n\n\n

Marcel:
Like that everywhere in every single site,

\n\n\n\n

Mike:
But getting to that stage shouldn’t take long. I think especially with mobile browsers nowadays, you can autofill pretty much all of the fields and WooCommerce is so popular and widespread that unless you’ve done a lot of customization to the fields or whatever like the Google Chrome Safari or whatever, I think we’ll be able to figure it out. We can’t cache those pages, but it’s still, so maybe you might be able to do some fragment caching if you still have the menu in there and it’s a mega menu, super complicated. We could cache that, so that’s not taking up unnecessary time. I don’t think that many users are going into the menu at…

\n\n\n\n

Marcel:
That point. Yeah,

\n\n\n\n

Mike:
Or you might have a footer, I’ve seen this before. We have a footer widget or some piece that is contacting Instagram or doing something else blocking the right page and the user isn’t even going to see it, but it still is preventing the checkout flow from progressing…

\n\n\n\n

Marcel:
Quickly. Yeah, I was going to take the last minutes that we have for this episode. Just to sum quickly, so we have chosen our hosting company, we have chosen our theme and we have a set of plugins that we chose. We learned about caching and what the different caching versions are, and now we’ve installed everything and we run the website and it’s slow. The website is not moving at all. Then we need to talk about, and we’ve already talked about core web vitals, so we have different diagnosing tools that we can use to understand why the site is slow, because if we followed all of the advice that we’re given, we’ve chosen the right hosting, the theme is not big, the number of plugins is reduced, and we only have the ones that we really need. We’ve tweaked, we spent hours tweaking the caching and the site is still taking two seconds to load the homepage. For example, core web vitals are the first thing to go to and to measure. How do you do that? How do you measure core web vitals?

\n\n\n\n

Mike:
Yeah, there’s definitely using a front-end tool like Google PageSpeed Insights, GTmetrix, WebPageTest. We’ve seen those at the perf now

\n\n\n\n

conference…

\n\n\n\n

Marcel:
PerfNow Conference. Yes,

\n\n\n\n

Mike:
They all run some piece of Lighthouse nowadays. You used to have to use Google PageSpeed Insights, it’s called I think something else now. Anyway, web.dev/measure. So they all just have different ways of running Lighthouse and then presenting the data to you differently. So I like WebPageTest the most. It’s the geekiest, so it could be quite overwhelming for people. I think GTmetrix does a really good job of presenting the data in a more digestible way that isn’t overwhelming and it gives you a good amount of insights and Google PageSpeed. I think because it’s the official Google tool, people like to use that and it feels like it’s more credible, trustworthy…

\n\n\n\n

Marcel:
And it will tell you also about SEO because you want to appear on Google results and at the top eventually, and that particular tool will give you more information about that specific part of the performance.

\n\n\n\n

Mike:
It tells you if you’re failing the core web vitals for that particular page or for your entire website, depending on how much traffic you’re getting. I believe WebPageTest does that as well. It has the crux Google Chrome user experience metrics, but that’s only Chrome data, which is important to remember. It’s the same thing on PageSpeed Insights that it’s not collecting that information from other non-Google Chrome browsers. But yeah, those tools, I mean we can do a whole workshop on those. There’s a bunch of courses on them, so advanced and rich in what they can do. But yeah, that’s why a lot of people, they come to me and they say, Hey, I ran this and it’s slow. I don’t understand this report. Sometimes those reports are oversimplified where there’s a lot of pieces that they miss or that they say, oh, the LCP element is this, and it’s like, well, why is it taking eight seconds? Usually it’s JavaScript related or something else, but it could also be the time the first byte was six seconds, so that takes someone who has experience and to decrypt, I think, or understand things more.

\n\n\n\n

Marcel:
Do you have a favorite tool?

\n\n\n\n

Mike:
Well, no, it’s basically just the ones that you talked about, but what I think is the most important one, I don’t want to say there’s a most important one, but I do feel like the Google’s tool is a good starting point for people to understand a little bit what’s going on because they also give, I don’t want to say simple instructions on how to fix those because they’re not, probably not simple when they say to reduce image sizes or when they say to lazy load some scripts and all of that stuff. Usually as a store owner, you don’t really know what to do, and even as a developer, you suddenly think, oh, so if I just lazy load all this stuff and I just delay all the loading of the JavaScript, that will fix it. But then I start thinking, oh, how do I determine which ones are not necessary and how do I determine which ones the clients need if they change something on a homepage? Suddenly it’s the script that does this funny animation or has this slider going on. So it’s very hard for people to understand, and I think Google’s tool is the one that gives you a starting point to start figuring out what’s going on. They do this coloring with red, yellow, and I think that’s all the colors, the important colors they use to pinpoint all the most important parts of it, and if you manage to figure out some of those points, you’re already in a good starting point and then you can use all the other tools you mentioned to just fine tune specific parts of it. But once you have the results and once you have some indications on the website specifically what’s going on, being it a section of the website, an image problem, JavaScript problem, whatever it is, then it basically comes back to the theme setup and how to properly set up the theme.

\n\n\n\n

Usually if you go with an existing theme, there are options that you can turn on and off and by those on and off, you will then obviously maybe not load some of the scripts if the theme is done properly, if they have taken care of just not loading scripts they don’t need for that particular page. This is where page builders come in very handy, and that’s why I’m a huge, huge fan of Gutenberg and all the Gutenberg experience because it’s very performance-focused. But then again, you will optimize the heavy scripts, the styles, you will disable some theme features. As we talked about, mobile performance is also something that you will fine tune and then you suddenly… Let’s move on to the story and end with this. Then suddenly you realize, okay, I’ve fixed all of these problems. I have a faster website. I have fixed most of the problems they were told to me to fix. How do you keep record of the website’s performance and how do you go about making sure that this first initial tweak that you did is going to keep up with your website and you’re going to maintain all of that performance throughout the whole existence of the website? What is your tip as a final tip on how developers or clients can diagnose the performance throughout the whole time that it exists?

\n\n\n\n

Mike:
Yeah, I’ll make it short. I think it’s important to focus on both lab tests, which are these synthetic tests you run through GTmetrix and other tools, and then also look at the real user metrics, which is what actual people are experiencing, and then diagnose as much as you can using those tools and having some kind of performance budget in mind in terms of what kind of space do we have for, what are we going to allow for the LCP to be? What are we going to allow for the time to first byte to be? How much JavaScript, what’s the overall payload for the entire front page that we’re going to allow to be not larger than 500 kilobytes, for example, would be great. Sometimes it might be way larger and sort of tracking with a spreadsheet or screenshots or whatever you can, and sort of dating those to make sure that things are staying within your thresholds that you’ve defined, I think is a good starting point unless you have a whole performance team dedicated.

\n\n\n\n

What we’ve seen at the conference, these big companies like IKEA, they have dedicated performance teams whose job is to make sure everything is running smoothly and they interface with the departments. I don’t think that’s realistic for a lot of companies, but we can still take some of the ideas and sort of track things. I think that most importantly is don’t just assume that once you’ve made a change performance-wise or whatever, that it’s going to persist indefinitely forever because the website is usually a living, breathing thing. You do updates to the plugins, etc. People tend to add more features and sometimes a plugin update can introduce a new performance bottleneck and it’s important to match that…

\n\n\n\n

Marcel:
Or changing the homepage, or you have a different hero section, you have something different in your homepage and you suddenly think it looks way better. I’m going to sell a lot more, and then it suddenly affects one of the key metrics, for example.

\n\n\n\n

Mike:
Yeah, exactly. If someone has hired a designer to implement something and you’re like, oh, this is beautiful, but the page has increased to five megabytes and all your metrics are way, way off, now aesthetically it might be better, but you’re going to end up losing money. In my experience, so I think having it in your workflow, whatever size company you are, to do some kind of testing to make sure that the performance is still good after you’ve made major changes or even minor ones. I think it’s important because people, business owners, will always check the money side of things and when they notice all of a sudden that conversion rates are down or have been trending downwards over a few months and they feel it in their wallet, that’s a very frustrating position to be in and it’s nicer to catch…

\n\n\n\n

Marcel:
And they usually probably think, oh, it’s something with my marketing or advertisement, or there’s something with the products or reviews and they usually don’t think it might be the performance part of the website that is damaging their sales.

\n\n\n\n

Mike:
Yeah, exactly.

\n\n\n\n

Marcel:
So regularly monitoring the site performance is our advice as a last piece of advice for today’s episode. New Relic, it doesn’t store information that much, but it is a tool that you can use to just analyze regularly your website’s performance. Google PageSpeed Insights is something that some of the hosting providers have embedded in their system and some of them can also give you some notifications if you reach certain values that are not recommended. And I think GTmetrix, I’m not sure, is the one that you can also buy a subscription and have it regularly measure and analyze your website and send you insights to your inbox for you to be aware of…

\n\n\n\n

Mike:
Yeah, GTmetrix actually even lets you, if you pay them a subscription, you can have it alert you if certain metrics have exceeded. If you say, I don’t want LCP larger than 2.5 for your product category page or whatever, it will actually send you an email and alert. And that goes back to the proactivity aspect, right? Where it’s better to find that out and do something about it immediately rather than finding out three months later. And revenue is down, morale…

\n\n\n\n

Marcel:
And it also provides actionable recommendations as well. All right, so we talked about a bunch of stuff today. CDN, database optimization, image optimization, lazy loading, plugins, themes, performance key metrics, all of that could be potentially a bunch of other episodes that we’ll talk about. And actually it would be cool to bring somebody else as a guest to talk specifically about some of these key aspects. As a last recommendation, I think we can also talk about the PerfNow conference that happens in November in Amsterdam. You’ve been going to the conference before and you’ve recommended that conference to me last year and I went there last year with you. And

\n\n\n\n

although within WordPress and WooCommerce we’re only used to go to the WordCamps and the different versions of those, PerfNow has… I haven’t seen the word WordPress ever in their website, but it has so much to do with our work and it has so much to do with the development work we do for WordPress. So I definitely recommend people checking out PerfNow. It happens in Amsterdam in November, it’s a conference that is not as big as any WordCamp, Europe or US or Asia that we’ve seen. And you get out of there with the will to just go back to your clients and say, hey, I’m going to make your website a lot faster now because I understand performance there. Would you recommend PerfNow as well?

\n\n\n\n

Mike:
Oh, absolutely. The people who build the tools that we use and they’re pioneers of front-end performance and are sharing these incredible stories, a lot of them work for big companies and they give you real case studies where we’re talking millions of dollars at stake from making certain changes. And it always reinvigorates me every time I go where I’m like, oh, I need to build this now and we’re going to introduce this to clients and make everything better for them. If you’re a real performance enthusiast and love this stuff. I haven’t found a conference that’s more exhilarating than PerfNow and the people are super friendly. The vibe is really, really cool there. When we were there last…

\n\n\n\n

Marcel:
And just being able to talk to the people who built all of these tools, they actually have something to say about what’s coming next and give advice on the evolution of all of this. So it seems also like you go to that conference and you’re in the future for the next one or two years and see what’s going to happen, what’s important. And the fact that you as a developer can offer that to the client and make money out of it and sort of turn yourself into their magician and do stuff that nobody else can do, that is super important.

\n\n\n\n

Mike:
Yeah. It sets you apart for sure.

\n\n\n\n

Marcel:
All right, this is it for our episode. Thank you so much for listening in and I hope to meet you guys in the next one.

\n
\n\n\n\n\n

In this episode of Woo DevChat, Marcel and Mike explore the critical importance of website performance for WooCommerce stores. They discuss key factors such as hosting quality, theme selection, plugin management, and caching techniques, offering practical advice for optimizing site speed and user experience.

\n\n\n\n

The conversation also highlights the significance of core web vitals and the tools available for diagnosing and maintaining website performance.

\n\n\n\n

Takeaways

\n\n\n\n

Importance of Website Performance: Fast website speed is crucial for first impressions, user satisfaction, and conversion rates. It directly impacts SEO and profitability.

\n\n\n\n

Hosting Quality: Choosing the right hosting provider with adequate resources, good data centers in the target region, and features like CDN integration and application performance monitoring is foundational for optimal website performance.

\n\n\n\n

Theme Selection: Custom themes often outperform commercial themes in terms of speed and performance. It’s essential to control the scripts and features loaded to maintain a fast and efficient site.

\n\n\n\n

Plugin Management: Limit the number of plugins and ensure the ones you use are high-quality and necessary. Multiple plugins performing the same function can slow down the site.

\n\n\n\n

Caching Techniques: Implementing effective caching strategies, including page caching, object caching, and browser caching, can significantly improve website speed.

\n\n\n\n

Core Web Vitals: Regularly monitor key metrics such as Largest Contentful Paint (LCP), Time to First Byte (TTFB), and Interaction to Next Paint (INP) to ensure optimal performance.

\n\n\n\n

Perceived Performance: Techniques like lazy loading and preloading critical resources can enhance the perceived speed of the website, improving the user experience.

\n\n\n\n

Regular Performance Monitoring: Continuously track and test website performance using tools like Google PageSpeed Insights, GTmetrix, and WebPageTest to maintain and improve site speed over time.

\n\n\n\n

Expert Insights: Consulting with professionals and attending conferences like PerfNow can provide valuable insights and strategies for maintaining a high-performing WooCommerce store.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jul 2024 08:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Matt: 6.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=117442\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://ma.tt/2024/07/6-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:643:\"

A nice new WordPress 6.6 is out, our 50th release, on the same day people are getting hit with huge bills from Webflow. I really enjoy working in Open Source. There is no more customer-centric license. There’s some really fun stuff cooking, too, I can’t wait to show y’all.

\n\n\n\n

50 releases… wow. No matter what happens in the world, we’re just going to keep cranking. Three times a year. Relentlessly. A little better each time. Don’t believe me, just watch.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jul 2024 06:36:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.org blog: WordPress 6.6 “Dorsey”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17517\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2024/07/dorsey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56905:\"\"\"\n\n\n\n

Say hello to WordPress 6.6 “Dorsey,” named after the legendary American Big Band leader, Tommy Dorsey. Renowned for his smooth-toned trombone and compositions, Dorsey’s music captivated audiences with its emotional depth and vibrant energy.

\n\n\n\n

Let your heart swing, sing, and sway to the deep brass notes of Dorsey’s Big Band sound as you explore the new features and enhancements of WordPress 6.6.

\n\n\n\n

Hello, 6.6!

\n\n\n\n

WordPress 6.6 delivers on the promise of a better web by bringing style, finesse, and a suite of creative possibilities to your site-building experience. This version helps you do more with ease, putting enhanced tools at your fingertips and giving you unprecedented power behind the scenes. You will find more ways to create beautiful, coherent design elements across your site, a new layout for quick page previews in the Site Editor, and the safety of automatic rollbacks for failed plugin auto-updates—among many other highlights.

\n\n\n\n

In addition to the new features, “Dorsey” continues to deliver the performance and accessibility gains you can expect from every WordPress release. Explore what WordPress 6.6 has to offer and get ready to let its features take your sites to new heights.

\n\n\n\n\n\n\n\n

What’s inside

\n\n\n\n

Add more design options to block themes

\n\n\n\n

Create color or font sets to multiply design combinations across one theme. These sets offer more contained design possibilities, allowing visual variety within the site’s broader styling guidelines.

\n\n\n\n\"\"\n\n\n\n

Simplify your workflow with a new layout for pages in the Site Editor

\n\n\n\n

See all of your pages and a preview of any selected page with the new side-by-side layout in the Site Editor.

\n\n\n\n\"\"\n\n\n\n

Auto-update your plugins with peace of mind

\n\n\n\n

Enjoy the convenience of plugin auto-updates with the safety of rollbacks if anything goes wrong—offering your site a new level of security, enhanced functionality as it becomes available, and almost no time or bandwidth from you to make it happen.

\n\n\n\n\"\"\n\n\n\n

Customize content in synced patterns

\n\n\n\n

Make content changes in each instance of a synced pattern while maintaining a consistent style across them. Set these overrides for Heading, Paragraph, Button, and Image blocks when placed in a synced pattern.

\n\n\n\n\"\"\n\n\n\n

Performance

\n\n\n\n

WordPress 6.6 features important updates like removing redundant WP_Theme_JSON calls, disabling autoload for large options, and eliminating unnecessary polyfill dependencies. Other highlights include lazy-loading post embeds, a new data-wp-on-async directive, and templates in the editor that load approximately 35% faster overall.

\n\n\n\n

Accessibility

\n\n\n\n

This release includes 58 accessibility fixes and enhancements. These focus on foundational aspects of the WordPress experience, particularly the data views component powering the new site editing experience and areas like the Inserter, which provide a key way of interacting with blocks and patterns.

\n\n\n\n

And much more

\n\n\n\n

Visit the feature showcase for a full overview of all the new features and enhancements in WordPress 6.6.

\n\n\n\n\n\n\n\n

Learn more about WordPress 6.6

\n\n\n\n

Explore Learn WordPress for quick how-to videos, online workshops, and other free resources to level up your WordPress knowledge and skills.

\n\n\n\n

The WordPress 6.6 Field Guide contains detailed technical information and developer notes to help you build with WordPress and get the most out of this release. Don’t forget to subscribe to the Developer Blog for updates, tutorials, and other helpful WordPress content for developers.

\n\n\n\n

For information about installation, file changes, fixes, and other updates, read the 6.6 release notes.

\n\n\n\n

The 6.6 release squad

\n\n\n\n

Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.6 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.

\n\n\n\n\n\n\n\n

Thank you, contributors

\n\n\n\n

The mission of WordPress is to democratize publishing and embody the freedoms that come with open source. A global and diverse community of people collaborating to strengthen the software supports this effort.

\n\n\n\n

WordPress 6.6 reflects the tireless efforts and passion of more than 630 contributors in at least 51 countries. This release also welcomed over 150 first-time contributors!

\n\n\n\n

Their collaboration delivered more than 1,900 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.

\n\n\n\n

!Benni · 1naveengiri · Aaron Jorbin · Aaron Robertshaw · aatanasov · abditsori · Abha Thakor · abhi3315 · Abhijit Rakas · abitofmind · Adam Harley (Kawauso) · Adam Silverstein · Adel Tahri · adrianduffell · Aezaz Shekh · Ahmed Kabir Chaion · ajfleming · Ajit Bohra · Akash Dhawade · Aki Hamano · Akira Tachibana · akmelias · Alan Fuller · Albert Juhé Lluveras · alesflex · Alex Concha · Alex Kozack · Alex Lende · Alex Stine · Alexandre Buffet · alexminza · allilevine · Alvaro Gómez · amanias1977 · Amber Hinds · Amir Abbas · amisiewicz · Amit Raj · Anamarija Papić · Anders Norén · Andre Ribeiro · Andrea Fercia · Andrea Roenning · Andrei Draganescu · Andrei Lupu · Andrew Hayward · Andrew Hutchings · Andrew Nacin · Andrew Ozz · Andrew Serong · André Maneiro · Andy Fragen · Aneesh Devasthale · Angela Jin · Anil Vaza · Ankit K Gupta · Ankit Panchal · Anne McCarthy · Anthony Burchell · Anton Vlasenko · Ari Stathopoulos · Artemio Morales · Arthur Chu · Artur Piszek · Arun Sharma · Arunas Liuiza · Ashesh Magar · Asiqur Rahman · Asish Chandra Mohon · Aslam Doctor · asmittle · Aurooba Ahmed · Ayesh Karunaratne · Balu B · bangank36 · Bart Kalisz · Beatriz Fialho · Beau Lebens · Ben Dwyer · Ben Keith · Ben Ritner - Kadence WP · Benjamin Pick · Benjamin Zekavica · benjpw · bernhard-reiter · Birgit Pauli-Haack · bissy · Bjarne Oldrup · Blackbam · Blockify · bnewboldbsky · Brad Jorsch · Brennan Goewert · Brian Alexander · Brian Coords · Brian Gardner · Brian Gosnell · Brian Haas · Bridget Willard · Brooke · Bruno Freiberger Garcia · burnuser · Caleb Burks · Candy · Carlos Bravo · Carlos G. P. · Carolina Nymark · cbirdsong · Chad Chadbourne · Charlie Merland · Chloe Bringmann · Chouby · Chris Reynolds · chrisdotdotdot · Christopher · Colin Stewart · ColinD · colle · comecaramelos · Constantine Vasilyev · CookiesForDevo · Corey McKrill · Craig Francis · crazytonyli · Cullen Whitmore · Curdin Krummenacher · cyrus11 · Dale du Preez · Damon Cook · Damon Cook · Dan Soschin · Dani Guardiola · Daniel Richards · darerodz · Darren Ethier (nerrad) · Darshit Rajyaguru · dav4 · Dave Page · David · David A. Kennedy · David Baumwald · David Biňovec · David Bowman · David Calhoun · David Herrera · David Jensen · David Levine · David Rozando · David Smith · davideferre · De\'Yonté W. · Dean Sas · Deep Patel · Deepak Vijayan · Denis Žoljom · Dennis Snell · Derek Blank · Devin Curtis · Dharmesh Patel · Dhrumil Kumbhani · Dhruval Shah · dhruvang21 · dhruvkb · DiedeExterkate · Dilip Bheda · Dion Hulse · DJ · DjZoNe · Dominik Schilling · Drew Jaynes · drrxbracho · Earle Davies · Elena Brescacin · Ella van Durpe · Emmanuel Hesry · Enej Bajgorić · Eneko Garrido · enodekciw · Enrico Battocchi · Enrico Sorcinelli · Erik · Estela Rueda · evanltd · Fabian Kägy · Fabian Todt · Faisal Alvi · Fanly · Farhan Ahmed · Felix Arntz · Flavia Bernárdez Rodríguez · Florian TIAR · Franz Josef Kaiser · Gabor Lippert · Gal Baras · Garth Mortensen · Gary Jones · George Mamadashvili · George Stephanis · Gerardo Pacheco · Glen Davies · Glenn Ansley · Grant M. Kinney · Greg Ziółkowski · Guido Scialfa · Héctor Prieto · hakre · hanneslsm · Hans-Gerd Gerhards · Harit Panchal · Harsh Gajipara · Haz · heinvv · HelgaTheViking · Hinnerk Altenburg · Hit Bhalodia · Hitendra Chopda · humanify · huubl · Huzaifa Al Mesbah · Ian Belanger · ignatiusjeroe · Imran · inwerpsel · Ipstenu (Mika Epstein) · Isabel Brison · IT Path Solutions · ivanottinger · Jaap Weijland · Jack Stevens · jaclync · James Koster · James Wesley Goedert · Jamie Speller · Jan Boddez · Jansen Tolle · janthiel · Jarda Snajdr · Jarek Mazurczak · Jaroslav \"Dero\" Polakovic · Jason Adams · Jason Crist · Jason Johnston · Jason LeMahieu (MadtownLems) · Javier Casares · jayanthparthsarathy · jdekhtiar · Jean-Baptiste Audras · Jeff Chi · Jeff Ong · Jeffrey Paul · jeflopo · Jenny Dupuy · Jeremy Felt · Jeremy Herve · Jeremy Pry · Jerry Jones · Jesús Amieiro · Jess · Jessica Lyschik · jhned · Jigar Bhanushali · Jip Moors · JiveDig · Joe Dolson · Joe McGill · Joen Asmussen · Johannes Jülg · John Blackbourn · John Espiritu · John Godley · John Hooks · John James Jacoby · Jon Surrell · jon092 · Jonathan · Jonathan Bossenger · Jonathan Desrosiers · Joni Erkkilä · Jonny Harris · jordesign · Jorge Costa · Jose Varghese · Josep Morán · Joseph Scott · Joshua Goode · Jossnaz · Juan Aldasoro · JuanMa Garrido · jules · Julie Moynat · Juliette Reinders Folmer · Julio Potier · Justin Tadlock · justnorris · Jyolsna J E · K. Adam White · KafleG · Kai Hao · Kajal Gohel · kamran8176 · Kapil Paul · Karlijn Bok · Karol Manijak · Karthik Thayyil · Kathryn Presner · Kellen Mace · Kelly Choyce-Dwan · keoshi · Kevin Hoffman · Khokan Sardar · killua99 · Kira Schroder · kitchin · Kite · Kjell Reigstad · kkmuffme · kmvan · Konstantin Kovshenin · kristastevens · kristenfisher427 · Krupa Nanda · Krupal Panchal · Kushang Tailor · kyleak · Lae · Lanre Smith · Lars Gersmann · Laura Byrne · laurelfulford · Lauren · Lauren Stein · Laurent Naudier · leemon · Lena Morita · Leonidas Milosis · Linkon Miyan · liviopv · Louis Wolmarans · Lovekesh Kumar · luboslives · Luigi Teschio · Luis · Luis Molina (interdevel) · luisherranz · Lyon Müller · Márcio Duarte · Madhu Dollu · Maggie Cabrera · Mai · Makdia Hussain · manfcarlo · Manoj Maharrshi · Marc · Marc Armengou · Marcelo de Moraes Serpa · Marco Ciampini · Marco Pereirinha · marherumr · Marie Comet · Marin Atanasov · Mario Santos · Marius L. J. · Mark Howells-Mead · Mark Jaquith · Mark Szymanski · Mark Uraine · Martijn van der Klis · Mary Baum · Mat Lipe · Mathieu Viet · Matias Benedetto · Matias Ventura · Matt Cromwell · Matt Medeiros · Matt Mullenweg · Matt Sherman · Md Abul Bashar · Md Sahadat Husain · Md Tofajjal Hossen · MD.NESAR MRIDHA · Meet Makadia · Meet Mehta · megane9988 · Meher Bala · Michael James Ilett · Michal Czaplinski · Miguel Fonseca · miguelsansegundo · Mihai Joldis · Miikka · Mikael Korpela · Mike Henderson · Mike McAlister · Mikey Binns · Minal Diwan · Miriam Schwab · miya · mkismy · Mohit Dadhich · Monzur Alam · Morais Junior · mrwweb · Muhibul Haque · mujuonly · Mukesh Panchal · Musannif Zahir · Mustaque Ahmed · myhro · mykolashlyakhtun · Mykyta Synelnikov · Nadir Seghir · Naeem Haque · Namith Jawahar · Narendra Sishodiya · Naresh Bheda · Nate Gay · Nazmul Hasan Robin · Nazmul Hosen · Nick Diego · nicmare · Nico · Nicolas Tatarchenko · Nicole Furlan · Nicole Paschen Caylor · nicomollet · nidhidhandhukiya · Niels Lange · Nihar Ranjan Das · Nik Tsekouras · Nilo Velez · Nirav Sherasiya · Nithin John · Nithin SreeRaj · nkeller15 · nosilver4u · obliviousharmony · Ohia ᚛ᚈᚐᚂᚐᚋᚆ᚜ · okat · Old account · Olga Gleckler · Oliver Campion · Oliver Schmid · OllieJones · Omar Alshaker · Paal Joachim Romdahl · Pablo Honey · Paolo L. Scala · Pascal Birchler · Patricia BT · Paul Bearne · Paul de Wouters · Paul Kevan · Paul Wilde · Pavan Patil · pavelevap · Pedro Mendonça · peiche · Per Søderlind · perryrylance · Peter Rubin · Peter Wilson · petitphp · Phi Phan · Pieterjan Deneys · Pinar · Pitam Dey · pkuliga · Pooja N Muchandikar · povilasstaskus · Praful Patel · Pranit Dugad · Prasad Karmalkar · Prashant Baldha · Pratik Londhe · Prem Tiwari · Presskopp · presstoke · printsachen1 · Priyanshii Vijayvargiya · Prottoy Sarkar Argho · QuietNoise · Rachel Baker · Rafael Galani · Rafał Całka · Rajan Lama · Rajin Sharwar · Ramon Ahnert · Ramon Corrales · Ramon James · Ravikumar Patel · Ravinder Kumar · Rejaul Alom Khan · Remkus de Vries · Remy Perona · renishsurani · retrofox · Riad Benguella · Rich Collier · Rich Tabor · Richard Korthuis · richardevs · Rishi Mehta · Robert Anderson · Robert Ghetau · Robin Cornett · rodionov201 · Rodrigo Arias · Rodrigo Primo · Roger · Rolf Siebers · Roy Tanck · Ryan McCue · Ryan Urban · Ryan Welcher · Sébastien SERRE · Sérgio Gomes · Sören Wünsch · s0what · Sagar Prajapati · sahilthakur02 · Sakib Mohammed · Sal Ferrarello · Sam Berry · Sam Brockway · samiamnot · Sampat Viral · Samuel Rüegger · Samuel Sidler · Sanne van der Meulen · Sarah Norris · Sarkar Ripon · Sascha Metz · Saulius Vikerta · Saxon Fletcher · Saxon Fletcher · scribu · script2see · Sean Fisher · Sergey Biryukov · Seth Miller · Seth Rubenstein · Shail Mehta · Shalin Shah · Shannon Smith · shaunandrews · sheulyshila · Shital Marakana · Shiva Poudel · Shiva Shanker Bhatta · Shreyash Srivastava · Shubham Kumar Bansal · Shuvo Mohajan · Siddharth Thevaril · siliconforks · Simone Maranzana · Siobhan · sirzooro · SJNBham · Sneha Patil · Spencer Finnell · Stefano Minoia · Stephen Bernhardt · Stephen Brook · Stephen Edgar · stephenmiracle · Steve Jones · steveblum · strangehill · strarsis · Sudip Dadhaniya · Sumit Bagthariya · Sumit Singh · SunilPrajapati · Suwash · syamraj24 · Sybre Waaijer · Syed Balkhi · Tahmid ul Karim · Takashi Irie · Takashi Kitajima · Tammie Lister · Taylor Gorman · Terence Eden · Teresa Gobble · Thakor Darshil · thelmachido a11n · Thijs · Thirumani Guhan · Thomas Kräftner · Till Krüss · Tim Brathärig · Tim Nicholson · Tim Nolte · Timo Tijhof · Timothy Jacobs · tmatsuur · TobiasBg · tobifjellner (Tor-Bjorn Fjellner) · Tom Cafferkey · Tomek · tomepajk · Tomoki Shimomura · tomxygen · Toni Viemerö · Tony G · Tonya Mork · Toro_Unit (Hiroshi Urabe) · Torsten Landsiedel · Trupti Kanzariya · tunetheweb · twstokes · tybor · Ugyen Dorji · Umesh Gupta · up1512001 · Vicente Canales · Viktor Szépe · Vinit · Vinita Tandulkar · Vipul Gupta · Vishal Kothari · vivekawsm · WebMan Design | Oliver Juhas · websitegenii · wesatintellitonic · Weston Ruter · whaze · Will Skora · William Earnhardt · WilliamG · Wojtek Naruniec · Yagnik Sangani · yankiara · Yann · Yannis Guyon · Yui · Yukinobu Asakawa · Yuvrajsinh Sisodiya · Zack Krida · Zafar Kamal · zieladam · zkarj · Zunaid Amin

\n\n\n\n

More than 60 locales have translated 90 percent or more of WordPress 6.6 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.

\n\n\n\n

Last but not least, thanks to the volunteers who contribute to the support forums by answering questions from WordPress users worldwide.

\n\n\n\n

Get involved

\n\n\n\n

Participation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to Make WordPress and use this interactive tool to help you decide which is right for you.

\n\n\n\n

6.6 haiku

\n\n\n\n

Six-point-six is here.
Make it all gorgeous; keep it
On brand, and relax.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jul 2024 16:51:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: Open SaaS, WooCommerce and Enterprise with Nate Stewart\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84670\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://dothewoo.io/open-saas-woocommerce-and-enterprise/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44403:\"
\n

This show is sponsored by…

\n\n\n\n
\n
\n
\n
\n
\n\"\"\n
\n
\n
\n\n\n\n
\n

Cloudways: Managed cloud hosting from Cloudways gives you the assurance that your hosted site is fast, secure and backed by 24/7 support is important to you.

\n
\n
\n
\n
\n\n\n\nEpisode Transcript\n
\n

Jonathan:
Welcome to another episode of Do the Woo. I’m your co-host, Jonathan Wold, and with me today is your other co-host, Tammie Lister. Tammie, how are you?

\n\n\n\n

Tammie:
I’m good, thank you. How are you?

\n\n\n\n

Jonathan:
I am excellent. Excited to be doing the Woo once again. We are joined today by Nate Stewart. He is the VP of Platform Strategy at BigCommerce. Nate, welcome.

\n\n\n\n

Nate:
Hi. Happy to be here.

\n\n\n\n

Jonathan:
And where in the world are you joining us from today?

\n\n\n\n

Nate:
In Puerto Rico.

\n\n\n\n

Jonathan:
How is the climate in Puerto Rico this time of year?

\n\n\n\n

Nate:
It’s great. You know, we just had a hurricane pass through and push a little bit of the humidity out. Now it’s back to normal, everything’s fine here. Other than that, it’s nice and beautiful.

\n\n\n\n

Jonathan:
Excellent. So Nate, you are not a stranger to the show. It’s just over four years ago, episode 64, you were a guest on Do the Woo. A lot has happened since. What are you working on at BigCommerce these days?

\n\n\n\n

Nate:
I’m working on, believe it or not, some of the same things we talked about, just in more elevated forms. Like, I think a lot of what we talked about last time was more of an ambition to support openness and bring open into the core of BigCommerce. Around that time, we talked a lot about how we’re open SaaS, like we want to be the open SaaS commerce platform, the leader. And that was more of a future-focused vision of where we wanted to sit in the market, what we wanted to support. Now, a lot of that is reality. We’ve invested multiple years into making that true and that changes a lot, I think, in a good way, of how we work with the WordPress ecosystem, how we work with pretty much everybody’s way of working. We want to feel like you enjoy and love and cherish a lot of different platforms and technologies and ways of working. And we want to be the platform that makes you feel at home because we trust that you have good taste and you like what you like because it has value. So yeah, all that has kind of become true. I’m really just making sure we get the most value ourselves and everyone else with that strategy.

\n\n\n\n

Jonathan:
I recall. It’s been great to watch over the years too, that you were talking about that then and there were some hints of it, but BigCommerce’s public position, because you’re of course a public company, that’s a whole other game to be talking publicly about this open SaaS strategy. It takes time to carry this out. So it’s interesting to see that it’s like we had that four years ago, you were talking about it. Now you have a lot more evidence that you can point to. Your investment in the WordPress ecosystem is how many, like, is it five plus years now that you’ve been in this space? Before we had you on the show, you’d already been at it for a while.

\n\n\n\n

Nate:
Yeah, I think definitely in terms of when the first couple of WordCamps, big and small, we were doing research and meeting the community. That was like six, seven years ago. It took some time to build the plugin, but a lot of that was just coming from, at the time, we had hundreds and hundreds of merchants that already had WordPress running alongside their BigCommerce store. It was like, wait a minute, where does this data take us if we keep going? So that led us into the community. And then, I mean, myself, I kind of fell in love with just how it felt almost like what it felt like as I learned the web and grew into the person I am. I was like, oh, this feels true to who I am as well. And I think that’s just part of why I really fight to stick in any ecosystem where there’s that truth there and that it resonates with people. It’s not just a bunch of corporate marketing. There’s value beyond it. So yeah, that’s like six, seven years ago. It feels like a totally different world than six, seven years ago. But a lot of what stayed the same is kind of what I’m talking about, you know, at work and in the communities I’m focused on.

\n\n\n\n

Jonathan:
This is a WooCommerce-focused podcast, right? And one of the things that I’ve liked about BigCommerce from the beginning is that you didn’t have this anti-WooCommerce stance, but perception and reality are two different things. And I think early on, a lot of folks, like you had a product, your first plugin, for instance, was focused on more of this small business use case where BigCommerce… Well, let’s start with this. How do you think about the WooCommerce ecosystem? Because you have competitors in the space. You compete with Shopify and other proprietary platforms, but with this open SaaS strategy, how is it that you think about WooCommerce?

\n\n\n\n

Nate:
Yeah, I think about it as a major part of the journey for decision merchants looking to easily make their vision a reality. You don’t start by coming onto a platform like BigCommerce and using every feature. You start many times with your marketing presence, with what you know. Some people are already blogging in WordPress and want to create a business, and it makes perfect sense to start there. So Woo is the first place that I feel most people should look because it’s so well supported. It’s just the default for that space. But then it’s a journey, right? So at which part of the journey does either WordPress or WooCommerce hit a little bit of a snag, where at that point you’re like, wait a minute, I need to get out of WordPress, get out of Woo. I don’t think that’s a positive decision. It shouldn’t be binary. It should be, hey, what part is it working and how do you retain everything you put into it and add on for the next level of your growth? That’s kind of the way I feel about Woo. I have a lot of respect for Woo. I feel a lot of really smart agencies and developers are creating really cool experiences in Woo. I like seeing that. I like seeing innovation in the space because it’s open source, you can do that.

\n\n\n\n

Jonathan:
And I think the key for me lies in that open SaaS strategy because we’re no strangers to proprietary platforms that work within our space, like Jetpack and other products like it are proprietary and there’s the SaaS component, but they’re all in on the WordPress ecosystem. Whereas other platforms, like Shopify, it’s zero-sum, right? They want everything there. It’s like you’re choosing Shopify, you’re also doing the CMS and everything. And that’s what stood out to me the most about the approach you guys have taken, embracing the choice. You want to use WordPress, you want to use WooCommerce, that’s fantastic. We’re here to support you. What’s made it clearer, and you tell me Nate, is, as the years have gone on, your emphasis on the enterprise has made a lot more straightforward. Whereas early on, it was more of an overlay because you started out as a small business-focused platform. That enterprise shift has taken a number of years to get to this point.

\n\n\n\n

Nate:
Yeah, I mean, I believe we’re on the 15th year of BigCommerce being the name of the company. The backstory is a couple of years before that it was actually like you got the code and you ran it yourself back in the day. And it evolved into a SaaS platform, right? That was because early days, e-comm, it was much harder to scale and support by, you know, much greater, like, let’s say 10X. I don’t know the exact thing, but it just, you wanted, people were reaching out, going, I love this, but I want it hosted for me. And now hosting and other tech has made it to where it’s less of a, it’s more fuzzy between open and SaaS. And I think it’s part of our journey. So we went from the code to SaaS. It was SMB only because in the beginning, e-comm days, we didn’t have all the advanced features we have now. You built a cart, you built a catalog, you built all those pieces. But over the years, you get to where the people that need the most help with their architecture and functionality, they need way more complex features. You naturally get into mid-market and then enterprise. So we’ve kind of been on that journey, and because we’ve invested in the open strategy a while ago, it bodes well for enterprise, really well. Typically, that’s what you see in any software platform landscape. The more enterprise, the more APIs they have, the more ecosystem. Whether you want to get locked into, I would almost say, closed suite versus open suite, you see a lot of those strategies in different ways play out. We are more of the open suite, you know, we want to make it easy to package. And that includes you want to use WordPress and you want to use WooCommerce in a different part of our product catalog, if you will, like our suite. We want to open up pathways to that for the enterprise, and even before that to where it’s not a binary decision. It’s what’s best for you as you are growing.

\n\n\n\n

Jonathan:
And I think a good example of that to me, and we can touch on it more later, is you have products that people don’t know about, like Feedonomics, that have WooCommerce support built into it. It’s a product that’s focused on your product feeds out to various endpoints. And you could use WooCommerce in that. It’s a BigCommerce

\n\n\n\n

product. The last question I have for you on this topic before we switch gears: WooCommerce has a mission to democratize commerce, which is connected to the WordPress mission to democratize publishing, right? I’d love to hear your thoughts on what role you see BigCommerce playing in supporting that mission. How do you think about that mission?

\n\n\n\n

Nate:
Yeah, one that kind of echoes six, seven years ago when I was kind of indoctrinated in the community, the whole 51% I think is maybe the clearest way we help to get to 51% of the web, which much of that is commerce. When you actually look at the longstanding site, I think right now what happens, the trend I’ve seen is when you start in WordPress, you layer on WooCommerce, and then when you hit that decision point of, well, maybe it’s not as fast as I wanted, or it’s getting complex for the different plugins and the agencies I’m working with are quoting that I should migrate off to something else. It’s at that point where if we make it easier to just uplevel the pieces of your WordPress stack to keep you on WordPress as you evolve, then both WordPress and many times Woo benefit from that. That’s how you get to the 51% and more. You find those strategies in the WordPress community where there are partners like us that go, hey, let’s keep that stat. Let’s keep building it together. I want to see a world where WordPress goes beyond 51% and we are a part of that journey and celebrating together, knowing that we’re talking about a journey here, not a one-off decision you make when you have a new problem.

\n\n\n\n

Tammie:
I’d really like to move us from that. You mentioned the toolkit, the suite, and we looked at how we have this kind of blue. I want to consider the space for commerce and builders. You mentioned this suite. What has been the most exciting thing to explore and experiment with product-wise lately? You mentioned layers and complexities, but what does that feel like building in, and how have you been exploring and building in that? What have you been exploring and building in that even? That’s a big question.

\n\n\n\n

Nate:
Yeah. One of the things that I mentioned earlier, we had hundreds of merchants back in the day, which led us in the direction that were using WordPress on the side, meaning they had their site and then a shop dot. Now because of the plugin, but also because of things like headless and composability, it’s more nuanced than that. And now with the Gutenberg editor, it’s been this way for a while. You have blocks and whatnot. You can go, wait, if you already have your marketing site up there and you want to layer on commerce and you’re already closer to the mid-market enterprise, right? Because you maybe have a big B2B business and you’re going to B2C. So you’re already at scale with complexity. Well, I’ve been plugging with a team a little bit around how would we integrate Gutenberg and existing stuff that you have, you made a decision like your theme and your blocks, into our open-source storefront framework that we built called Catalyst. That way, you get to retain what you built on WordPress and via the Gutenberg kind of standard blocks. So to me, one of the interesting things here is how, and this is an area I’d like to work more with people to solve. Blocks are almost there. The API, it feels in any like the WP GraphQL and REST, you can get to the point where it feels like it should work 100%, but you run into issues in actual live implementations where, okay, there’s not really a standard where you can go from WordPress React into static or into now with like Next.js and the newest app router, React server components, how you transition from, I get this block, it’s a form plugin, I have this type of React running on my headless instance. How do I make it work to where on the front end of the editor it works and then WordPress? I want that to look and feel the same way. That actually gets very complex very quickly. And I think whoever works in solving that problem where we can get there together will radically improve how people are using Gutenberg, how we work through these migration strategies that don’t push you off of WordPress and off of Woo, but go, hey, this block works well for you here, this block is not performant, should we go headless? Should we just replace that block? Anyway, I’ve been plugging away with the team about that, working with several different agencies in this space to go, what’s your opinion? And yeah, there’s a lot there. I think Gutenberg is really cool, and personally, even on the weekend I’m hacking around occasionally, you might see me going like, what’s the new thing? But it’s funny how, I mean, it’s been years since it was released and some of those pain points are still there, right? We have to ask ourselves why. If they’re migrating out because we don’t know how to use blocks, that’s not even a core commerce thing. That’s just in general, I think that more could be done there.

\n\n\n\n

Tammie:
I like how you’re kind of touching on it by what you are saying, which is you never, you don’t find those, I always call them stress cases, not edge cases because they cause you stress when you hit them rather than them being edge cases because they might only be for one person, but it could be really important that that one person hits them by the experimentation. So I think one of the answers, and it’s one of many, is people haven’t maybe explored some of these combinations. So that’s what really, for me personally, and I think a lot of people, is curious about these experiments that you’re doing. But I’d love, in what you’ve been creating in your own experiments, how have you discovered this to be uniquely different to building this space? Because it is a little bit uniquely different, these stacks, like you’ve shared about the complexities and the layers, but it kind of is shifting sands a little bit in places. What are some of the other differences that you’ve thought about as you are creating these spaces?

\n\n\n\n

Nate:
I think one that, again, this is more of a background thought the whole time. One decision we made early on was to do it 100% the WordPress way. And we, everything being in the community and the research and all the agencies and builders we talked to, they’re like, there’s the WordPress way, you build the template, it’s PHP, all of that. Gutenberg was happening as that. But no one really, it’s almost like people didn’t want it to succeed. It was a very weird feeling, but we got over that hump overall as a community. But during that early, you’re talking like six years ago plus, that WordPress way kind of limited us in terms of what Gutenberg was really trying to accomplish, which is being more modular, being more JavaScript-forward, React-forward. So now I have this, again, it’s a background thought of instead of, you know, the plugin being like the WordPress way templates, being more components by default, it’s really just React as the page loads reading out from an API. And yes, there’s a downside to, you know, you don’t have things in the table in the options table and other aspects. There’s maybe a loading artifact a little bit there where the page loads and then it reads the data. But the benefit is you are fully compatible with the static hosting trend that’s happening in the WordPress space and overall web development in general. It actually forces you to polish your API on your other end a lot better, making sure that caching and just performance in general is better at the API level. So I feel as a platform that is integrating that mode makes your product better for everyone by integrating that way. So I’ve had that thought come up a lot. The downside is there’s effort there to change, and there’s also feedback from the community where there are millions of people that love the WordPress way. And there’s the thought there, and what does the WordPress way even mean anymore? I’ve had this thought of it, isn’t it Gutenberg? Isn’t it blocks? So yeah, all that.

\n\n\n\n

Tammie:
I think it’s fascinating that the WordPress way, maybe it should be adapting. Maybe the whole point about the WordPress way is that it isn’t a fixed way, and we maybe thought it was like chiseled, and it wasn’t chiseled. I think this is such a fascinating discussion. I want to skip back a couple of steps to something you were saying because you very clearly have an understanding of builders and you very clearly have an understanding both from your own tinkering, I love that word, and exploring. So that translates into what is being created. And I think that is incredibly important when you are creating these suites and trying to also create tools. Can you explain a little bit more how that translates into the products that you are offering as well? Because I think there’s something in there as well that we’ve been talking about and getting super excited about the API and the experiments. But how does that then translate into the products?

\n\n\n\n

Nate:
So I think we’re really in this multi-product territory now. You can’t be truly open if the only way to get value is to combine everything the same way every time. That’s not open. That becomes closed in general, like entering the walled garden. And so I think what we’ve evolved over the years is formally, we’ve made acquisitions as a company. You mentioned Feedonomics, they’re doing very well outside of the BC ecosystem as well as in. They actively support all of our competitors, all our commerce competitors. When you go to feedonomics.com, it’s very hard to find any mention of BigCommerce. It’s very much its own product offering. Because we’re underneath the same umbrella, we work under the same constraints of, okay, when we need to ship a

\n\n\n\n

feature and it’s using their technology, we build like a partner would, right? We don’t have internal things that are cheating. That helps everyone and helps us keep an honest open strategy. That’s why Woo fits into their strategy in a big way. They have many large WooCommerce customers and they have kept them on Woo and WordPress, and that’s okay because that product still grows their business. Let’s be honest, it’s easier to keep people happy if you don’t go into their house and say everything’s terrible. You can make comments, you know, they might not like the couch, but you don’t tell them to move. They like their community, right? Another example of this is Makeswift. They’re a recent acquisition, again, an independent company still like Feedonomics. They are a visual editor for Catalyst and our next-gen storefront. However, if you want to use Makeswift with WordPress, with WooCommerce, with any of our commerce competitors, they don’t become a competitor. If you like Makeswift, you’re not ready for BigCommerce, you’ve invested a lot in your current stack, that’s fine. There are interesting things with Makeswift because it is composable by nature. It is built from the ground up to support the latest in React and React server components, all that where Gutenberg is more of the default. It is React and the new way, but its APIs and all aren’t in the same ecosystem. You could technically use the Gutenberg API in the Makeswift visual editor and get the development flow you want while still retaining WordPress. It’s almost like WordPress as I know Jonathan you said in the past as the operating system. It has the API. There are all these interesting things that can happen when we’re multi-product. We’re not single platform where you buy it as a product. I think that’s one of the ways that we enable builders in a different way, and each of those separate products have different APIs and ways you can utilize them.

\n\n\n\n

Jonathan:
One of the big switches over the past couple of years has been this increasing emphasis on enterprise, right? That’s the transition that you’ve been making. Multi-product is a good example of how you carry out that promise. You’re giving flexibility, especially in the enterprise, where that flexibility matters. They may have policies for using this or that, or they want just a piece of it. That’s a good example. Let’s talk about enterprise more and start with this: how do you define enterprise? What is that definition within the BigCommerce context?

\n\n\n\n

Nate:
Yeah, for us, the way we define enterprise, it’s more like the size of their annual revenue, their employee count, it’s a blend, and they’re opting into being a part of our enterprise plan. It’s nuanced because typically you have a lot of platforms like products out there that are like, we’re enterprise or not. They come in and it’s like, okay, they have to be at a hundred million in annual revenue, they have to be XYZ. What we’ve found is you could have someone with a tremendous amount of revenue and they are very efficient because of the type of product they sell. There are DIYs and a lot of owner-operators, if you will. I believe there are a lot of those in the WordPress ecosystem. It’s known for that. People say, I’ll do it myself and I actually know how to code, design, and operate it. But that means why should they always pay the price for all the complexity of enterprise when they can handle a lot themselves? They might pay us a little bit less, where they’re not super enterprise, but they’re paying more in other ways that other people might not be able to pay, which means they’re putting in the blood, sweat, and tears to code and design themselves. But that persona, while they might appear more mid-market in terms of how they’re using it, they are an enterprise in revenue. We like to make it a real conversation with the brands we serve and everyone involved, where do you want the complexity to be? At the upper level, we handle a lot. Once you get to enterprise and you’re on an enterprise plan, we handhold a lot more, we’re a lot more with you building, helping you build, up to the point where you have dedicated people at certain levels of building your business. Some people might look at that and say, yeah, I know I’m generating a lot of revenue, but I don’t need that level. My personal opinion is everybody needs help and it’s going to make you sleep better at night when you have someone in your corner. But that openness goes into, well, let’s have a conversation. It’s a fuzzy line for mid-market and enterprise. High level, you’re talking like 50 million GMV, 25, around that territory, very clearly enterprise. It’s very rare for someone to opt out of that.

\n\n\n\n

Jonathan:
This is where I get excited, looking at this through the WooCommerce lens. One of the risks we’ve seen over the past couple of years is people grow in WooCommerce, they like WooCommerce, they like WordPress, and then they start to hit the edges. There have been some great agencies, many of them coming onto the show, who’ve pushed the edges of WooCommerce and have innovated and figured out ways to make it scale further. And there’s also this feeling like it wasn’t designed for that. It’s an SMB-focused tool. While there’s a lot of room for growth, one of the things I’ve been intrigued about and been hoping to see more of is what it looks like to bring that enterprise capability from other players into the WooCommerce space. I think Feedonomics is a good example of that and would love to hear more about how you think about that. How can we, in the WooCommerce space, more successfully bring in enterprise capability? My hypothesis is that we can’t do it by just changing the core product because we have millions of store owners that count on that SMB approach that WooCommerce has taken. That’s the question. Right now, when people hit a certain point on WooCommerce and start to feel the edges, I think there’s a churn risk where people feel like they just have to leave entirely. My hypothesis is that doesn’t have to be the case. That’s where I see this opportunity with partners like BigCommerce being able to augment. How do you think about that? What would that look like practically?

\n\n\n\n

Nate:
Practically, this is one case where being multi-product and having these independent companies that think about each ecosystem, they understand the APIs and aren’t filtering it through the BigCommerce lens. It means the Feedonomics team, the product knows how WooCommerce works, has a dedicated integration with them, and has been through this process day in and day out. Someone calls up going, hey, my sync, I have these plugins that are for my sales channels or advertising channels, and I’m getting to the point where it’s slowing down my site, or I don’t know how to support adding any more. I want to add five more channels. Keep in mind Feedonomics supports like 300 plus, maybe 400 plus, hundreds of sales channels. When things happen, like Target has a marketplace, you’ll hear our competitors make big announcements about it. But the reality is because Feedonomics is wholly dedicated to that, they’re working with Target and other marketplaces as the alpha of when they release functionality. There’s a huge benefit to going, all right, I don’t need to change WooCommerce at all. I’m already selling on sales channels. Let me get an easier-to-maintain site and way more sales channels. But again, you have to make that choice yourself, or an agency or developer working with a merchant. There is a cost, of course. It’s an open SaaS platform, but it is a SaaS platform. It’s a transition from a free plugin that I just have to pay someone to maintain or keep up with updates. It’s that cost transitioning to dollar cost, but you get the time back and peace of mind. It’s really that type of process. That’s why enterprise comes in. People coming in from, let’s say, they have half a million, a million in GMV, annual revenue, that’s probably not something that Feedonomics power is necessary for. You can just optimize Woo and the sales channels. But if you have questions like, I have 3 million in revenue, I’m growing faster than I can update, I have ideas and ambition to go into 10 more channels. Even if your site is working, if you can’t rapidly add 5, 10, 50 advertising, sales, and whatnot channels, and that’s your ambition, that’s when the right time is to talk. Again, it’s the journey. We talk a lot about the right journey and the merchant journey, having the right time, right place, rather than going, there’s one solution that fits everyone.

\n\n\n\n

Tammie:
I’m going to pivot towards the end and imagine we’re kind of dreaming a little bit. We spoke about the past four years, but it’s panning away from products. There’s so much going on in this space, so many emerging trends, technologies. Let’s think initially for commerce builders, what should you be keeping an eye on if you’re building in this space now and in the next year? Then we can kind of get a bit dreamy after that.

\n\n\n\n

Nate:
I’ve actually seen a lot of different podcasts and articles about this topic in this space recently. Static, and again, I talked about how does Gutenberg in the WordPress ecosystem play with that. Not static as just the end goal because why not? It’s fast and we should do it more. I think that will improve WordPress as a platform and other platforms integrating with it. If you think about the right separation of concerns and how the technology enables both approaches cleanly. As a builder, going, I’m building in a way that works for WordPress and its out-of-the-box state and WooCommerce’s out-of-the-box state. What happens next? Someone wants to go static, they want to use

\n\n\n\n

Next.js, what do you do? Is what you built cleanly able to support that? As we think about our architecture and design of APIs, supporting both is better for everyone. It’ll create more opportunity for you as a builder, better for the end user. They’re more likely to stay in the WordPress ecosystem with what they built before because it can be translated into what’s next. A lot of what I’m talking about, we think deeply about composability and it’s almost a part of everything strategically that we’ve worked on recently and will work on in the future because of that reason.

\n\n\n\n

Tammie:
I definitely align to that. All too often, before it was generally just like commerce, what does the front look like, and how do the transactions happen there? But now it’s kind of flipped in that sense. I’m going to flip that question though as well, segue. What buzzwords or tech should commerce creators avoid? Because I think there’s so much, as you were saying, there’s like podcasts and it can be really easy to be distracted or pile your feature set too high so that you then get problems. What makes your eye roll when you hear about someone adding and you’re like, you don’t need to add that, it’s not going to work, it’s not going to help someone?

\n\n\n\n

Nate:
Yeah, I definitely think my eye rolls a bit when it’s AI without purpose. I think that’s kind of a softball question because a lot of people might say that. But what I mean with AI without purpose is if you’re chasing a perceptual win where it’s like, hey, I can have a chat interface here or look, you could ask it to do a theme and it does it. I feel like that’s removing research and analysis and understanding of the user from it. That’s just trying to achieve an end goal. Almost like what I said about static, don’t do static just because you hear a podcast about static. Do it because you understand the value of being able to transfer from one type of architecture to another. That changes how you build your thing. AI that has a purpose, like, okay, we’ve researched exactly how people are using our themes or integrating different APIs and we have a focused use of AI that’s tailor-made to accomplish that task or series of tasks faster. That’s awesome. I see a lot of people just layering it on. Especially in business, a merchant layering on random AI chat stuff, is it better than ChatGPT? Are you just trying to get a brand for yourself as a builder? I’m not discounting, some people that’s great early in your career, write up something and create and be like, hey, look at me. I know how to hit APIs for AI. But the reality is, does it make someone’s life better? And if it’s just a cool toy but it doesn’t make it better. That’s the difference. I’m not saying I know the answer perfectly. I had to look in the mirror and eye roll myself if I’m heading down. But if we just layered AI on top of that, we’re all capable of running into that peril of all I need to do is layer x feature or tech and it will solve my entire business.

\n\n\n\n

Tammie:
I would plus one that so much. I think it is so easy to AI, is it a workflow or is it AI as well as also that thing? Does it get a hurdle? Okay, the last question I’m going to ask here though is kind of, it kind of segues the end of this. Four years from now, you come back on the podcast, what do you hope you have seen? It feels an inevitable one if we’re talking about the future to give my last question. If we’re talking about the future, I would say there are a million viewers or listeners of this podcast and you invite me back for some tropical villa special edition thing. I know that has nothing to do with technology. I’m just trying to put out some optimism and let the universe make it happen.

\n\n\n\n

Jonathan:
I think Bob’s been talking about that, starting to take the hosts and putting us up. I think we’re going to get there.

\n\n\n\n

Tammie:
Thank you, Bob. If you do it a year, Bob, I’d like some puppies if we’re doing that, that’s fine.

\n\n\n\n

Nate:
I am trying to think about four. I feel kind of echo back on being able to celebrate together, getting WordPress. I don’t want to say modernize WordPress because I think WordPress is, people don’t give enough credit for modernizing as it goes. I actually think a lot of people have learned from Gutenberg without admitting it in other ecosystems. Modernize is the wrong word. It’s more perceptual. I think switching what people feel in the community and an internal perception of, hey, we have modernized, we’ve been through the pain of bleeding edge, trying to learn this stuff and into the rest of the planet by default going, okay, WordPress is in your stack, that’s great for these areas. Having a real conversation around it. Leveling the playing field with headless CMS where a lot of people had for years been using WordPress as a headless CMS. We’re not talking about the full journey, it’s like, which way are you using it with other parts of technology to get the most out of WordPress, out of WooCommerce at that stage. If in four years we’re having real conversations around that and we’ve done the technology work, everyone is better. That’s how you get to over 51% and beyond. It almost becomes like we’re, it’s not like WordPress, it could be, and again, I’m ripping off Jonathan, the WordPress as an OS. You think about Windows, Mac, iOS, all those different things. It’s close there now, but these things have to be solved to know how you interoperate and have all the standards where it doesn’t have to be like every use case is in WordPress. WordPress has to win at every stage of the journey. It has to be where you can hook in and out and get the most out of WordPress. It almost becomes a utility like an operating system long term. In four years, that’s happening. There will be so many more people using WordPress actively that we probably will be on a tropical villa for that episode because there will be so many new ideas and innovation there. I hope to be a little bit part of that journey.

\n\n\n\n

Jonathan:
It’s interesting because we’ve been on this trajectory for a long time. Gutenberg, it is interesting to look back now. At the time, there was a lot of, I would argue that the work that Tammie and many others have done on that transition was in fact the WordPress way. What we see today with themes, we added all this complexity to themes in the WordPress space and now we’re getting back to how it was originally and things are getting simpler again. It takes a long time though. This vision of WordPress as an operating system for creating on the open web, I think we’re seeing it play out more and more. E-commerce is a great example of people building and saying, hey, I can create on the web, I want to add business into this context. I really appreciate the work that you guys have been doing at BigCommerce to recognize and be a part of that. That open SaaS strategy fits really well into that. What we see in the future is WordPress just being a ubiquitous part of a stack and a foundation that people can feel like, hey, I own this. It takes a long time though to catch up and bring that parity, features, and ways of doing things that builders need to be able to create confidently on it. Right now, it’s the people who really believe that are making it happen. That includes folks like yourselves investing into the space. Thank you for that. I look forward to seeing what the next four years bring. Nate, if anyone wants to connect with you further or learn more about what you guys are working on, what’s the best way to get in touch?

\n\n\n\n

Nate:
On LinkedIn, Nate Stewart, search for that. Also Nate.stewart@bigcommerce.com. Feel free to email me. I’m not really on Instagram randomly taking pictures. I missed that whole thing. Definitely missed TikTok. I have an account on now X but I probably won’t actively respond. So LinkedIn and email. We also have our developer community. If you are a builder and you go in there and ping me, it’s a private community that anybody’s free to join. You go to developer.bigcommerce.com and go to the community section. We actually have a WordPress channel there that you could join in. I would love to see more people talking about how they’re using WordPress in our community. Or you could just reach out personally. Like I said, we’re working with a couple of agencies and leaders in the space just to think about what the future is here. The more voices we have that are stress testing that, the better it is.

\n\n\n\n

Jonathan:
Excellent. We’ll also look forward to seeing you at future WordCamps as well. Nate, thanks for coming on and talk to you soon.

\n\n\n\n

Tammie:
Thank you.

\n\n\n\n

Nate:
Thank you.

\n
\n\n\n\n\n

In this episode of Woo ProductChat, co-hosts Jonathan Wold and Tammie Lister sit down with Nate Stewart, the SVP of Platform Strategy at BigCommerce.

\n\n\n\n

Join them as they get into the evolution of BigCommerce’s open SaaS strategy, the ongoing integration with the WordPress ecosystem, and their innovations on the horizon.

\n\n\n\n

Learn how BigCommerce is working to support WooCommerce’s mission of democratizing commerce and what trends and technologies are shaping the future of the e-commerce landscape. Plus insights on the journey of building open, scalable commerce solutions.

\n\n\n\n

Takeaways

\n\n\n\n

BigCommerce’s Open SaaS Strategy: Nate Stewart discusses how BigCommerce has been focusing on openness, aiming to be the leader in open SaaS commerce. This includes integrating well with platforms like WordPress and WooCommerce, and ensuring that merchants can make their visions a reality with flexibility and support.

\n\n\n\n

Enterprise Shift: BigCommerce has been transitioning towards serving more enterprise-level clients. This shift involves offering more complex features and capabilities while maintaining flexibility and openness to support various business needs.

\n\n\n\n

Integration with WordPress: The integration with WordPress and WooCommerce has been a significant part of BigCommerce’s strategy. They focus on supporting merchants at different stages of their journey, ensuring that WordPress and WooCommerce users can continue to scale and grow without needing to migrate off the platform.

\n\n\n\n

Feedonomics and Makeswift: BigCommerce’s acquisitions, like Feedonomics and Makeswift, highlight their commitment to providing powerful tools that integrate seamlessly with other platforms. Feedonomics, for instance, supports hundreds of sales channels and works well with WooCommerce, helping merchants manage product feeds efficiently.

\n\n\n\n

Gutenberg and Headless Commerce: Nate talks about the challenges and opportunities in integrating Gutenberg and headless commerce approaches with BigCommerce. The goal is to allow merchants to use modern technologies while retaining the flexibility and familiarity of WordPress.

\n\n\n\n

Future of Commerce: Looking ahead, the conversation touches on emerging trends like static site generation and the importance of thoughtful AI integration. Nate emphasizes the need for solutions that genuinely improve user experiences rather than just following trends.

\n\n\n\n

Long-term Vision: The discussion includes a vision of WordPress evolving as an operating system for the open web, supporting various technologies and use cases. This vision includes continuing to modernize WordPress and ensuring it remains a valuable and integral part of the web ecosystem.

\n\n\n\n

Links

\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jul 2024 08:20:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Gutenberg Times: New courses on Learn, My Menu theme, Section styles, Playground step library — Weekend Edition 299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=29239\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://gutenbergtimes.com/new-courses-on-learn-my-menu-theme-section-styles-playground-step-library-weekend-edition-299/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22554:\"

Hello,

\n\n\n\n

We are a few days away from WordPress 6.6 version hitting a WordPress instance near you. The latest WordPress 6.6 RC3 was released earlier this week. By now most of your testing should be done. Or you wait a few weeks before upgrading. On the Developer Blog What’s new for Developers (July 2024), help you sort through all new features and updates coming to WordPress.

\n\n\n\n

Contributors are working on what next for Gutenberg, and there will be another Hallway Hangout on August 15, 2024, at 15:00 UTC / 9 am EDT to discuss what could be on the Roadmap for 6.7 and beyond.

\n\n\n\n

Exploring my hometown anew is a special treat for us; finding new Restaurants, hanging out in beer gardens and café’s with friends, shopping at farmers market, walking guided tours, and visiting art exhibitions in one of the seven art museums. It is wonderful to play tourist for a while. The next couple of weeks, I will write from my parent’s hometown, outside of Munich.

\n\n\n\n

Wishing you a wonderful weekend.

\n\n\n\n

Yours, 💕
Birgit

\n\n\n\n\n\n

Developing Gutenberg and WordPress

\n\n\n\n

\n\n\n\n

🎙️ Latest episode: Gutenberg Changelog #103 – Create Block Theme Plugin, WordPress 6.6, Gutenberg 18.7, and Updates from the Training Team  with Nadia Maya Ardiani

\n\n\n\n

Learn.WordPress updates

\n\n\n\n

The training team started publishing their Learning Pathways courses.

\n\n\n\n

Beginner WordPress User is a course for WordPress users to learn more about the content management system that houses their content. It holds 25 lessons that users can tackle one at a time, or in single sessions, if they are eager to learn something very specific, for instance, how to use, the Media Library or about the difference between post and pages.

\n\n\n\n

If you design sites for clients, you can guide your clients to a single lesson on the official WordPress site with videos on the official WordPress YouTube channel, that doesn’t have any advertising nor any other uncontrolled suggested videos.

\n\n\n\n

The next set of Lessons are for an Intermediate WordPress User. This one lets learners “delve into advanced features, fine-tune site customization and implement effective content strategies.” It comprises 37 lessons, also all with individual links, for instance: Using the style book or Uncovering the Cover block

\n\n\n\n\"\"\n\n\n\n

Developer Courses

\n\n\n\n

For aspiring WordPress Developers the training team also released the first course. In 59 Lessons, the Beginner WordPress Developer “course provides an extensive overview of the basics of almost every development topic relevant to WordPress. While it is geared toward first-time developers, there’s enough information available that it’s worthwhile for veterans in the community to learn something new”, wrote Justin Tadlock in What’s new for Developers (July 2024)

\n\n\n\n\"\"Beginner WordPress Developer \n\n\n\n

On Learn. WordPress site, there are other developer related courses available which might be an overlap with the current work. They are more deep dives into certain topics.

\n\n\n\n\n\n\n\n

Josepha Haden Chomphosy and Wes Theron chatted about the Learning Pathways releases on the latest episode of the WP Briefing podcast: Episode 83: Learning Pathways

\n\n\n\n

Upcoming events

\n\n\n\n

July 23, 2024 15:00 UTC / 9 am EDT Developer Hours: Do you really need a custom block? Let’s explore alternatives. JuanMa Garrido and Nick Diego will explore several scenarios often addressed with custom blocks and discuss alternative approaches, especially those that leverage block patterns and Editor extensions. Key highlights include:

\n\n\n\n\n\n\n\n
\n\n\n\n

July 24, 2024 18:00 UTC / 2 pm EDT What’s new in WordPress 6.6? with Bud Kraus and Laura Adamonis. You will see demonstration of the main features of this new version: Here are the main features that will be demonstrated during this prevention: Synced Pattern overrides, the Grid Block, an improved way to layout pages and negative margins. All part of the new and improved user experiences in the site editor and more.

\n\n\n\n
\n\n\n\n

July 19, 2024, Stellar Spark Conference, a free online WordPress event! The lineup of speaker promises interesting, inclusive and innovative talks. It starts at 9 am EDT with a keynote with Josepha Haden Chomphosy. Among others, you can listen to Tammie Lister, Bet Hannon, Bud Kraus, David Wolfpas and Lindsey Miller.

\n\n\n\n
\n\n\n\n

July 30, 2024 WordSesh produced by Brian Richards is back. It’s a free online event with eight sessions across three live broadcasts in three time zones. Speakers announced so far include Alex Thomas (Defiant), Daniel Bachhuber (Automattic), Kimberly Lipari (Valet), and Piccia Neri (UX and accessible design lead)

\n\n\n\n
\n\n\n\n

Save the date:
August 27, 2024 15:00 UTC /9 am EDT: Developer Hours: Building themes with the Create Block Theme plugin with Tammie Lister. In this session, you will explore how this plugin enhances WordPress theme development. You also learn to create custom themes, utilize the speed boost, define different types of themes, and streamline your theme creation process all the way to exporting the theme.

\n\n\n\n

Plugins, Themes, and Tools for #nocode site builders and owners

\n\n\n\n

Jamie Marsland published the recording of his talk at WordCamp Europe on YouTube: Master WordPress Block Themes: 3 Essential Principles for Beginners. He shows you how Blocks, Templates, and Styles can transform your website design with their simplicity and flexibility.

\n\n\n\n
\n\n\n\n

Nithin Sreeraj at WP Content, takes you along WordPress 6.6 and its expected new features and changes and explains in short paragraphs why those features and changes are important for you and your customers.

\n\n\n\n
\n\n\n\n

Mike McAlister announced the update of the Ollie Pro pattern browser just got a huge boost. To help you quickly browse the massive pattern collection, served from a cloud app, the updated increases load performance for these patterns seamless into the WordPress block editor. McAlister shared some technical details of the refactoring.

\n\n\n\n\n\n\n\n
\n\n\n\n

One of the newest Block theme in the WordPress Repository is My Menu by Automattic. It “is a simple theme designed to facilitate restaurant owners’ site-building experiences. It is clean, direct, and customizable. Test the cool style variations that have been added to the theme.”

\n\n\n\n\"\"My Menu – style variation “Maroon” \n\n\n\n

Theme Development for Full Site Editing and Blocks

\n\n\n\n

Jessica Lyschik asked contributors and users on What would you like to see in the next default WordPress theme?  The next theme will be Twenty-Twenty-Five and is part of the next major WordPress version, to come out in mid-November. To be more specific, she asked:

\n\n\n\n\n\n\n\n
\n\n\n\n

In his latest post, Brian Coords asked Will WordPress 6.6 have components? After outlining his expectations on flexibility, Coords reflects on how Section Styles and Sync Pattern overrides fit into the ideas of a design system.

\n\n\n\n
\n\n\n\n

The summary of this week’s Hallway Hangout is now available on the Make Core Blog: Recap Hallway Hangout: Section styles and other block style variation updates “Attendees chatted about cool new features and handy tips for styling sections in WordPress 6.6. They also swapped stories and ideas on how to handle theme styles with section styles. The group shared their experiences and brainstormed ways to make pattern management and theme building in Gutenberg better.”

\n\n\n\n

 “Keeping up with Gutenberg – Index 2024” 
A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023

\n\n\n\n

Building Blocks and Tools for the Block editor.

\n\n\n\n

In this week’s Developer Hours: Editor unification and extensibility in WordPress 6.6, Ryan Welcher and Nick Diego discussed how the more unified slots and extensibility APIs are unified in the @wordpress/editor package global variable, simplifying the integration of extensions across editors for developers. The user interface is also becoming more standardized.

\n\n\n\n
\n
\n
\n\n\n\n
\n\n\n\n

WordPress Playground

\n\n\n\n

Alex Kirk has created a WordPress Playground Step Library. To learn more about the thoughts behind it and how to use it, he also wrote a blog post about how to Build a Playground Blueprint with a Drag and Drop UI.

\n\n\n\n\"\"\n\n\n\n

Need a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.

\n\n\n\n

Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience

\n\n\n\n

\"GitHub

\n\n\n\n

Questions? Suggestions? Ideas?
Don’t hesitate to send them via email or
send me a message on WordPress Slack or Twitter @bph.

\n\n\n\n
\n\n\n\n

For questions to be answered on the Gutenberg Changelog,
send them to changelog@gutenbergtimes.com

\n\n\n\n
\n\n\n
\n

Featured Image: Reflections Munich Marstall photo by Birgit Pauli-Haack

\n\n\n\n

Don’t want to miss the next Weekend Edition?

\n\n\n

We hate spam, too, and won’t give your email address to anyone
except Mailchimp to send out our Weekend Edition

Thanks for subscribing.
\n\n\n
\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Jul 2024 04:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Do The Woo Community: Connecting Means Opening the Doors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84661\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://dothewoo.io/connecting-means-opening-the-doors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4327:\"Episode Transcript\n
\n

You know as well as I do that there are people in our community looking for a job. The reasons for this stem from many different situations. For freelancers and small business owners, in reality, they are always looking for a job in another sense. Depending on how things are going, it reflects on their need to find that next client.

\n\n\n\n

Now, I’m not leading into some episode where I am going to give you tips on looking for a job or insights on best practices. I’m really not qualified for that. I have been working for myself since the late 1980s, with a few jobs here and there during those early years of surviving. I probably know as much as many of you do.

\n\n\n\n

And again, I could mention all the resources where you might find work. Michelle Freschette generously curates job openings on her X profile every Wednesday. Marcus, one of our hosts, lists those who are looking for work over on thewp.world. Not to mention sites like Post Status and others that list jobs.

\n\n\n\n

The reason I bring this up is that, as I do every day, several times, I visit LinkedIn and typically find a message from someone asking me if I am hiring. Now I get it on both sides. Often, this is unsolicited and can be annoying. On the other hand, there are those that just need work. Their abrupt intrusion, which you may describe as random, often sounds that way. True. But we do have to understand that in some cases it’s cultural, and in other cases, it’s just the fact that they have little experience in finding a job in what we may describe as the professional or correct way.

\n\n\n\n

So, there are a couple of things here. First, they do have to connect or at least ask to connect with you to do this, unless they have a premium account, which likely they won’t be doing. That first connection may be as abrupt as a short intro asking if you are hiring, or a bit more extended by first asking to connect and then following up with something like, “Hi Bob, how are you doing?” which may then lead into the job pitch.

\n\n\n\n

What do I personally do? I like to connect with people, and most of them are potential listeners to the podcast. So I connect a lot unless the invite to connect includes some kind of weird pitch, be it a job, services they offer, or anything like that. When they immediately come back with the pitch, well, sometimes I ignore it, or other times I reply with a polite reason why I am not interested.

\n\n\n\n

You may think I am crazy and spending way too much time doing that. Well, let me explain a couple of things about me.

\n\n\n\n

First, the ripple effect or the “you never know” effect. Each connection, no matter how it starts, can lead to something else. Maybe you think the odds are against it, but it happens. I have experienced that myself. Maybe they do become a listener. Or read one of my posts that inspires them. Or they could tell a friend or colleague about the podcast because of where their interest lies. The thing is, you never know.

\n\n\n\n

Secondly, I have opened the door. I’m not sure how many of you are old enough to remember door-to-door salespeople. Those ones that you would answer the door for or quickly disappear around the corner into another room hoping they didn’t see you. But for those times you did open the door, there was the invite. The chance for them to introduce themselves and give their pitch. How that moment evolved varied. But the fact is, you did invite them in. So when you connect with someone on LinkedIn, you are doing the same thing. Sure, it’s not what you may have expected or wanted, but you opened the door.

\n\n\n\n

So that’s it. I’m not suggesting you follow my line of reasoning or even that you have the same goals as me when it comes to a platform like LinkedIn. All I want to do is to remind you that you opened the door.

\n
\n\n\n\n\n

In today’s episode BobWP leads into the diverse challenge of so many people in the WordPress ecosystem looking for a job.

\n\n\n\n

Which leads into his take on LinkedIn where so many people are asking for work and how connecting is all about opening doors.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2024 10:08:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Akismet: Version 5.3.3 of the Akismet WordPress plugin is ready\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://akismet.com/blog/version-5-3-3-of-the-akismet-wordpress-plugin-is-ready/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:572:\"

Version 5.3.3 of the Akismet plugin for WordPress is now available for download.

\n\n

There are a number of bug fixes and improvements and we recommend upgrading if you’re using an earlier version of the plugin.

\n\n

To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in the WordPress plugins directory.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2024 23:38:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser 🏔\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: #127 – Rian Rietveld on Understanding the European Accessibility Act and Its Impact on Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=156969\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/podcast/127-rian-rietveld-on-understanding-the-european-accessibility-act-and-its-impact-on-websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44407:\"Transcript
\n

[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.

\n\n\n\n

Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, understanding the European Accessibility Act and it’s impact on websites.

\n\n\n\n

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.

\n\n\n\n

If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head over to wptavern.com/contact/jukebox and use the form there.

\n\n\n\n

So on the podcast today, we have Rian Rietveld. Rian is a web accessibility specialist from the Netherlands. As a freelance accessibility consultant, she works for NL Design Systems, the WordPress agency Level Level, and the form plugin Gravity Forms. She also teaches at the online learning platform, The A11Y Collective. She loves to share her knowledge at WordCamps meetups workshops and accessibility conferences worldwide.

\n\n\n\n

Today, we talk about the accessibility requirements of the European Accessibility Act or EAA, which will be enforced on June the 28, 2025.

\n\n\n\n

This legislation mandates that public service websites, products and services be accessible to all people. Rian clarifies the key aspects of the EAA, particularly focusing on websites, but we also touch upon other areas such as apps and PDFs.

\n\n\n\n

She emphasizes the importance of ensuring accessibility, not only because of the legal requirements, but also due to the moral obligation to include individuals with disabilities who access the web using a variety of different mechanisms, such as screen readers and keyboards.

\n\n\n\n

We discuss practical ways to achieve web accessibility. For example, using default accessible themes in vanilla WordPress, and writing accessible content.

\n\n\n\n

Rian also highlights the need for constant monitoring and training within teams to maintain accessibility standards, especially focusing on keyboard accessibility and color contrast.

\n\n\n\n

Financial incentives for making websites accessible are another point we talk about, as accessible websites can lead to increased revenue by catering to a broader audience, including the 20% of the population that relies on accessible websites.

\n\n\n\n

Additionally Rian points out that an accessible website can significantly impact SEO and customer engagement.

\n\n\n\n

Towards the end of the podcast we talk about the importance of having an accessibility statement for websites in Europe, the differences in the requirements between the EU and other parts of the world, and the benefits of hiring a professional to conduct an accessibility audit.

\n\n\n\n

She also addresses exemptions for small companies, but notes the overall benefit of compliance for reaching more customers.

\n\n\n\n

If you’re interested in the implications of the European Accessibility Act, and how to make your website more inclusive, this episode is for you.

\n\n\n\n

If you’d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.

\n\n\n\n

And so without further delay, I bring you Rian Rietveld.

\n\n\n\n

I am joined on the podcast by Rian Rietveld. Hello, nice to meet you.

\n\n\n\n

[00:04:03] Rian Rietveld: Thank you. for having me.

\n\n\n\n

[00:04:05] Nathan Wrigley: You’re very welcome. So we are at WordCamp Europe 2024. We are in the city of Torino. This is my first interview, so it’s an absolute pleasure having you on the podcast. We’re going to talk a little bit about a topic which Rian is mentioning at this conference. Do you want to just tell us a little bit about who you are before we get stuck into accessibility?

\n\n\n\n

[00:04:24] Rian Rietveld: My name is Rian Rietveld, and I’m from the Netherlands. I’m an accessibility expert. At the moment I’m freelance, and I’m working on various projects. One is the NL Design System that’s for the Dutch government, where I write documentation and guidelines for government websites, how to create accessible forms. And I also work for the WordPress agency Level Level, and for Gravity Forms, the WordPress forms plugin. And I give in-house trainings to companies.

\n\n\n\n

[00:04:53] Nathan Wrigley: This is a topic which is probably, well, we’ll get into it, but there’s probably a whole load of legal stuff that we’ll end up talking about. And I just want to clear up at the beginning, do you have a background as a lawyer, or anything like that?

\n\n\n\n

[00:05:04] Rian Rietveld: No, I am not a lawyer, and I want to emphasise that everything I say is from the accessibility point of view, and not from the legal point of view. If you have questions really about a legal implications for your company, hire an expert in legislation for accessibility.

\n\n\n\n

[00:05:20] Nathan Wrigley: Okay, so I guess good to get out the way right at the beginning. Nevertheless, you’ve got a lot of expertise in this area. Your talk is called the European Accessibility Act. I would imagine we’ll probably call that EAA from this point. Well, I don’t know which is quicker, to be honest.

\n\n\n\n

But the EAA, the European Accessibility Act is a piece of legislation, which I think is coming around in the year 2025. It seems like it’s a very big and important piece of legislation for people working with websites. Do you just want to tell us a little bit about what it is? Just what it is to begin with, and then we’ll get into who it affects, and how it affects people.

\n\n\n\n

[00:05:55] Rian Rietveld: In 2016, the EU member states agreed to make public service websites accessible. For example, government websites. And in 2019, they agreed on the directive to make also products and services accessible. And each member state has to implement that directive into their own legislation.

\n\n\n\n

In 2022, each member state must already have that put in their law. So actually, that legislation should already be implemented with the member states. The Dutch government only did that two months ago. Some countries didn’t even do that yet. Other countries have that really nicely in order. So it depends a bit on the member state, but they all agreed that it will be enforced in 2025. June 28th, 2025. So it’s in one year, and then it will be enforced.

\n\n\n\n

And what they agree on, that all services and products need to be accessible. And that’s a whole bunch of products like computers, operating systems, ATMs, ticket machines. And for services, it’s websites, e-commerce, the 111 emergency number. It’s a list of products and services that need to be accessible for people with a disability.

\n\n\n\n

[00:07:14] Nathan Wrigley: So it’s not bound, this legislation is very much not bound just to websites, although that’s obviously our area of expertise. It’s any sort of interface, so an ATM is a perfect example. You know, you want to go and get money out of the machine, and obviously if you have an issue which prevents you doing that in the, and I’m putting air quotes, the normal way, that machine needs to be, by 2025, June 2025, that machine has to be accessible. And we can explore what that might mean for an ATM, as well as a website in a moment. But that’s the moment. That’s the day it’s got to be done?

\n\n\n\n

[00:07:44] Rian Rietveld: It should already be a law in the countries, but then it will be enforced. So that’s the deadline.

\n\n\n\n

[00:07:49] Nathan Wrigley: Okay, so the expectation is that people are working towards this, and it’s not like you start thinking about it in June 2025. Yeah, it needs to be done. That work needs to be finished, because at that point the enforcement can happen. And we can get on to the enforcement, actually, let’s sort of pivot to that.

\n\n\n\n

So we’re in Italy at the moment, which is a member of the EU. I come from the UK, which made a decision several years ago to leave the EU. And I imagine there’ll be a bunch of people listening to this, I don’t know, in Australia, in New Zealand, in India, in America, does it affect them in any way?

\n\n\n\n

If you’re an ATM manufacturer, I guess you might be shipping ATM machines to Italy. But certainly with a website, if I have a website which is based in the US, well, there’s nothing preventing me, as a user in the EU, from accessing that website. So where do the boundaries lie? What is the jurisdiction? Is there a boundary? Does it neatly encapsulate the EU, or do we need to worry wherever we are?

\n\n\n\n

[00:08:49] Rian Rietveld: Well, that’s the web. The web is worldwide. So if you sell services or products to an EU member state, then your website or product needs to be accessible.

\n\n\n\n

[00:08:59] Nathan Wrigley: You specifically said if you sell, so you used the word sell there. What if you have a website which is, oh I don’t know, let’s just say you have a blog, for example, or you have a brochure website, which is nothing to do with selling a thing. It’s just a hobby of some kind. Let’s call it that.

\n\n\n\n

[00:09:16] Rian Rietveld: Of course, but you don’t have to. If you sell items, services, or products, then you need to be accessible.

\n\n\n\n

[00:09:22] Nathan Wrigley: So it’s bound up with the transaction of money. If money is moving from one point to another point, and any of that touches the EU, then you need to be compliant by June 2025.

\n\n\n\n

[00:09:34] Rian Rietveld: Yes.

\n\n\n\n

[00:09:35] Nathan Wrigley: What I’m taking from that then is that, if you are an international company, and you are selling anything into the EU, you can’t ignore this, even though you are in a country where the jurisdiction, if you like, you might think it doesn’t affect you.

\n\n\n\n

How could that jurisdiction possibly affect you though? So for example, let’s say that I am an American company, and I’m selling things, and Europeans are buying them. What possible thing could the EU do to an American citizen? Is there some relationship in law that you know of? And again, I’ll just emphasise that I know you’re not a lawyer.

\n\n\n\n

[00:10:07] Rian Rietveld: Well, that’s the big question, nobody knows yet.

\n\n\n\n

[00:10:09] Nathan Wrigley: Interesting.

\n\n\n\n

[00:10:10] Rian Rietveld: And what will happen, will it be a sue culture like in the US. Or will it be someone complaining, and take it to a local court? I have no idea. That’s kind of a tin of worms, because each country implements the legislation on a bit different way. For example, Germany has a very strict legislation. Maybe other people only stick to what is needed. It’s a tin of worms. And how it’ll be implemented, and how it’ll be enforced, we just have to see what happens.

\n\n\n\n

[00:10:38] Nathan Wrigley: Yeah, I guess it will be interesting. Do you know though if people are lining up? How can I describe this without sounding controversial. In certain parts of the world, there’s this phrase which I hear from time to time and it’s ambulance chasing lawyers. And it’s the idea that lawyers find things where there’s a problem, and they go after them, maybe not for ethical reasons, or moral reasons, or whatever it may be, but it’s just because there’s a pot of money that they could get. Do you have any intuition as to whether lawyers in the EU are kind of ramping up their posture in terms of the EAA.

\n\n\n\n

[00:11:11] Rian Rietveld: That’s not a culture in Europe at all, because for government website you need at the moment have an accessibility statement where you say, I’m aiming for, for example, the web content accessibility guidelines, version 2.1, level AA. This is what still needs to be done. This is the roadmap, and this is where you can file an issue. That’s an accessibility statement. And you already put what’s wrong on your website. And that will be hard to do in the US, because that gives a lawyer like a checklist.

\n\n\n\n

But if you have a good support system in place. First, someone needs to complain, and you need to respond on that and say, okay, I’m going to fix that. But if you ignore complaints and just say, oh, there’s disabled people, I’m not interested in that. That will trigger a lawsuit I think.

\n\n\n\n

But in Europe, you have to have an accessibility statement explaining what still needs to be done. And that’s a big issue I think for US companies, because they legally cannot do that.

\n\n\n\n

[00:12:13] Nathan Wrigley: So does that statement need to be published online, or it be a document that you just have in a file, in a drawer gathering dust?

\n\n\n\n

[00:12:21] Rian Rietveld: It has to be on your website, an accessibility statement. Yeah, it gives information about, what are you doing? What are you aiming for? What are you working on? And also, how people can report an issue. And that’s important if you are a client and you cannot use someone’s website, and you have the courtesy to actually tell that, okay, I cannot use your website because I have this, and this issue. You have to take these people seriously.

\n\n\n\n

[00:12:43] Nathan Wrigley: So if you have to put that online, presumably it’s possible to go and find guidance about websites, in order to start ticking off those boxes, to be able to say, yeah, we have done that one, and we have done that one, but we have yet to begin this process. Those kind of documents are available, easy to access. Do you have a URL which you can just pop out of your head to do with that, where you would go and find those kind of things?

\n\n\n\n

[00:13:07] Rian Rietveld: If you have a website, you let an accessible expert or firm do an audit. And in the audit you state what is wrong, right, and what is wrong. And that is a document you can link to. Is that what you mean?

\n\n\n\n

[00:13:19] Nathan Wrigley: Yeah, I think so. So you are advocating that, if you are not entirely sure, in other words, it sounds like, if you don’t have a legal team who are up on this, and understand all of this, you are saying hire a professional.

\n\n\n\n

[00:13:31] Rian Rietveld: Yes, please. Well, you have to do an audit by a professional. And a professional has to do an audit on your website, as a basement measurement, and you work from there. You fix the issues from there. And maybe if all the issues are fixed, you can redo the audit, and publish that on your website. But it gives you a state of the accessibility of your website at that moment.

\n\n\n\n

[00:13:52] Nathan Wrigley: So I’m imagining a, almost like a tick sheet with, there’s this, and this, and this, and I’ve to tick that, but I haven’t ticked that. Are there certain things on that tick sheet, things that you need to do in a certain order? And again, obviously you know the caveat about you not being a lawyer, and what have you. But, are there certain things that are more important? Can you get away with just ticking one box? Do the very tiniest amount, and still say, well, look we’ve made a start, it’s fine.

\n\n\n\n

[00:14:18] Rian Rietveld: No, you have to say, I’m aiming for WCAG, it’s a web content and accessibility guidelines, version 2.1 AA, or 2.2 AA. And then you have to meet a couple of success criteria. Your images have alternative text, your videos have captioning. You have to meet all those to comply to WCAG, and to comply to the European Accessibility Act requirements.

\n\n\n\n

So if you fail some, you need to fix those to comply completely. There are not many websites that comply a hundred percent. There’s always something missing. So it’s utopia to say, oh, my website is perfectly accessible. Website is a work in progress.

\n\n\n\n

[00:14:58] Nathan Wrigley: So, given that businesses can be one person, or they could be 50,000 people. Does any of that factor in? So if I am an individual employee, I am selling something, so I know that I have to take this seriously. Does the size of the business in any way affect how much I have to do by a certain date?

\n\n\n\n

Because I can imagine a company of the size of, oh I don’t know, let’s say Amazon, or Google, or something along those lines, where they’ve got gigantic resources, and they can really fairly, straightforwardly put teams of people onto this project. I’m kind of imagining, in a fair and just world, there would be an expectation that they do more than the one person business, who just started up recently, and has got a million other things to do to keep their business going. Is there any sense of that, or is it, no, it’s a absolute flat level playing field, we all have to do the same?

\n\n\n\n

[00:15:49] Rian Rietveld: Thankfully, there’s an exception for small companies. If you have less than 10 employees, and you have a revenue less than 2 million euros, you don’t need to comply. You can, of course, because it’s very good for your revenue, but you don’t need to comply to that rules.

\n\n\n\n

[00:16:05] Nathan Wrigley: I hadn’t written this question down, but that was an interesting thing that you just said. You just said that it will help your revenue, or it’s good for your revenue. And I’ve heard this being talked about before, that the people out there online, who require an accessible website, that the money in their pockets, the size of that cohort of peoples, the finances that they’ve got available is pretty large. And so if you do this work, even if you don’t need to, it could be very, very economically good for your business. So I’m just going to throw that back. Do you have anything to say about that?

\n\n\n\n

[00:16:37] Rian Rietveld: Oh, I totally agree. And the population is getting older and older, so more and more people need an accessible website. Good color contrast, a logical order of the information. I think, if you build for everyone, then you just have more customers.

\n\n\n\n

About 20% of all people need some kind of accessibility. So if you just throw away 20% of your people, of your customers, that’s a large amount of number. And those are what you said, people who have money and want to buy something from you, and you just block the door for them.

\n\n\n\n

[00:17:10] Nathan Wrigley: Yeah, that’s interesting. So, I think we’re all carrying around a mobile phone. We’ve all got this device in our pockets, which enables us to buy anything at any moment. And if you are closing the door, it’s literally like having a shop with a front door, but you’ve locked the door, and closed the windows, and pulled the curtains, and nobody can peer inside.

\n\n\n\n

[00:17:28] Rian Rietveld: What I found interesting is that there is a lot of money in SEO. You want all those people coming to your website, and then you say to 20%, okay, you are not allowed. So you throw away 20% of your SEO budget.

\n\n\n\n

[00:17:42] Nathan Wrigley: Really interesting. So 20% would be the kind of figure that we’re playing with. So there’s not only a legal obligation to do it, and we can talk about whether there’s a moral obligation in a moment. But there is definitely a financial incentive to doing this. And that, I think, is a piece of the conversation which doesn’t often get raised. And if, by doing a series of tasks, and it may be hard, and it may be arduous, but if you get these tasks complete, you may see an uptick in your revenue. So that’s kind of interesting.

\n\n\n\n

[00:18:08] Rian Rietveld: Yeah, it is part of your quality. You want to make your website responsive, secure, and good performance. That are all things that make a good website. Also add accessibility. It’s part of the quality of your work.

\n\n\n\n

[00:18:20] Nathan Wrigley: Is there a reason this kind of legislation hasn’t happened many years ago? Is it that the people who are now having an expectation that they can get online, did they just not have a voice until more recently? Because I can imagine that, if you require an accessible version of the internet, in the past years, you just wouldn’t have used the internet.

\n\n\n\n

And so you didn’t have a way to say, well, okay, this bit doesn’t work, this bit doesn’t work, because the whole thing was just broken. So you never got to see inside, you never got to peel back the curtain, and see what amazing things there are in the internet. So it’s kind of curious to me how we’ve got to 2025, and we’re still talking about this subject. We could have tackled it a decade or more ago, probably.

\n\n\n\n

[00:19:03] Rian Rietveld: Well, it’s so hard to even get the government accessible. That took years, and years, and years. And now, even in the Netherlands, about 3% of the website for the government is totally accessible. The rest has still issues. It’s hard work because it needs training, it needs awareness, it needs people who decide about the finances to give the resources for training and for development. It’s a question of awareness, and that’s getting now better and better.

\n\n\n\n

[00:19:30] Nathan Wrigley: Yeah, I guess if you are, so I’ll take the example of a wheelchair user. If you are standing on the street, and you see somebody using a wheelchair, and they want to get into a physical shop, and there are some steps, and nothing but steps, you see the problem. It’s right there in front of your eyes. This person cannot get into that shop. That’s a disaster. So we built the ramps. But this is kind of hidden.

\n\n\n\n

[00:19:53] Rian Rietveld: Yes. When you are young and everything works, your body, you just test a website with a mouse and your eyes, and you say, okay, it works. And you have no idea that someone who gets the website read out loud, has no clue about what’s happening, or uses the website with a keyboard, cannot open the menu, for example. It works for the mouse, it works for you.

\n\n\n\n

Only recently in the Netherlands, accessibility is taught on the schools for developers and designers. That’s only now starting. So everybody has to teach themselves who is a developer at the moment, or gets training, or maybe companies train their people. It’s only starting at the moment.

\n\n\n\n

[00:20:32] Nathan Wrigley: So we had decision makers who didn’t make these decisions, plus we had people coming into the industry who just didn’t know. But now we’re at the beginning of that journey. This is part of the education, so hopefully, yeah okay.

\n\n\n\n

[00:20:44] Rian Rietveld: Yes, education is the key, I think. We need to educate developers, designers, and also managers.

\n\n\n\n

[00:20:49] Nathan Wrigley: So with the best will in the world, even if 50% of the people, 60%, 70%, 80%, whatever it may be, of the people listen to this podcast, and they say, yep, I’m going todo all the right things. There’s definitely going to be a proportion of people who say, leave it till tomorrow, we’ll leave it for another year. We’ll never get caught, we a tiny fish in a big pond of websites.

\n\n\n\n

What can the EU actually do? And when I wrote the question out, I wrote, what stick can the EU use? We have this carrot and stick approach in the English language, where you hit something with a stick to get it to behave, or you offer it a carrot, a treat if you like, to get it to behave. So, is there any of that? Is there any stick that the EU can bring to bear? And also, are there any carrots?

\n\n\n\n

[00:21:30] Rian Rietveld: Well, that’s the big question. I cannot look in the future. So, what will happen in 2025? Everyone in the accessibility world is looking at, so what will happen? We don’t know. Will there be a strict legislation? Will nothing happen, like with the GDPR? Oh, panic, and then nothing happens. Or will we actually be enforced, and will there be fines for companies? I don’t know.

\n\n\n\n

I hope this will be a game changer, because there’s a lot of publicity on this. And there’s no easy, quick fix. Like the GDPR, you put a cookie banner, and you’re done. Rework your website, you need to rebuild your website, look at your work. And that’s a lot more work than just adding a cookie banner. And if there will be implications, I hope so.

\n\n\n\n

[00:22:11] Nathan Wrigley: Do you know if on the books, in theory, there’s a stick? Is there anything, and again, I know you are not a lawyer, but do you know if there’s anything in the legislation which could be used? Whether or not it will be used aggressively or, you know, more of a soft touch.

\n\n\n\n

[00:22:26] Rian Rietveld: Well, it depends on the member states. Each member state can decide, in their own legislation, what the fine will be, what the stick will be. So, not every country has decided on what to do yet. Some countries have, and some other countries none. Ireland, the law in Ireland that went viral in the accessibility world, you can go to jail. Yes, you can get fined and go to jail. Other countries may have no implications at all. If you can go to jail in Ireland, it may be not really happening, but it’s in the legislation.

\n\n\n\n

[00:22:56] Nathan Wrigley: It’d be curious to see, in the same way that financial laws, you know, if you can move your business to a country where there’s very little tax, we know what happens. The countries, there’s lots of companies, they suddenly set up an office there, and they become, I wonder if the same thing would happen. All the companies move away from Ireland from the risk of going to prison, or something like that.

\n\n\n\n

Okay, tell me about this then. So we know that you have until June 2025 to get this work done. Tell us about the more sort of moral aspect. And what I’m talking about there is, it’s going to be difficult to do this because we’re an audio podcast, and really it would be nice to sort of see some of this stuff on a screen, but we’ll just have to use words to describe it. Is there a kind of, a moral aspect to this? Can you describe what it may, in some limited circumstance, look like, or feel like, or sound like for people on the web?

\n\n\n\n

And I know that’s really hard to encapsulate. But if we took the example of somebody who is completely blind. So that’s something I think we can all understand. You know, if you’ve got perfect sight, you can close your eyes, and you can hold a mouse in your hand, and you can then try to imagine what the internet would be like. And already, just in my own mind, I’m picturing it’s a complete black box. I can’t see it anymore. What are the ways that people are accessing the web without normal, air quotes, mouse, keyboard, eyes, ears, format?

\n\n\n\n

[00:24:16] Rian Rietveld: There’s so many different ways. Some people are deaf and blind, so they depend on a braille display. They get all the text in pins, braille letters. Some people use the keyboard only, and that actually is a requirement. You should be able to use a website with a keyboard only. And some people use a stick in their mouth, if they cannot use their hands. And they can access keyboard, or display by that.

\n\n\n\n

Some people have a straw in their mouth, and they can use the straw to blow in that, and puff it’s called. And that, way it’s a zero and one, so that way you can use the website also. Stephen Hawkin, he used electronic device on his chin. He used a device on his cheek, where he can, just by moving one muscle, operate his voice control. There are people who speak to the computer without any hands. So many different ways. And it only works if you code your website properly.

\n\n\n\n

[00:25:12] Nathan Wrigley: Right, that’s the key point. All of that bit that you just said, if you just listen to that, you would think, oh, well it’s fine then, people can put a stick in their mouth, and they can use that, or they can blow, or they can have something attached to their face, or they can speak.

\n\n\n\n

But of course that’s not it. It’s that, if the website isn’t built to enable those kind of technologies, you are faced with something border lining on, just massively infuriating to use, impossible to use. So it’s not like, oh, I’ve got this assistive technology, suddenly everything is perfect. You have to rebuild the website so that the assistive technology can get through the website, and you’ve got clear markers, and it’s all built correctly.

\n\n\n\n

[00:25:52] Rian Rietveld: Actually, the web by itself, HTML, what the website is made of, is accessible. All the extra stuff they put into it, making it work only with the mouse, all the extra effects, that makes it inaccessible. So learn HTML properly. If you can use HTML well, you already have a lot of accessibility for free.

\n\n\n\n

[00:26:13] Nathan Wrigley: So again, this is a question that I didn’t have written down, but it’d be interesting to explore. If you were just using pure and exact HTML, everything would work. But we’re at a conference where we’re using a CMS, and I just have the question, how does WordPress do with any of this? Is it out of the box?

\n\n\n\n

So, okay, I’m not imagining that we’re throwing a bunch of plugins in. Ignore that, because obviously that would introduce a million and one different ways of making it inaccessible, or accessible. But if we just took vanilla WordPress, and installed directly from wordpress.org, and we were to write posts, and pages, and what have you with that, with just the core blocks, how are we doing?

\n\n\n\n

[00:26:54] Rian Rietveld: If you use the default teams, 21, 22, that kind of themes, those are all accessible. If you use those with vanilla WordPress, you’re pretty good.

\n\n\n\n

Another thing is the content. You need to write also accessible content. Good heading structure, don’t call all the links, click here. Add alternative text to your images. If you do that too, you can create an accessible website. It’s perfectly possible.

\n\n\n\n

[00:27:20] Nathan Wrigley: Now the interesting thing there is, it feels like we just had a conversation where, a person without accessibility needs has a WordPress website, and they’re creating the content for people who have accessibility needs. How does it work the other way around? How does WordPress behave as an editing, content creating experience for people with accessibility needs? I think that’s going to be a harder question to answer.

\n\n\n\n

[00:27:44] Rian Rietveld: It needs work. I will keep it to that.

\n\n\n\n

[00:27:46] Nathan Wrigley: Yeah, okay. There’s work to be done.

\n\n\n\n

[00:27:47] Rian Rietveld: There’s work to be done. And we have an excellent accessibility team, and they are doing a great job. They need more people.

\n\n\n\n

[00:27:55] Nathan Wrigley: Okay. I mean, we’ve thrown in, in the last five or six years, a very complicated, well, not complicated once you’ve understood it. It’s a complicated editing experience. There’s lots of moving parts and there’s menus over here, and there’s options, which if you click in something, other things appear, and what have you, and it’s all very visual. My interpretation of that is entirely visual. I move my mouse, and it’s complicated. So there’s work to be done, the long and the short of it.

\n\n\n\n

We didn’t really touch on this, but I do want to slightly. Is your website ever going to be complete? Even if you are Google, and you have this giant team, where you’ve got people, you know, a hundred people on this every day, for all of the things that they do. Is this journey ever complete, or is this shifting sand? Is it that the legislation is changing all the time, or there’s just too many things to do?

\n\n\n\n

And with that, are you allowed to, I know we had this sort of tick box exercise, are there some things that you could recommend to begin with if you’re on this journey? So let’s take the first bit. Can you ever say that website over there is complete?

\n\n\n\n

[00:28:57] Rian Rietveld: Well, yes you can, but a website is evolving. New content is added, new features are added, and all those need to be checked all the time. If you have a new content manager and they don’t know about adding alternative texts, it breaks your accessibility.

\n\n\n\n

[00:29:13] Nathan Wrigley: Oh, good point, yeah.

\n\n\n\n

[00:29:14] Rian Rietveld: So everybody on the team must stay focused and trained. If you have a new content manager, train them in accessibility. If you add content, then the accessibility is vulnerable because it needs to be added accessible.

\n\n\n\n

[00:29:28] Nathan Wrigley: Sorry, just to interrupt you. That’s interesting because I’m imagining a site that, let’s say I’ve got a site and it’s 10 years old, and I’ve got 10,000 blog posts, and all of them contain, let’s say video because you mentioned that videos ought to have captions. Do I need to go back and do all of those 10,000 videos?

\n\n\n\n

[00:29:44] Rian Rietveld: That’s interesting because you can, in your accessibility statement, say, okay, from January 1st 2024, I’m going to add captioning to all my videos, and then do that also. And before that, if you need content that is added to the video, or if you need captioning on a video, or need the content on an older video, email us and we’ll provide it to you. So you don’t have to go through all that content, and go through the videos, and the alternative text. But if someone needs that content, you must be able to provide it.

\n\n\n\n

[00:30:18] Nathan Wrigley: Okay. So we know that our website really, in the real world, the website’s never going to be complete if you are, like most people, are tweaking the website, and you’ve got people creating content, and new pages. So you’ve got to be constantly mindful.

\n\n\n\n

And also, I think we’ve learned that you can pick your journey a little bit. You can say, okay, I’m going to tackle this piece of the jigsaw, and this piece. And treat it as a journey.

\n\n\n\n

[00:30:41] Rian Rietveld: That’s the roadmap you’re taking. And first start with keyboard accessibility. That’s a main feature. If your keyboard accessibility is okay, it works with almost all assistive technology. And then go through color contrast. And that’s the easiest thing. If your color contrast isn’t right, it’s just tweaking your CSS. That’s a quick fix. Go for the quick fixes, and for the keyboard accessibility. I think that’s the best way to approach the roadmap.

\n\n\n\n

[00:31:07] Nathan Wrigley: That’s a good way to start. Okay, that’s perfect.

\n\n\n\n

Does this affect anything apart from websites? So I’m imagining situations where, oh I don’t know, let’s say that I’m sending out email and it’s nothing to do with my website, it’s a third party piece of software, or I’ve got, I don’t know, a CRM system, where customers can log in and see their orders and things like that. So it’s outside of the website. Does all of this need to be accessible? So we’ve been talking about websites, and at the beginning we began with ATMs, so I’m guessing the answer is yes, if anybody can interact with that thing.

\n\n\n\n

[00:31:38] Rian Rietveld: If a client can do that.

\n\n\n\n

[00:31:40] Nathan Wrigley: But there might not be any money changing hands with that thing. So I’m imagining the website, let’s say that you’re a website and you’re selling things, you’ve got a company with enough employees, you are based in Europe, and you are selling things. So we know you are definitely, the European Accessibility Act, we know that you are under that. But if you are, I don’t know, sending out email, and there’s no transaction in that email, it’s not anything to do with sales, but your company is selling things, how does that work?

\n\n\n\n

[00:32:07] Rian Rietveld: Well, emails are not really mentioned.

\n\n\n\n

[00:32:08] Nathan Wrigley: Interesting.

\n\n\n\n

[00:32:09] Rian Rietveld: It’s a good way to do it because it’s communication with your client, and you better make sure your client understands your message. So that’s good part of your best practice, of your good practice.

\n\n\n\n

[00:32:19] Nathan Wrigley: But it’s not specifically tied into the legislation. In theory, you could avoid it. That’s kind of fascinating that that never got pulled in.

\n\n\n\n

[00:32:25] Rian Rietveld: In websites?

\n\n\n\n

[00:32:26] Nathan Wrigley: Yeah, just websites. That’s fascinating.

\n\n\n\n

[00:32:28] Rian Rietveld: And apps, and also electronic documents. If you have PDFs on your website, they need to be accessible too. And that’s a good reason to get rid of your PDFs.

\n\n\n\n

[00:32:36] Nathan Wrigley: Okay, thank you. Would you just tell us a little bit about where we can find you on the internet? Obviously, you are very keen on this subject. I’m guessing that part of your business might be to do with this as well. So just tell us a little bit about where we can find you, and what kind of things you are doing.

\n\n\n\n

[00:32:50] Rian Rietveld: You can find me on rianrietveld.com. I’m doing consultancy and I write documentation. I also train people for web accessibility. If you want an online training, you can go to the A11Y Collective, that’s a11y-collective.com. We have a couple of online trainings in web accessibility there. There is, for the US WebAIM, webaim.org, and that’s a large website with excellent information about accessibility.

\n\n\n\n

Also on gov.uk, that’s from the British government, they publish excellent information about accessibility. And if you Google, well, there are many, many companies that provide accessibility consultancy, and also training. Deque is one of them. So there are plenty of them about.

\n\n\n\n

[00:33:37] Nathan Wrigley: I will make sure that I dig all of those URLs out, and I will paste them on the WP Tavern page, so you’ll be able to find them there, along with a complete transcript of this episode.

\n\n\n\n

[00:33:47] Rian Rietveld: That will be great. Yeah.

\n\n\n\n

[00:33:48] Nathan Wrigley: Yeah, you are very welcome. So thank you Rian Rietveld. I appreciate you chatting to me on the podcast today. I hope that you have a good WordCamp EU.

\n\n\n\n

[00:33:55] Rian Rietveld: Thank you.

\n
\n\n\n\n

On the podcast today we have Rian Rietveld.

\n\n\n\n

Rian is a web accessibility specialist from the Netherlands. As a freelance accessibility consultant she works for NL Design System, the WordPress agency Level Level and the form plugin Gravity Forms. She also teaches at the online learning platform The A11Y Collective. She loves to share her knowledge on WordCamps, meetups, workshops and accessibility conferences worldwide.

\n\n\n\n

Today we talk about the accessibility requirements of the European Accessibility Act or EAA, which will be enforced by June 28th, 2025. This legislation mandates that public service websites, products, and services be accessible to all people.

\n\n\n\n

Rian clarifies the key aspects of the EAA, particularly focusing on websites, but we also touch upon other areas such as apps, and PDFs. She emphasises the importance of ensuring accessibility not only because of the legal requirements but also due to the moral obligation to include individuals with disabilities who access the web using a variety of different mechanisms such as screen readers and keyboards.

\n\n\n\n

We discuss practical ways to achieve web accessibility, for example using default accessible themes in vanilla WordPress and writing accessible content. Rian also highlights the need for constant monitoring and training within teams to maintain accessibility standards, especially focusing on keyboard accessibility and colour contrast.

\n\n\n\n

Financial incentives for making websites accessible are another point we talk about, as accessible websites can lead to increased revenue by catering to a broader audience, including the 20% of the population that relies on accessible websites. Additionally, Rian points out that an accessible website can significantly impact SEO and customer engagement.

\n\n\n\n

Towards the end of the podcast, we talk about the importance of having an accessibility statement for websites in Europe, the differences in the requirements between the EU and other parts of the world, and the benefits of hiring a professional to conduct an accessibility audit. She also addresses exemptions for small companies, but notes the overall benefit of compliance for reaching more customers.

\n\n\n\n

If you’re interested in understanding the implications of the European Accessibility Act and how to make your websites more inclusive, this episode is for you.

\n\n\n\n

Useful links

\n\n\n\n

The European Accessibility Act explained on WordPress.tv

\n\n\n\n

NL Design System

\n\n\n\n

Level Level agency

\n\n\n\n

Gravity Forms

\n\n\n\n

WCAG guidelines

\n\n\n\n

Rian’s website

\n\n\n\n

The A11Y Collective

\n\n\n\n

WebAIM

\n\n\n\n

Guidance and tools for digital accessibility from gov.uk

\n\n\n\n

Deque

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Do The Woo Community: Walking the Floor at WCEU Talking Accessibility with Taeke Reijenga\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84570\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://dothewoo.io/walking-the-floor-at-wceu-talking-accessibility-with-taeke-reijenga/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25288:\"
\n

This show is sponsored by…

\n\n\n\n
\n
\n
\n
\n
\n\"Hostinger\"\n
\n
\n
\n\n\n\n
\n

Hostinger: As a builder or an agency managing multiple sites, check out Hostinger. Whether you are building a WordPress site or specifically, a Woo store, their infrastructure brings your clients sites speed, uptime and security.

\n
\n
\n\n\n\n
\n
\n
\n
\n\"\"\n
\n
\n
\n\n\n\n
\n

Omnisend: Whether it’s for integration into your Woo product, or building sites for clients, Omnisend is the solution for email and SMS marketing with their CRM solution for WooCommerce shops and your own website.

\n
\n
\n
\n
\n\n\n\nEpisode Transcript\n
\n

Taeke:
Hey guys and girls, and anything in between. This is Taeke, your host from the accessibility podcast. It’s just me today. I saw Anne-Mieke running around, which is understandable as she is one of the organizers of WordCamp Europe that we’re currently attending. We’re going to freestyle a bit, so I’ll just walk around and ask some people about accessibility: what it means for them, if it’s something that is part of their daily practice, if it’s new to them, anything. So let’s get started. Hey there, this is, let’s see, Manuela van Prooijen. How are you doing? Hi.

\n\n\n\n

Manuela:
I am fine, thank you. This is quite a spread.

\n\n\n\n

Taeke:
It’s been a couple of years.

\n\n\n\n

Manuela:
Yes. The last time we met was at Porto WordCamp Europe.

\n\n\n\n

Taeke:
And that’s when you decided to move to Portugal.

\n\n\n\n

Manuela:
That’s right. That’s my home base now.

\n\n\n\n

Taeke:
Really cool. This is the Do the Woo accessibility podcast. So I wanted to ask you a couple of questions about accessibility. Is there anything that you do in your daily life that involves accessibility?

\n\n\n\n

Manuela:
Yeah. Over the past few years, I’ve developed training programs specifically for virtual assistants to bridge the gap between backend developers and marketing teams to provide a hands-on workforce for bridging accessibility gaps. So I have this program, and it’s very successful in the Netherlands.

\n\n\n\n

Taeke:
So you’re basically training the new generation to help us out?

\n\n\n\n

Manuela:
Yes. With the upcoming European Accessibility Act, it’s very important not just to have auditors or programmers, but people who can provide hands-on workforce.

\n\n\n\n

Taeke:
Yeah, that’s amazing. And I totally agree. I mean, I foresee a bit of an issue with this act coming up. At the moment that we are recording, this is one year and 14 days away.

\n\n\n\n

Manuela:
Yes, it’s almost one year away, but it’s getting closer.

\n\n\n\n

Taeke:
It’s getting closer. The clock is ticking. Next booth, I see a booth for Equalize Digital, and I know they do something with accessibility. Hi there. Who are you? What do you do at Equalize Digital?

\n\n\n\n

Steve:
Hello, I am Steve Jones. I am the CTO at Equalize Digital. We are an accessibility product and services company specializing in accessibility. We have a plugin called the Accessibility Checker that scans your websites for accessibility issues.

\n\n\n\n

Taeke:
And I heard something, and I see it on your booth. You landed an amazing client not too long ago, or maybe some time ago, but they launched not too long ago.

\n\n\n\n

Steve:
They have a lot of things, but the client you’re speaking of is NASA. Last year, we were brought in as the accessibility team for the NASA project. NASA built a new website on top of WordPress, and we were lucky enough to be brought in to audit the code being developed by the Lone Rock Agency for the NASA website. It was an exciting time, and it actually has extended to just recently. We’ve still been doing some audits on that and providing accessibility feedback.

\n\n\n\n

Taeke:
That’s amazing. Congrats on that. That’s a cool name to have in your portfolio, right?

\n\n\n\n

Steve:
Absolutely.

\n\n\n\n

Taeke:
So is it just these big names that you work for? I imagine that the plugin is for anyone to install. Can you tell a little bit more about the plugin, what it does, and why I should install it on my website?

\n\n\n\n

Steve:
Yeah, we don’t just do huge, awesome, interesting clients like NASA, although that is great. The bulk of our clients are medium to large agencies. We do a lot of enterprise website development that is accessible, and like you said, we have our Accessibility Checker plugin. This plugin has a full-featured free version available on WordPress.org. It sits inside your WordPress admin and evaluates your post or page for accessibility issues in real-time.

\n\n\n\n

Taeke:
So this really helps editorial teams in writing their content because they get immediate feedback, right?

\n\n\n\n

Steve:
Yes, it’s never enough to launch a website and say it’s accessible and then leave it. Especially WordPress websites. They’re a living, breathing machine. So accessibility is something that needs to be evaluated with every publish.

\n\n\n\n

Taeke:
It’s not just about developers being trained.

\n\n\n\n

Steve:
Content creators,

\n\n\n\n

Taeke:
Content creators, designers. It’s a team effort. Is there anything you want to add or share with us? Otherwise, I’m going to move along and see if there are more sponsors here that do anything with accessibility.

\n\n\n\n

Steve:
For any freelancers or agencies or large agencies out there, consider accessibility a priority. Put accessibility first.

\n\n\n\n

Taeke:
I do have one last question. Why is it so important for you? Is it the law or is there a more ethical motivation? What brought you to accessibility as a niche?

\n\n\n\n

Steve:
Well, there is a legal aspect and an ethical aspect to it. Of course, a lot of companies do need to legally comply. The European Accessibility Act will be enacted next year. So there’s a lot in that respect. But there’s the ethical side too. At Equalize Digital, we lean more on the ethical side. It’s the right thing to do. Anybody should be able to use the internet. Societies across the world are becoming increasingly digital for basic tasks like getting medical supplies and filling out government paperwork. They shouldn’t be met with blockers along the way. They should be able to access and submit information as easily as people without any disabilities.

\n\n\n\n

Taeke:
Yeah, totally agree. And it’s exactly the same philosophy that we live by. It’s more the ethical argument that weighs stronger than any law. It’s about democratizing publishing, making sure that the web is open and can be used by anyone in any situation, whether it’s a temporary or a more permanent one. In the end, we’ll all grow older.

\n\n\n\n

Steve:
Yeah, I mean, we’re building an internet for our future selves. We will get older, and we will have degenerative issues, eyesight issues typically. It’s funny that you bring up democratizing publishing because our CEO, Amber Hines, likes to say that we’re trying to democratize accessibility.

\n\n\n\n

Taeke:
Thanks very much.

\n\n\n\n

Steve:
Alright, thank you.

\n\n\n\n

Taeke:
And while I’m approaching the Do the Woo booth at WordCamp Europe, I see another amazing person that I want to ask some questions. We’re going to see an amazing talk by Fel about the European Accessibility Acts that we extensively discussed already. And I just ran into Bet.

\n\n\n\n

Bet:
Hey.

\n\n\n\n

Taeke:
Hey, Bet, how are you?

\n\n\n\n

Bet:
I’m good. How are you?

\n\n\n\n

Taeke:
I’m good. How are you enjoying WordCamp Europe?

\n\n\n\n

Bet:
I am enjoying it a lot.

\n\n\n\n

Taeke:
Yeah. What brought you here?

\n\n\n\n

Bet:
I get to talk to all kinds of people about accessibility.

\n\n\n\n

Taeke:
Awesome. Just accessibility?

\n\n\n\n

Bet:
Well, selling myself, yeah.

\n\n\n\n

Taeke:
What we’re doing. Well, sell yourself to the audience. Who are you? What do you do?

\n\n\n\n

Bet:
I’m Ben Hannon. I’m the CEO of AccessiCart. We do web accessibility for e-commerce and other folks too, but primarily e-commerce. We work on WordPress, Shopify, and Magento.

\n\n\n\n

Taeke:
And what does that mean, “we work on”?

\n\n\n\n

Bet:
We do accessibility consulting and testing for those platforms, and then we can do remediations in WordPress, but not on the others. We tend to partner with agencies, working alongside them to identify issues, prioritize them, help them solve them, and retest and document everything.

\n\n\n\n

Taeke:
You guide them through the process with the aim of going from one project to the other or training them on the job and letting them go at some point?

\n\n\n\n

Bet:
Yes, we build up the skills of the developers there. We do some project work, project management for remediation, or consulting for a development project. But our bread and butter is doing accessibility maintenance plans. Accessibility can be affected by any kind of content change. Sometimes even a plugin update can make something inaccessible. So we work with them to monitor and work on the sites continuously. For many, it’s about identifying and solving a few problems every month, step by step.

\n\n\n\n

Taeke:
And that gets them documentation that shows they’re making incremental progress. It’s about showing they’re taking it seriously, right?

\n\n\n\n

Bet:
Exactly. And having those documented reports makes it more affordable for many people to begin thinking about doing it in smaller chunks.

\n\n\n\n

Taeke:
You’re from the US, right?

\n\n\n\n

Bet:
Yes, I’m from Oregon.

\n\n\n\n

Taeke:
So you deal with the Americans with Disabilities Act mainly?

\n\n\n\n

Bet:
Yes, but we also have clients who need to comply with EU laws.

\n\n\n\n

Taeke:
If you look at the European Accessibility Act and compare it to what’s already happening in the US under the ADA, do you see a difference?

\n\n\n\n

Bet:
Yes, the EU law will have a much bigger impact. The ADA was enacted 40 years ago, before websites, so it wasn’t written for websites. Lawsuits are brought under the ADA, and courts usually say you have to remediate to WCAG 2.1 AA. But the EAA talks about those standards plus regular testing and reporting, which isn’t required in the US unless they have EU customers.

\n\n\n\n

Taeke:

\n\n\n\n

So the European Accessibility Act is really an act about accessibility, and it’s up to the European countries to implement it into law. It’s inclusive.

\n\n\n\n

Bet:
Yes, and in some countries, like Germany, competitors can file a complaint, which really motivates people to get that competitive advantage.

\n\n\n\n

Taeke:
I hope there’s enforcement and it’s taken seriously. From Europe, we look at the US and see it as the Wild West with the ADA.

\n\n\n\n

Bet:
Yes, the European Accessibility Act is friendlier but has a bigger impact. It’s about being inclusive.

\n\n\n\n

Taeke:
With only one year to go, I’m a bit worried that we’re not ready for this.

\n\n\n\n

Bet:
But there’s more awareness now. Agencies and clients are starting to realize they need to step up.

\n\n\n\n

Taeke:
It’s a mindset. If we don’t feel it, if we don’t have the empathy to understand what it’s like not to be able to use the web, then…

\n\n\n\n

Bet:
Exactly. If you’re lucky enough not to die suddenly, you’ll probably need accessibility.

\n\n\n\n

Taeke:
Yes. Someone mentioned we’re building the accessible web for ourselves. We’ll all grow older and benefit from this. Thanks for the catch-up, Bet. Let’s see if we can get you on the show soon.

\n\n\n\n

Bet:
That would be great. Thanks a lot.

\n\n\n\n

Ash:
My name is Ash Shaw. I’m from Lightspeed WordPress Agency. We did some testing using BrowserStack accessibility tools and PageSpeed Lighthouse. We’ve been fixing issues within our free open-source theme listed on WordPress.org.

\n\n\n\n

Taeke:
What’s it called?

\n\n\n\n

Ash:
NSX Design. None of our software in the past was accessible. After we purchased courses from the A11Y Collective, we skilled up in accessibility. My designer, developers, and I all skilled up.

\n\n\n\n

Taeke:
That’s amazing.

\n\n\n\n

Ash:
It made a huge difference to our understanding of accessibility and compatibility. We have clients worldwide, but mainly in South Africa. Now that we have a base that is accessible, we can build accessible sites.

\n\n\n\n

Taeke:
You’ve just taken the first steps towards full accessibility in your client work?

\n\n\n\n

Ash:
Yes. We’re using tools like Stark as a browser extension and in Figma. We’re dealing with contrast issues, button sizes, font sizes, etc. Yesterday, I worked with the accessibility table at Contributor Day and got input on our theme issues. Some issues are in Core or WooCommerce or Gravity Forms.

\n\n\n\n

Taeke:
I know there are issues in WordPress and WooCommerce, but I also know people are taking it seriously. After WordCamp Europe, WooCommerce will work on their plugin and address 50-60 accessibility issues.

\n\n\n\n

Ash:
Yes, Amber Hinds is leading that. I reported the issues I found, and she’s logging them as GitHub issues.

\n\n\n\n

Taeke:
Thank you for that contribution.

\n\n\n\n

Ash:
It was a fun day. I learned a lot. My developers struggled at first but eventually got it.

\n\n\n\n

Taeke:
It takes time to go from awareness to practice. That’s why it’s important to start working on accessibility now, especially with the European Accessibility Act in mind. It’s only a year away.

\n\n\n\n

Ash:
Now that we have this knowledge, every project we do will use these tools. We get free access to the BrowserStack accessibility tool, and I’ve recommended it to other users.

\n\n\n\n

Taeke:
A lot more people will thank you for that suggestion because this is the Do the Woo podcast on accessibility. This will be broadcasted after WordCamp Europe. Thank you for all the tips and your experiences. I’m going to see if I can tackle a few more people and hear their stories about accessibility. Thanks a lot.

\n\n\n\n

Ash:
Thanks, man. See you.

\n\n\n\n

Taeke:
Hello Ingrid. Can you tell us a little bit about what you’re doing here, what you’re promoting here at the Accessibility Collective booth?

\n\n\n\n

Ingrid:
We are an e-learning platform with courses for designers, developers, and content writers, mostly marketers, to ensure the web is fully accessible.

\n\n\n\n

Taeke:
Is there a lot of interest in the booth today?

\n\n\n\n

Ingrid:
Yes, definitely. From frontend developers, backend developers, and plugin creators. It’s a diverse audience, which is fun to talk to about accessibility.

\n\n\n\n

Taeke:
Who is the Accessibility Collective aimed at? Is it for a specific discipline?

\n\n\n\n

Ingrid:
It’s important for all disciplines creating or writing content for the web to ensure full accessibility. It’s a team effort.

\n\n\n\n

Taeke:
I see a potential candidate for a small interview. Hi Josepha. Can I ask you a couple of questions? This is the Accessibility Podcast from Do the Woo.

\n\n\n\n

Josepha:
By some fluke of nature, we also have the current project ambassador from the TYPO3 Project.

\n\n\n\n

Taeke:
Wow, that’s amazing.

\n\n\n\n

Josepha:
You can ask us both a question.

\n\n\n\n

Taeke:
Can you tell me what accessibility, specifically web accessibility, means to you personally or professionally?

\n\n\n\n

Josepha:
I think the most important thing about accessibility that people often overlook is that it is a subset of usability. We are all just temporarily fully abled. Just because you feel accessibility doesn’t apply to you now, doesn’t mean it won’t later. It’s something we should all care about because we are a global project trying to make the world a better place, making commerce and access to cool stuff better and easier for more people.

\n\n\n\n

Taeke:
That’s a great opinion. Thank you for that.

\n\n\n\n

Mathias:
My name is Mathias Bolt Lesniak. I am the project ambassador of TYPO3, a friendly cousin CMS to WordPress. We work together in the Open Website Alliance. My elevator pitch about accessibility is this: I once stood in front of an elevator in a hotel and pressed the button. The elevator came with a person inside who asked, “Where am I?” The elevator had braille everywhere, but the key card scanner wasn’t marked in braille. It’s an excellent example of how important accessibility is. You can’t just do it as an afterthought. You have to think through it the whole way. If you skip a step, you lose the visitor.

\n\n\n\n

Taeke:
You ruin the experience, you lose the visitor. It’s a great example, especially in digital accessibility for e-commerce. The whole store can be accessible, but maybe the marketing team forgot something, and the user experience is ruined. Thanks very much.

\n\n\n\n

Mathias:
Thank you.

\n
\n\n\n\n\n

Welcome to this special episode of All Things WordPress and WooCommerce accessibility podcast, recorded live at WordCamp Europe. In this episode, your host Taeke takes you on a journey through the bustling conference, engaging with various experts and enthusiasts in the field of web accessibility.

\n\n\n\n

First, Taeke catches up with Manuela van Prooijen, who has developed a successful training program for virtual assistants in the Netherlands to bridge accessibility gaps between backend developers and marketing teams. Next, he speaks with Steve Jones, the CTO at Equalize Digital, who shares insights about their Accessibility Checker plugin and their notable collaboration with NASA. Then, Taeke interviews Bet Hannon, CEO of AccessiCart, who discusses their work on web accessibility for e-commerce platforms like WordPress, Shopify, and Magento.

\n\n\n\n

The episode also features a conversation with Ash Shaw from Lightspeed WordPress Agency, who shares their journey towards building accessible sites and the tools they use. Additionally, Ingrid from the Accessibility Collective talks about their e-learning platform aimed at making the web fully accessible for everyone. Finally, Taeke has an enlightening discussion with Josepha from Automattic, and Mathias Bolt Lesniak, the project ambassador of TYPO3, who highlight the importance of comprehensive accessibility planning. Join us as we explore these valuable perspectives on creating a more inclusive web.

\n\n\n\n

Hightlights

\n\n\n\n

Training for Accessibility: Manuela van Prooijen highlights the importance of training virtual assistants to bridge accessibility gaps between backend developers and marketing teams, emphasizing the need for hands-on workforce in the Netherlands.

\n\n\n\n

Accessibility Tools: Steve Jones from Equalize Digital discusses their Accessibility Checker plugin, which evaluates website accessibility issues in real-time, and shares their experience working with NASA to ensure the accessibility of their new WordPress website.

\n\n\n\n

Ecommerce Accessibility: Ben Hannon, CEO of AccessiCart, explains their approach to making e-commerce platforms like WordPress, Shopify, and Magento accessible, focusing on consulting, testing, and maintaining accessibility over time.

\n\n\n\n

Building Accessible Foundations: Ash Shaw from Lightspeed WordPress Agency talks about their efforts to build accessible websites from the ground up, using tools like BrowserStack and Figma to address issues like color contrast and font sizes.

\n\n\n\n

Team Effort in Accessibility: Ingrid from the Accessibility Collective emphasizes that creating accessible web content requires collaboration across all disciplines, including designers, developers, and content writers, to ensure a fully inclusive web experience.

\n\n\n\n

Holistic Accessibility Planning: Mathias Bolt Lesniak, the project ambassador of TYPO3, shares a real-world example illustrating the importance of thorough accessibility planning, stressing that skipping any step in the process can ruin the user experience.

\n\n\n\n

Ethical and Legal Motivations: Several participants, including Steve Jones and Ben Hannon, highlight the dual motivations for accessibility—both ethical (making the web usable for everyone) and legal (complying with laws like the European Accessibility Act and the ADA in the US).

\n\n\n\n

Future-proofing: The discussions underscore the importance of building an accessible web not just for current users but also for future generations, as everyone will benefit from accessible design as they age or face temporary or permanent disabilities.

\n\n\n\n

Links

\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2024 09:02:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.6 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/07/wordpress-6-6-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9307:\"

WordPress 6.6 RC3 is ready for download and testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC3 on a test server or a local environment.

\n\n\n\n

Reaching this phase of the release cycle is a worthy achievement. While release candidates are considered ready for release, your testing is still vital to make sure everything in WordPress 6.6 is the best it can be.

\n\n\n\n

You can test WordPress 6.6 RC3 in four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the RC3 version (zip) and install it on a WordPress website.
Command LineUse the this WP-CLI command:
wp core update --version=6.6-RC3
WordPress PlaygroundUse the 6.6 RC3 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.
Please test WordPress 6.6 RC3 in one or more of these four ways.\n\n\n\n

The target for the WordPress 6.6 release is next Tuesday, July 16, 2024. Get an overview of the 6.6 release cycle, and check the Make WordPress Core blog for 6.6-related posts in the next few weeks for further details.

\n\n\n\n

What’s in WordPress 6.6 RC3?

\n\n\n\n

Thanks to your testing (and many other contributors‘ up to now) this release includes eight bug fixes for the Editor and 18 tickets for WordPress Core.

\n\n\n\n

Get a recap of WordPress 6.6’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since RC 2, you can browse the following links:

\n\n\n\n\n\n\n\n

Want to look deeper into the details and technical notes for this release? You might want to make your first stop The WordPress 6.6 Field Guide. Then, check out this list:

\n\n\n\n\n\n\n\n

You can contribute. Here’s how

\n\n\n\n

WordPress is the world’s most popular open source web platform, thanks to a passionate community of people who collaborate on its development in a wide variety of ways. You can help—whether or not you have any technical expertise.

\n\n\n\n

Get involved in testing

\n\n\n\n

Testing for issues is critical to keeping WordPress speedy, stable, and secure. It’s also a vital way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.6. If you’re new to testing, follow this general testing guide for more details on getting set up.

\n\n\n\n

If you encounter an issue, please report it to the Alpha/Beta area of the support forums. If you are comfortable writing a reproducible bug report, you can also report it on WordPress Trac. Before you do either, you may want to check your issue against a list of known bugs.

\n\n\n\n

Curious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

\n\n\n\n

Please update your WordPress product

\n\n\n\n

If you build themes, plugins, blocks, or patterns, your efforts play an integral role in adding new functionality to WordPress and helping bring new people and ideas to the most vibrant (and massive!) open source community in the world. 

\n\n\n\n

Thanks for continuing to test your products with the WordPress 6.6 betas and release candidates. With RC3, you’ll want to make sure everything is working smoothly, and if it’s a plugin, update the “Tested up to” version in its readme file to 6.6.

\n\n\n\n

If you find compatibility issues, please post detailed information to the support forum.

\n\n\n\n

Help translate WordPress

\n\n\n\n

Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.

\n\n\n\n

The RC3 haiku

\n\n\n\n

One week to go. Then:
Open the paintbox! Try the tools!
Play a new jazz tune.

\n\n\n\n

Props to @meher and @audrasjb. for peer review.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2024 17:39:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: A Journey and the Evolution of WooCommerce with Beka Rice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/the-journey-and-evolution-of-woocommerce-with-beka-rice/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45634:\"
\n

This show is sponsored by…

\n\n\n\n
\n
\n
\n
\n
\n\"\"\n
\n
\n
\n\n\n\n
\n

Avalara: help developers make sure their Woo projects are tax compliance done right with Avalara’s API. Visit their extensive developer resources today.

\n
\n
\n
\n
\n\n\n\nEpisode Transcript\n
\n

Zach:
Zach Stepek here again with Carl Alexander for another episode of the Do the Woo Dev Chats. Carl, how are you doing, man?

\n\n\n\n

Carl:
I had a good WordCamp EU, but I got Covid, so I’m slightly recovering from that now. I’ll be muting my phone so I can cough silently in my apartment, but otherwise, I’m doing quite well. How about you?

\n\n\n\n

Zach:
While you were in Europe getting Covid, I had bronchitis in the US. It’s just been a fun month for respiratory things, evidently.

\n\n\n\n

Carl:
Yeah, apparently summer is now the time for respiratory issues. Usually, we’re from the north, so it’s a winter thing. Winter is when all the bugs come out.

\n\n\n\n

Zach:
Yes, unless you’re talking about cicadas, which have been recent. Those are the bugs that came out this summer for a lot of the Upper Midwest and a bunch of other places too. So that’s been fun. And we as developers, of course, know how to deal with bugs evidently. It’s been a very interesting month, watching some of the changes around Do the Woo. If you’ve missed that and you just come to listen to the dulcet tones of myself and Carl talking with developers about nerdy things,

\n\n\n\n

Carl:
It’s mostly your dulcet tones. I don’t think my tones are dulcet at all.

\n\n\n\n

Zach:
Well, some people may be attracted to the accent, my friend. That being said, if you haven’t heard about the changes around Do the Woo, Bob did a great episode summarizing what shows there are now. We’re up to 12 shows, so I encourage you to check out some of those other shows if you haven’t yet. The most recent is our Enterprise WordPress and WooCommerce show, which is pretty cool, partnered with the Scale Consortium for that. So really cool stuff. But yeah, we’re growing and changing, and that’s always nice to see. This month we have decided to invite a friend I’ve known for a very long time now, Beka Rice, to join us here on the dev chat. Let’s start out, Beka, by introducing you a bit and seeing how you have been in the last month.

\n\n\n\n

Beka:
Yes, I am one of the lucky folks who did not get Covid from WordCamp Europe, so very grateful for that. I had enough respiratory illnesses this winter that I am glad to be done with it, but it’s good to see you guys again. As Zach noted, I’m Beka Rice. I’ve worked with WooCommerce since 2013, maybe even before that. It’s been a long time—since I think version 1.4 if I go back in time a bit. I was one of the original folks at SkyVerge; Max, Justin, and I were partners there. We worked at SkyVerge for a long time and were acquired by GoDaddy in 2020. I still worked in the Woo ecosystem but had a number of other responsibilities and projects I was working on there as well. I left earlier this year after a few years of doing some really cool stuff but wanted to be back working with a small team. So now I have reentered the Woo atmosphere and am very excited to be back doing specific work with a small team again at Kestrel. It was nice to reconnect with a lot of people at WCEU, so if you were one of them, it was very good to see you again.

\n\n\n\n

Zach:
Yeah, no, that’s quite a journey. I tell the story of how I got into WooCommerce—building a website for a record label I was part of, using the white light theme back in the day.

\n\n\n\n

Beka:
It wasn’t Canvas?

\n\n\n\n

Zach:
No, I used white light because it had the look that I was after. Those were very interesting days. One of my favorite parts of that time period was the fact that it was kind of the Wild West of WooCommerce. The fork had just happened recently, and we were all starting to adopt it and get into it. There was this Trello board with all these ideas for integrations and plugins, and people would go in there, claim the things they wanted to build, and then build them. Suddenly, we had this ecosystem of plugins and extensions for WooCommerce that started to grow. You and Max and Justin were very early in all of that. I know there were some cards that were claimed that you didn’t end up building. One in particular was taken over by someone else when the bandwidth just wasn’t there to do it. I think that was subscriptions, right?

\n\n\n\n

Beka:
Well, I would have to ask them if that was a card they had talked about or not, but there were a number in the early days. I think “Wild West” is a great way to describe it because the community was so small at that point that you had a couple handfuls of developers who had gotten into WooCommerce, but there weren’t very many. There were more integrations and ideas and extensions than could simply be built by that small group of people. So certainly Max and Justin were earlier with that. I wasn’t developing anything at that time myself; I was more so doing documentation and support. But yeah, there were a lot of things that got built, some things that didn’t, some ideas that probably were big misses still. But with subscriptions in particular, that landing with Brent was probably a great thing all around. You can’t be mad about a really fantastic piece of software that someone else built.

\n\n\n\n

Zach:
I don’t think so. Honestly, the ecosystem wouldn’t have Action Scheduler if that hadn’t happened. For those who don’t know, WooCommerce Subscriptions is what birthed Action Scheduler, which is the way WooCommerce handles asynchronous tasks in the background. Brent Shepherd and his team did all the work to make that happen. I still have my blue T-shirt, the collaborative T-shirt between SkyVerge and Prospress, the Subscriptions team. One of my profile photos that I frequently go back to is me wearing that shirt with a leather sport coat over it next to a performing arts venue that’s now five minutes from my house. It’s one of my favorite pictures, and it was taken by my former business partner, Scott.

\n\n\n\n

Beka:
A lot of fond memories of those times for sure.

\n\n\n\n

Zach:
We were still technically just exiting that Wild West era when the first WooConf happened, and we all got together in Austin. What year was that?

\n\n\n\n

Beka:
The second WooConf in Austin? Yeah, I think it was 2015.

\n\n\n\n

Zach:
You and I both spoke at 2017; we were secondary keynotes then, so that was Seattle.

\n\n\n\n

Beka:
We’re testing our memories here, Zach. But yes, there was one in San Francisco early on that was much smaller, then Austin, and then Seattle. All were really wonderful conferences. I would love to see something like that again in the Woo ecosystem.

\n\n\n\n

Carl:
I tell them all the time, every WooCommerce event. Zach can’t go, but I crash all the WooCommerce events and consistently remind them they should have a dedicated WooCommerce event.

\n\n\n\n

Zach:
A few people are calling for that now, and it’s a common thing. We miss it because it was our chance as a community to not only gather and be a community of builders and developers in one location but also a way to show off the cool stuff that’s been happening.

\n\n\n\n

Beka:
Yeah, it’s hard in Woo, right? With it being decentralized, you don’t always have a view of what other people are doing. There’s no one source, not even Automattic, that knows every WooCommerce site out there. I think it was super valuable to see that across the community.

\n\n\n\n

Carl:
For me, it was more networking. I was trying to find agencies that specialize in that or people that worked with it more because it’s hard at WordCamps. It’s people doing a bit of everything, so it’s hard to find the people that specialize in that. I’m actually really thankful I broke in because Bob sent me an invite that he couldn’t go to the first WordCamp Asia in Bangkok, and that got the ball rolling for me. A lot of WooCommerce people hang on the sidelines a bit at these WordCamps, so it’s hard to know who specializes in it, what the big agencies are, the big plugin companies, the big extension companies, who’s doing cool stuff. It’s just really hard to find them.

\n\n\n\n

Zach:
Yeah, it is, and I think Brian has done a great job with WooSesh, trying to keep some of that alive virtually, but virtual events don’t compare to being in person with a group of people. It’s still fun. I enjoy them. I love what WooSesh and WordSesh have done for the community, but it’s different than gathering in person.

\n\n\n\n

Carl:
Some conferences, like WPCampus, do a hybrid. I got accepted to speak this year but couldn’t go physically, so I declined because I’m like you. I think the physical connection aspect, the physical networking in person, is way better than virtual. So if that’s your goal, it’s really important. Conferences, it’s hard when you do purely virtual. I think it’s good that some events are trying to do this hybrid format at least to accommodate the speakers because it’s also about the speakers. It costs a lot of money. I think WPCampus actually has a bit of a stipend, but WordCamps don’t. So there’s financial accessibility, a question of how comfortable you are traveling. So I think it’s great to have these hybrid events, but for the speakers and attendees, there’s a big difference.

\n\n\n\n

Zach:
It is. Right now, the designer and developer community are coming together in a virtual and physical hybrid event for Figma, right? Figma has their Config event happening yesterday and today as we’re recording. They’ve taken a hybrid model as well. They have a limited number of in-person tickets that sold out, and everybody else can attend virtually, which is pretty cool. I hope to see

\n\n\n\n

more events do that, take that hybrid approach, limit the number of attendees, but offer the people who couldn’t attend in person to attend virtually. It seems to be a really good model. The hardest part with that model is the participation of virtual people compared to those in person. I don’t think anybody’s really cracked the code on that yet. We’ll see, though. We’ll see if somebody figures that one out.

\n\n\n\n

Carl:
I remember there were these little virtual pixel 16-bit hallways during Covid. Some people, you could walk around and I was just like, no, thank you. I’m a bonafide nerd. I’m 41, started coding at seven. My first computer was a Phillips, which I learned something insane, that Phillips spawned ASML and so did TMSC. I always associated Phillips with shaving razors, but apparently, they were really good at computers.

\n\n\n\n

Zach:
They did a great job in the semiconductor industry and other parts of the computer industry. They’re also huge in medical. They’re kind of everywhere. I worked on a project back in my Adobe days. I was working on a Flex application built for a subsidiary of Siemens called Sorian, called Med Suite. It was an electronic medical record system built entirely in Adobe Flex.

\n\n\n\n

Beka:
See, I find it interesting that you guys got into programming and the tech ecosystem prior to, let’s say, Woo or WordPress. Woo and WordPress is actually what got me into the ecosystem. My background was not in tech. I used WordPress early on to manage my website. The reason I learned HTML and then CSS was trying to insert tables on a website. How do I do this? There’s no WordPress to do a table. How do I do tables? Then, after you learn HTML and CSS, you keep going—PHP, you start to learn JavaScript. Even though I wouldn’t consider myself a very talented developer at this point, it’s never been my focus. I learned a lot about building and got into different ecosystems, different applications, worked extensively in Shopify, but have worked on e-commerce platform infrastructure as well. Since you’ve done other things outside the ecosystem prior to working with Woo and Prospress, and I have post working with it, how do you feel like the ecosystem these days compares? It’s definitely more mature than the early days. As a developer, if you were coming into this ecosystem today, are there things you would expect that you don’t see?

\n\n\n\n

Zach:
I think if I were coming in new right now, the thing that would bother me the most is how to add a table that I can actually use in the block editor to call back your table story. The table block kind of sucks right now. Sorry to those responsible for that block, but at least I filed a bug report.

\n\n\n\n

Beka:
Yeah, now you’re responsible for giving them the feedback.

\n\n\n\n

Zach:
It’s inflexible. There’s barely anything you can do with it beyond displaying data. Not a lot of options to customize beyond that. The ecosystem is interesting. It is at this inflection point between what it used to be, primarily PHP, and what it’s becoming, this hybrid of PHP and React, JavaScript, and whatever new technology we want to insert next. The interaction API isn’t react. It’s something else. I can’t remember what the framework is. Is it Alpine JS?

\n\n\n\n

Carl:
No, we were saying they should have. We had a conversation with Marcel and Mike when we did our joint. I have a lot of thoughts on the current state because I teach a lot of programming. I wrote an object-oriented programming book for WordPress developers that teaches computer science topics. It’s a huge loss to WordPress that you can’t do what you went through.

\n\n\n\n

Beka:
Yeah, it’s really easy to get started with React, and then 27 steps later, now you can finally write some code.

\n\n\n\n

Carl:
Yeah, exactly. It’s not easy. There’s a lot of… I think now more than ever, WordPress needs to think about developer experience more if they want to go that route. Before, PHP by itself offered a really good developer experience because you could just literally edit a file, FTP it up. Okay, you’re cowboy coding, but you could get something done. You could change something and see the effect.

\n\n\n\n

Beka:
Well, you could see your white screen of death, but then you got to see your effects later.

\n\n\n\n

Carl:
Then you fixed it, or you could display errors there. It felt more accessible for somebody with no programming background. Now it’s like, oh, I have to learn react templates. I have to learn this. I have to learn that. But forget about that because does my thing even build right now? I think it’s a huge loss to the ecosystem. I’m starting to get to the point where, I mean, things change. Nothing stays the same forever. But I think it’s more obvious than ever that WordPress, yes, it’s more mature, but the whole community nature of it is not really the same either. My favorite analogy is that it’s more like a corporate-backed open source project like MySQL. MySQL is super boring. Nobody knows who works on MySQL. It’s Oracle that must sponsor a lot of developers. WordPress is not quite the same, but it’s not the kumbaya of open source where people can make contributions. But there needs to be a focus on developer experience, especially in the PHP ecosystem. You’re competing with JavaScript, which is really popular. Then on the other side, you have something like Laravel that actually does care about developer experience. It’s completely different. If I told somebody to learn something in PHP, now I’d tell them to try Laravel. They’ll be closer to doing what you wanted to do, which is edit a template file. The syntax is different, but I see HTML tags. I can add some HTML tags. There’s some stuff there. I don’t have to compile it. There’s just so much tooling around it. How do you bring new people in? WordPress used to attract people that never did programming. That’s the best part. That’s what I find the most exciting. I think that’s what makes the community so diverse. People came from so many different backgrounds, just learned WordPress, and could contribute and build a company like yours. Well, you’re at your second company now, but SkyVerge was a big company, got bought by GoDaddy, and it started with somebody editing HTML files and adding tables. That’s amazing. To me, that’s crazy. So that’s why I think about that a lot.

\n\n\n\n

Beka:
Yeah, the diversity one is interesting. I certainly don’t have a problem at all with a project evolving and becoming more mature. There were parts of WordPress that needed that. If we go back 10 years, the Wild West wasn’t the way.

\n\n\n\n

Carl:
No, absolutely.

\n\n\n\n

Beka:
We’ve all seen the good and bad side of that. I think the biggest thing that I see sometimes is if you don’t have that kind of diversity of thought, you develop pieces of the project in a certain way. I sometimes see that with blocks. Exactly, your point about the table block. One of the things I’ve seen in WordPress is it was so accessible to me because of how extensible it was. You learn about actions and filters and the hook system, and you’re empowered to change something without having to completely write your application. Literally with a code snippet, six lines of code, I can change a thing. It gets addictive in a way where now I’ve changed this thing.

\n\n\n\n

Zach:
Absolutely.

\n\n\n\n

Beka:
Then you learn more. Within a couple of years, I was like, I really want to write my own plugin and started writing my own plugins. You progressively learn. I’m not saying my path is the right one or even a good one, but that extensibility is what got you in. It empowers a lot of people to use the software and made it popular. Sometimes with the block ecosystem, and I’ve had conversations with the Woo folks about that, who have been very receptive, which is wonderful, without that extensibility or ability to modify things, it makes the project less accessible to those tinkerers. People just trying to build a website for some local business that contracted them and is like, can you do this? It sacrifices some of the interoperability that’s unique to commerce. If you’re a publishing site, a block may be the most atomic piece of your workflow. I put a form here, a button there. But from our perspective, working in WooCommerce, that’s not the smallest piece because another extension needs to modify that too or add something of its own into your form. That’s been challenging. The diversity of thought of people who have grown up in open source and with that extensibility and playing in the sandbox with everybody else versus in isolation is something I feel is missing in modern day. I don’t know if you feel the same way.

\n\n\n\n

Zach:
I do to a point. I’ve provided feedback on some of the blocks WooCommerce has released, like the cart and checkout blocks. They are these monolithic pieces. They’re not separated well and weren’t extensible for a while. It wasn’t easy to extend them. They finally added the ability to add your own text blocks to the checkout, which was missing. I think the more we think about blocks, the more we have to think about blocks at the atomic level and how they compose into larger patterns. The patterns weren’t fleshed out when WooCommerce blocks started. I get why the checkout block and the cart block are more these monolithic block components, but now they would be better suited to being a pattern, a composition of numerous blocks that make up all those individual pieces. We would finally get back to some customizability and the ease of customizability on WooCommerce pages. We wouldn’t be back to the level of code we had the ability to tweak and customize before, but we’d have a clear delineation between front end and backend development. The visual display being separate from the backend processing makes sense long-term because it gives us

\n\n\n\n

more flexibility. As it sits right now, we’re getting there, but we’re not there yet. I just taught a course for Solid Academy talking about WooCommerce fundamentals with people who haven’t dove into WooCommerce yet. My favorite thing when teaching WooCommerce is showing people the Business Bloomer visual hook guides for the first time. They have this light bulb moment of, oh, so that’s what hooks are, that’s what they’re supposed to do. That’s what actions and filters are. Actions interrupt the flow of code, do something, and return control, and filters take an input, modify it, and return it back. Those are the two things we have from a code perspective to change how things work by overriding how they do by default. Just this eye-opening moment for developers where they see those visual hook guides and it clicks. Oh, okay, these are all the things and this is where they live, and this is why overriding that hook or changing its priority does what it does. That’s the power of where we’ve been. We have to make sure we don’t lose that.

\n\n\n\n

Beka:
Yeah, I would agree. With PHP, it’s a little easier versus something more event-based like JavaScript. It’s easier for a newcomer to grasp. I don’t lament that we’ve ruined WordPress. It’s a big step forward. People who have been in Woo as long as we have, we’ve seen some things. There’s the adolescent phases of version 1.6 to 2.0 or 2.3 to 3.0. Those were huge jumps for the project. There’s a lot of pain to grow up as an ecosystem. I feel like this phase is like that for me, but I’m also back in the ecosystem. It’s a good change and will make things better. The biggest thing is preserving that superpower of the ecosystem, that interoperability between different code projects merging into one execution stream at runtime. How do you preserve that and welcome different builders into that workstream? I think it’s a little scary. People are scared because that results in bad things sometimes. But the net positive of the kinds of sites people can create is really cool. Sometimes you have to take the good with the bad.

\n\n\n\n

Zach:
I’m reminded of the commercials for State Farm. “We know a thing or two because we’ve seen a thing or two.” We’ve been through the trenches of building WooCommerce sites larger and more complex than imagined. It’s amazing that open source can do that. It can enable something that even the creators had no clue was a possibility when they were starting out. I don’t think Mike and James had any idea that something they were working on would power billions of dollars in commerce.

\n\n\n\n

Beka:
Every year, right? Billions every year. They’ve published the global GMV of WooCommerce sometimes in WooSesh. It’s probably even an underestimate from what I’ve seen. Last time they estimated WooCommerce powers tens of billions.

\n\n\n\n

Carl:
It’s hard to get an estimate.

\n\n\n\n

Beka:
Yeah, because there’s no centralization. I’ve looked at different ways to estimate, but it’s hard to know how much revenue is online versus offline for some businesses that use it.

\n\n\n\n

Carl:
Some people use it internally.

\n\n\n\n

Beka:
At least tens of billions.

\n\n\n\n

Carl:
I know from indirect clients that they use it just for internal warehousing and internal customers. If you’re a big company…

\n\n\n\n

Beka:
Running your own swag store.

\n\n\n\n

Carl:
Yeah, exactly. It could be a swag store or just managing inventory between divisions. In big companies, the financialization is interesting. It’s impossible to track all that usage.

\n\n\n\n

Beka:
The cool thing is they do that because you can customize it. It has those crazy diverse use cases because of that customization. Your software can work together easily with other software.

\n\n\n\n

Carl:
It’s the only option. That’s why I’m still really bullish. Even if Shopify is great, if you want a self-hosted thing, your other option is Magento, and that’s not really a road most people want to go on. That’s really exciting. Just from a developer aspect, it’s not necessarily lamenting, but it comes from being around programming for so long.

\n\n\n\n

Beka:
Yeah, you care about it. You want it to be better.

\n\n\n\n

Carl:
But also, I love programming. You described it the best way. You can make little changes and feel empowered. It’s the empowerment. You put a filter, six lines of code, and it did something. And you’re like, holy crap, I’ve done something. That’s addictive. How do you get people to that space as fast as possible with as little technical knowledge as possible is really important, even if you’re not the flavor of the month framework. That’s the essence. Things can mature and not stay accessible, and that’s okay. But if you want to think about the health of the ecosystem and bringing new people in, I was really heartened to meet a couple of 23-year-olds at WordCamp EU. I thought we were all late thirties, early forties people. There weren’t a ton of them, but a few. That’s really important. It doesn’t have to be cool, but you want to make it something they’re not like, okay, boomer. It’s always going to be like, oh, I want to try the newer thing. It’s good to keep that in mind. The harder it is, the more people don’t want to do it, and the harder it is to bring people in, which affects health of products, hiring, maintaining talent.

\n\n\n\n

Beka:
You don’t want to become COBOL in a few years, right?

\n\n\n\n

Carl:
Yeah, exactly. I’m trying not to say COBOL, but basically not become COBOL. There’s a big gap between that, but this idea that it’s good for the ecosystem too, for indirect reasons.

\n\n\n\n

Beka:
The accessibility becomes a big thing. It reminds me of what General Assembly did for Rails and how easy it was for people to pick up and start learning. By the end of six weeks, they build a small web app. I hired a lot of Rails developers. Some of our software was Rails with a React front end. As a small company, we didn’t always hire people that junior, but it was amazing how people could have no code experience but have an interactive web app they built by the end because of how accessible the ecosystem was. Carl, to your point, that’s a good measure of how well you can thrive and get people in the door. Not people like us who do this all day, every day, and build software for the platform. It’s people building WordPress websites and need to customize something for a client. Can they do it? If there’s not a plugin that exists or it only gets them 90% of the way there, have we made it easier for them to get on board and try?

\n\n\n\n

Carl:
I always try to think empathetically. PHP is my sixth or seventh programming language. I’m not a representative person, so I always try to think. I think programming is a life-changing career that anybody, regardless of educational background, could get into. Anything that empowers people to do that, to have that opportunity, is huge. WordPress attracted people that never did programming. That’s the great thing. A lot of people career changed into WordPress, built companies, sold companies, made money, learned even more complicated things. It was great. That’s always what’s in the back of my mind.

\n\n\n\n

Zach:
A couple of things based on what was just discussed. We have a newer podcast here at Do the Woo, part of the All Things WordPress and WooCommerce podcast, called The Next Gen, with Allison Dye and Sophia DeRosia talking about WordPress and the next generation of WordPress. It’s interesting to see what that looks like from their perspective as younger people in this ecosystem. I’m excited about the next generation of WordPressers. There’s a lot of possibility and potential. I’m excited about newer community members driving us forward. Also, I got into computers by breaking something. There’s an inherent desire to tinker that comes with being a developer. I was tinkering before I knew what I was doing, and I ended up breaking my grandmother’s brand-new computer. I ended up on the phone with my friend’s dad, Tom, who worked at Baxter Labs in their IT department. He was the only person I knew who could help me fix what I had done. I spent hours on the phone with him, and he took his time to help me rebuild the operating system when I was nine or ten years old. That pushed me to understand that tinkering may have a cost, but it also has a benefit. I never stopped tinkering. I encourage anybody interested in development, sitting on the builder side thinking, wow, I really like hearing Zach and Carl talk about development, but it seems daunting to get into it. Just tinker. At the core of what we’re talking about, the block ecosystem changes tinkering in a way that makes it more difficult. I would encourage people who are newer to WordPress to look at the Roots Project with Radical. It uses the Roots stack and the Roots ecosystem. They have this thing called ACORN that lets you use Laravel inside WordPress. It’s a completely different way of looking at things than the block editor. It has ways to use and build blocks with an HMR-supported build setup. These are really cool things as part of a nice starting point if you’re interested in trying something different than what WordPress core does by default. It’s the power of an open-source ecosystem that allows people to build anything because we have all the code. That’s powerful. Sometimes we lose sight of that as a community that’s been in it. If we were working in a closed-source ecosystem like Shopify, BigCommerce, Squarespace, Wix, or Weebly, we don’t know the internal workings. We have a set of integration points, but that’s the limitation. We can only talk to the things we’re allowed to. It’s harder to build highly custom things. One of the things I talk about frequently is that Woo

\n\n\n\n

Commerce enables non-traditional stores. We have a ton of capability for selling physical products, but we can also, due to plugins, do things that are significantly different. We can do event ticketing, bookings, hotel reservations. Try that with Shopify out of the box. WooCommerce is highly focused on physical products. It’s not particularly great at virtual products. It can do it, but not particularly well.

\n\n\n\n

Beka:
You need apps to do that.

\n\n\n\n

Zach:
Yes, you need the booking plugin. Virtual products, event ticketing, time and resource-based booking, accommodation booking, membership sites, online courses, charitable giving, fundraising, peer-to-peer software subscriptions—these are all business models powered by WooCommerce. Think beyond physical products. These are things plugins enable. All these things are possibilities inside the WooCommerce ecosystem. That’s insane. There’s no other e-commerce platform that can do all those things and do them well. That’s a strength.

\n\n\n\n

Beka:
If you were getting into the Woo ecosystem to build things right now, how would you use that information? Would you be building booking plugins? What would you be doing if you were listening to this?

\n\n\n\n

Zach:
I would shift my definition of e-commerce because what we think of as e-commerce is generally the Amazon model of selling a product and shipping it. Shipping at such a low cost that margins are low. It’s hard to make money without volume when your margins are low. Amazon changed the physical product world. I would change my definition of commerce to be anything that involves transacting through a website.

\n\n\n\n

Beka:
Using Woo with a framework to do that.

\n\n\n\n

Zach:
Absolutely.

\n\n\n\n

Carl:
Exactly. I agree with that.

\n\n\n\n

Beka:
You heard it here, folks. If you’re a new developer, building the next invoicing app for plumbers is the way to go. I agree. Service businesses and other kinds of businesses—you see them more commonly on Woo because they can’t use anything else.

\n\n\n\n

Zach:
In addition to that, you have these restricted product categories that don’t have other choices. These restricted product categories are growing by leaps and bounds.

\n\n\n\n

Beka:
Shout out to all the vape stores out there.

\n\n\n\n

Zach:
There are sites I know of in restricted categories doing hundreds of millions of dollars in sales in a month just through WooCommerce. That’s because we have the capability to build payment gateways and plugins that tie to high-risk payment processors willing to take that business. That’s the open-source nature of WooCommerce and WordPress.

\n\n\n\n

Carl:
Or selling gray market stuff. But one of my favorite WooCommerce sites is a Canadian site to buy magic mushrooms. It’s WooCommerce, and it’s the coolest site. They went all out with a Miami Vice aesthetic. But they can do that. What you can host, what you can sell, what payment options you have is important. So I really like Zach’s idea of expanding, really think about e-commerce literally as electronic commerce. Are you doing commerce online for anything? Like you said, plumber, wedding DJ, book gigs as a wedding DJ and charge for it. Anything. It lets you do that. That’s the real way to think about the platform.

\n\n\n\n

Beka:
I favor people I can pay online for things, even a DJ or booking something. If I can do it and pay online, I feel like it usually indicates people are more serious about their business versus someone I have to call and book.

\n\n\n\n

Carl:
Oh, interesting.

\n\n\n\n

Zach:
The four to six times a year I book a haircut, I do it online. That’s how I reserve that person’s time. I do the same with my doctors, my therapist, and all the other services I consume regularly. All the booking is done virtually now. I’m not calling somebody to set these appointments up. Building these tools increases accessibility to services for people who wouldn’t want to book them because of the friction involved. Friction is a killer. I know we’re talking about development, but these things are important to know. Friction is a killer. Statistically, the abandonment rate is 57%. Friction is enough for them after making a purchase decision to cancel, to abandon their decision. They’ve decided to give you money, and now 55% of shoppers say friction is frustrating enough to quit a purchase. Crazy. Friction can exist in multiple ways. For some people, making a phone call to a location to set up an appointment is terrifying.

\n\n\n\n

Carl:
Don’t make me call. I’m extroverted and will talk to anybody at a conference, but don’t make me call for support. I just want to do it online or via form or email.

\n\n\n\n

Zach:
Building these tools increases the accessibility of these services to people who normally would not want to book them because of friction. I think the future of commerce is going beyond the Amazon model. It’s a great model. It works well. But people who look at things more creatively and don’t just copy Amazon will see huge returns. Experimentation will be rewarded in the coming years because e-commerce is growing. The industry segment is growing. It’s already billions more than we thought it would be and will be billions more. I think we’re crossing the trillion-dollar threshold this year in the US for e-commerce transactions. So much money is being transacted online. For anybody thinking, wow, I really want to get into this space, do it. Beka is a testament that you can get into this space, build things people love, and get a call from someone as crazy as GoDaddy, be acquired, build product inside a large organization, then exit and come back in and start again with another plugin company, Kestrel. I can’t wait to see what you, Max, and Justin do with Kestrel. It’ll be a lot of fun to see the future unfold. But we’ll leave that for another podcast.

\n\n\n\n

Beka:
You ended with a cliffhanger, Zach.

\n\n\n\n

Carl:
That’s how we get you back.

\n\n\n\n

Zach:
We’re talking about having you come back for a product chat in the near future. Be on the lookout for it. Have Beka come back in and talk more about the story behind Kestrel and where Kestrel is going. It’s been a joy talking the history of Woo and some of the thoughts we have around where things are going and development in general. Thank you for joining us this week. Before we wrap up, I always give Carl the opportunity to ask any final questions he has.

\n\n\n\n

Carl:
I don’t have any follow-up questions. I’ve just really enjoyed the discussion. I thought it was really good.

\n\n\n\n

Beka:
Carl’s going to ask when I start building block tooling. Don’t ask me that, Carl.

\n\n\n\n

Carl:
I wouldn’t invest in block tooling until they can say, okay, we’re done. Some people tried to build abstractions around blocks, but it’s so volatile and unstable that it’s not worth the investment to maintain that.

\n\n\n\n

Beka:
Yeah, I’d agree. You need to work with Woo and WordPress core to make those things happen. The cool news is we’re seeing it. It’s super exciting to see something change.

\n\n\n\n

Carl:
There’s an opportunity.

\n\n\n\n

Beka:
Yeah, that’s why I’m back, right?

\n\n\n\n

Carl:
Maybe there will be an ACF for blocks eventually or something to abstract away and make it easier for people to do these blocks. But I don’t think it’s right now.

\n\n\n\n

Beka:
I think ACF block is the ACF block.

\n\n\n\n

Carl:
Yeah, ACF blocks are cool too, but you know what I mean. Something…

\n\n\n\n

Zach:
Yes, absolutely. Something that’ll be a landmark shift in how we build with the block editor. That’s definitely something on the horizon. Some tools are really close already. We’re in a good position to usher in a new future together as a community. For those watching some of the drama in this community, remember you have a choice to engage in that drama or ignore it. You have the ability to change this ecosystem by participating. That’s the wonder of open source and contribution. Despite what some people may think or the feelings some may have, we all have the possibility and potential to influence where the future goes. That’s what I remain focused on. No matter how small a voice you have, you have a voice. Use it.

\n\n\n\n

Beka:
Beautiful.

\n\n\n\n

Zach:
Thank you.

\n\n\n\n

Beka:
Well said.

\n\n\n\n

Zach:
Now that I’ve ended on a high emotional point, Beka, how do people find you on the internet?

\n\n\n\n

Beka:
I’m around. I’d love for people to check us out at kestrelwp.com. As Zach mentioned, we’ve acquired a number of plugins for Woo to ramp back up. We’re excited to be back in the space. I’m on Twitter, B-E-K-A-R-I-C-E. Happy to chat and love to hear what people are building. If you’re in the Woo space and getting into some new projects, let me know how I can help.

\n\n\n\n

Zach:
Awesome. As always, if you have ideas for what you’d like to hear about on a Woo DevChat, go to your favorite social media platform and use hashtag bug Bob. We’re still going to make this thing happen. Hashtag bug Bob. Bob will listen to your feedback or just go to Do the Woo.io and contact us there. We want to hear your feedback. If you want to participate in a dev chat, we’d love to hear your ideas and hear from you directly. On behalf of myself, Carl, Bob, and the entire Do the Woo team, thank you for listening and being part of this amazing community.

\n
\n\n\n\n\n

Welcome to another episode of Woo DevChat and join hosts Zach Stepek and Carl Alexander as they dive into a lively discussion with Beka Rice, a seasoned WooCommerce expert and product architect at Kestrel.

\n\n\n\n

In this episode, Beka shares her journey through the evolving WooCommerce ecosystem, the challenges and opportunities in the world of development, and the exciting future ahead with her new venture, Kestrel. Whether you’re a seasoned developer or just starting out, this episode is packed with insights, reflections, and forward-thinking ideas.

\n\n\n\n

Highlights

\n\n\n\n

The Evolution of WooCommerce: WooCommerce has evolved significantly from its early days, becoming more mature and complex. The community has grown, and the ecosystem now includes a diverse range of plugins and extensions.

\n\n\n\n

Challenges with Blocks: The transition to using blocks in WordPress and WooCommerce has created new challenges, particularly around extensibility and ease of customization. Blocks need to be more flexible and easier to work with for developers.

\n\n\n\n

Developer Experience: There’s a need to improve the developer experience within WordPress, especially for new developers. Ensuring the platform remains accessible and easy to tinker with is crucial for attracting new talent.

\n\n\n\n

Diverse Use Cases: WooCommerce supports a wide range of business models beyond just physical products, including virtual products, event ticketing, bookings, membership sites, and more. This versatility is a significant strength of the platform.

\n\n\n\n

Importance of Community: The open-source nature of WordPress and WooCommerce allows for a collaborative community where developers can contribute, innovate, and influence the future of the platform. This community-driven approach is vital for continued growth and improvement.

\n\n\n\n

Focus on Reducing Friction: Reducing friction in ecommerce transactions is essential. Making it easier for customers to interact with businesses online, whether through booking services or making purchases, can significantly improve conversion rates.

\n\n\n\n

Future Potential: There is excitement about the future of WooCommerce and the potential for new innovations. The community is looking forward to seeing how new tools and approaches, such as those developed by Kestrel, will shape the ecosystem.

\n\n\n\n

Encouragement for New Developers: The conversation emphasizes the importance of welcoming and supporting new developers in the WooCommerce ecosystem. Tinkering and experimenting are encouraged as ways to learn and grow in the field.

\n\n\n\n

Links

\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2024 08:15:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.org blog: WP Briefing: Episode 83: Learning Pathways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=17489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2024/07/episode-83-learning-pathways/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:35146:\"

Discover how Learning Pathways can guide you through your WordPress journey with clarity and purpose. In the latest episode of WordPress Briefing, host Josepha Haden Chomphosy welcomes special guest Wes Theron to discuss the newly introduced Learning Pathways. These curated lesson sets are tailored to various experience levels, roles, and use cases, ensuring a personalized learning experience for every WordPress user.

\n\n\n\n

Credits

\n\n\n\n

Host: Josepha Haden Chomphosy
Guest: Wes Theron
Editor: Dustin Hartzler
Logo: Javier Arce
Production: Brett McSherry
Song: Fearless First by Kevin MacLeod

\n\n\n\n

Show Notes

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[00:00:00] Josepha: Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.

\n\n\n\n

[00:00:28] (Intro music) 

\n\n\n\n

[00:00:39] Josepha: As a steward of the WordPress community, one of the big overarching questions that I grapple with is how to make sure people who have just found out about us know how to get around. Obviously, there’s the contributor path, which is important to me because I am especially concerned with the longevity of our little open source community, but there’s also a path for folks who are learning how to use the software.

\n\n\n\n

[00:01:03] Josepha: And so, joining me today to talk through a project called Learning Pathways is Wes Theron. Wes, welcome to the WordPress Briefing.

\n\n\n\n

[00:01:11] Wes: Good day. Thank you very much for having me. It’s a pleasure.

\n\n\n\n

[00:01:13] Josepha: Before we get into this project that we’re talking about, do you want to just tell me a little bit about who you are and what you do with the WordPress project?

\n\n\n\n

[00:01:22] Wes: Yeah. So, as you know, my name is Wes Theron. I’m based in New Zealand, and I’m an instructional designer. And, I am part of the Training Team. So, most of my life revolves around creating learning content for learn.WordPress.org.

\n\n\n\n

[00:01:38] Josepha: Oh, that’s quite a life. Teaching people how to use WordPress.

\n\n\n\n

[00:01:42] Wes: Yeah, I teach WordPress. We run online workshops. I create video tutorials, courses, and now, of course, this great project we’re working on, Learning Pathways.

\n\n\n\n

[00:01:52] Josepha: Yeah. So, I’ve talked about Learning Pathways a few times here on the podcast, but for folks who have not heard me talk about it or who just need a more in-depth understanding, why don’t you tell us a little bit about this project as it stands today? 

\n\n\n\n

[00:02:06] Wes: Yeah, so when Learn started out, I think the main goal was to just get learning content on the site. But, in May of last year, we shared an individual learning survey with folks, and we were hoping to basically find out what are the needs of the learners? What are learners after? And from that individual learner survey, we actually learned a few things. We learned that tutorials, courses, and online workshops were the most used content types. We also saw that web-based learning is the most popular learning method. And then there was a clear need for a structured way of consuming learning material. And that’s basically where the Learning Pathways project was born; to create Learning Pathways that basically target various types of learners, but also various skill levels. So July of last year, we started with outlines, creating outlines for these learner pathways.

\n\n\n\n

[00:03:10] Wes: And then, in October of last year, we actually started creating content. So, the first learner pathways we started working on was the User Learning Pathway and the Developer Learning Pathway. And what that entails is of course, creating a Learning Pathway for beginner users, intermediate users, and then advanced users.

\n\n\n\n

So that’s how we kind of broke it up. And last week, the Beginner Developer Pathway was actually published, so that’s very exciting. And a few weeks before that, the Beginner WordPress User Pathway. And yeah, of course, we’ve got many other pathways in the pipeline that we want to work on. For example, a Designer Learning Pathway and even a Contributor Learning Pathway.

\n\n\n\n

[00:03:57] Josepha: Yeah, when we’re talking about pathways, what we mean is, like, we are figuring out what you probably need to know when you first arrive and then helping you to identify what you build on based on what your goals might be.

\n\n\n\n

[00:04:11] Josepha: Like, obviously, the beginner user, the goal is basically just like, learn how to get WordPress doing stuff at all. Like that’s, that’s an easy goal to understand. But when you all were doing the work to figure out what needed to be in the pathway for a beginner developer, and as you’re looking towards doing the work around intermediate and advanced topics, like how are you all able to determine what most likely you need in those various steps in the learning process?

\n\n\n\n

[00:04:42] Wes: So, of course, a lot of research went into that. When we created the outlines for these Learning Pathways. We shared it with the community. We asked for feedback. And yeah, a lot of research was done to make sure we cover all the all the bases. 

\n\n\n\n

[00:04:59] Josepha: I know that there were a couple of different proposals about how to, like do skills assessments, maybe? There was something where like we were talking with companies that employ WordPress folks in the ecosystem, and then we were talking to WordPressers who were currently trying to make sure that their skills were advanced enough to get those jobs. And we were trying to figure out like the distance between those and where we actually have some concerns around like the language choices that they need, like basic developer language choices and jargon that goes in there and stuff like that.

\n\n\n\n

[00:05:34] Josepha: So this, if I recall correctly, the research for this has been going on for like maybe two or three years, right?

\n\n\n\n

[00:05:42] Wes: Yeah, definitely. And we’ve reached out to many stakeholders within the WordPress community. And as you say, even agencies, and businesses, you know, trying to find out what do they want people to know when they employ them. And yeah, then of course, speaking to the community, speaking, speaking to folks at WordCamps reaching out to folks an online workshops.

\n\n\n\n

[00:06:04] Wes: So, yeah, it’s definitely been an ongoing process and also seeing what resources are lacking and what needs to be there. 

\n\n\n\n

[00:06:12] Josepha: Yeah, so, the very first, the very first iteration of any training that the WordPress project was offering on, I think it was on learn.WordPress.org, but I don’t actually know for sure, was a troubleshooting workshop, because when you are trying to figure out WordPress for the first time, when you are trying to figure out any software for the first time, being able to figure out what went wrong is a really important part of that. And so that was like the only workshop that existed over there for quite some time. And so it’s really nice to see how we have really, not only created a bunch of resources in general, if you all have not looked at learn.WordPress.org lately, it has, like, workshop outlines that you can use to do a training by yourself at your meetup group or at a school or whatever it is.

\n\n\n\n

[00:07:08] Josepha: But then also, I want to say it was maybe two, three years ago, that you all, as a team, the Training Team, started doing these online workshops. And so, when you created the Learning Pathways, considering like how much time and research has gone into this project overall, did you all have learnings that came from those workshops that you had already done? Is this like a collection of workshops or is this something where you can do it at home and learn by yourself and then go someplace else and learn more about WordPress? Like how does that function in what we have already?

\n\n\n\n

[00:07:45] Wes: Yeah, so maybe I should first, maybe let’s define a learning pathway. So I, I thought about this, but a learning pathway, I would say, is a route taken by learner through a range of modules, lessons, and even courses to build knowledge progressively. So it’s similar to a course, but of course usually covers like a specific topic or subject where learning pathways usually have a larger goal.

\n\n\n\n

[00:08:11] Wes: So I wouldn’t say that the online workshops form part of the Learning Pathways project. And maybe I can also clarify that the teacher notes or the lesson plans that you refer to is something that’s also changing going forward. 

\n\n\n\n

[00:08:23] Josepha: Oh, good. Because I wrote some of those, and I am not an instructional designer. And so, ha!

\n\n\n\n

[00:08:30] Wes: We’ve actually decided to move away from having two different content types. So, we had tutorials. You know, video tutorials, and we had lesson plans, and as you said, the lesson plans were notes that somebody could use to run an online workshop or to go to a WordCamp or at their local meetup and use that to teach something. But moving forward for Learning Pathways, we are actually just going to have one content type, namely lessons. And then lessons from part of creating a course or lessons from part of creating modules and then Learning Pathways. The other exciting thing, and something we haven’t mentioned, is that at the end of this month, when we launched the Learning Pathways or the first few Learning Pathways, it actually coincides with a website redesign.

\n\n\n\n

[00:09:18] Wes: So, yeah, beyond the lookout, hopefully, learn.WordPress.org is going to have a brand new face at the end, from the end of July or, yeah, or August. So, yeah, that’s very exciting.

\n\n\n\n

[00:09:30] Josepha: Excellent. Excellent. So, you said that these Learning Pathways are part of a larger goal. Is that a goal for your learners or a goal for WordPress? A goal for the team?

\n\n\n\n

[00:09:40] Wes: I would say all of the above.

\n\n\n\n

[00:09:42] Josepha: Goals for everybody. We’re like the Oprah of goals. Don’t come get me, Oprah. That’s all I got to say about it.

\n\n\n\n

[00:09:48] Wes: Yeah, I think for us as a team, at the end of the day, we want folks to be able to use the content and find the content and utilize all the learning material on learn.WordPress.org. And then, of course, at the end of the day, for learners, we want folks to be able to succeed in whatever they are trying to do. Is it to build their own website? Is it to maybe find a job as a developer? And. Yeah, I mean, the list can go on.

\n\n\n\n

[00:10:21] Josepha: Yeah. So, on the subject of wanting to help people succeed, I think that as far as I hear from the majority of contributors that I have worked with over the years, like helping other people figure out how to do this and making sure that they can succeed is always something that is top of mind for contributors to open source probably in general, but definitely to WordPress. Like, we really care about helping other people figure out how to have the same sort of benefits that we’ve had in the project and with the software. So if you have somebody who is familiar with all the bits and pieces of WordPress and really, really want to like show up and help teach some things. Is it the case that they can take part in like running a Learning Pathway? Is it something where we mostly need people to help us build some content? Like if we’ve got people who are just desperate to help other people succeed in WordPress, what kinds of things can they show up and help do on this project?

\n\n\n\n

[00:11:22] Wes: Yes, please come to the Training Team. There are many ways to get involved. If you just want to review content, you can do that. But yeah, we do have a need for content creators, folks, you know, creating a video lesson or putting their hand up and saying, I will actually create an entire module or an entire learning, a Learning Pathway. We do have some awesome contributors that’s part of the Training Team that are already doing that. Some people are writing scripts. Some folks are actually, you know, creating everything from the beginning to the end. So they are writing the script, they recording the video, publishing the video, et cetera. And then we’ve, of course, have people reviewing content. We’ve got folks running online workshops. If maybe creating video content is not their, is not their forte, they can can run online workshops. So yeah, many ways getting involved.

\n\n\n\n

[00:12:16] Wes: But Josepha, I wanted to point something else out that I haven’t done. I think there was a real need for Learning Pathways because, at the moment, if somebody new to WordPress or new to developing with WordPress wants to find learning content. You know, where do they go? What’s the main platform to go to? I think most people probably go to YouTube, right? But a lot of the content there are, are scattered and fragmented.

\n\n\n\n

So a lot of learning material or learning about WordPress is all over the place. It’s not in one place. And as I said, a place where you can actually learn from A to Z, learn progressively learning in a structured way. Yes, we know there are courses available that you can pay for, but the awesome thing about this project is that we are providing these Learning Pathways, these learning resources, for free for folks to be able to work through at their own time. I know that’s something else you asked earlier on. So yes, this is a course in quotation marks; this is a Learning Pathway that somebody can start whenever it suits them, you know, in the comfort of their own home, and they can work through the Learning Pathway from the beginning to the end. Or, if they feel I actually know everything taught in module one and two, I’m going to start at module three, they can do that. They basically come in at their skill level.

\n\n\n\n

[00:13:43] Josepha: Yes. I think it’s really important to try to meet people where they are. And I know that it’s difficult because, like, we don’t take a lot of data from our users. You don’t have to give us basically anything in order to use WordPress. And by basically, I mean you literally don’t have to give us anything to use WordPress.

\n\n\n\n

[00:14:01] Josepha: And so we always have some difficulty in figuring out what is it that our users need the most in order to succeed the quickest. And so I agree that there was a real need for this not only because, like, there’s plenty of content for getting from, like, some knowledge to a good amount of knowledge. There’s almost no content around, like, I didn’t know CMSs existed until yesterday, and now I need to quickly learn how to do it because it’s become a thing I need to do in my job. There’s some really clear, like use cases for being able to onboard quickly and progressively.

And I understand that, like, having a clear, structured way to learn doesn’t always fit with the idea of meeting people where they are. But I do really think that, that like what you were saying, it can be as structured as you need it to be. But also, if you get into it and you think to yourself, you know, I know this information already. I can move on to the next module. I can move on to the module after that. Similar to the way we do that at WordCamps also. If you get into a session and you thought it was going to be useful for you, and you discover that it’s not once you’re there, you don’t have to stay. You can go to a different room where they’re teaching about SEO if it turns out that you don’t need to learn about JavaScript today.

\n\n\n\n

[00:15:23] Josepha: And I think that that’s, it’s kind of the value that this is hoping to bring, like, because it is a little bit built one on top of the other when you discover that you have already learned something, you can easily try out the next step and know that it’s probably a good next step.

\n\n\n\n

[00:15:38] Wes: Exactly. And if you maybe want to teach this to other folks. The plan is to, you know, we had lesson plans. We have a lot of lesson plans on Learn. But the plan is also to, instead of having, as I said, two different content types, is to have lessons but then add a tab where you can click on teacher notes and actually teach something as well if that is your goal. But yes, our lessons and modules also include quizzes and, hopefully, some practical activities. We’ve incorporated WordPress Playground where, where folks can actually, you know, test out what they’ve learned or test their knowledge. So yeah, I agree with you that you can basically join the Learning Pathway wherever you feel the most comfortable.

\n\n\n\n

[00:16:28] Josepha: So we’ve been kind of in the weeds of the project itself, the program itself, and if you want to like do stuff with that and in that. Let’s switch gears a little bit and talk about just what people who are wanting to join those pathways would need to know. Do you have any advice for somebody who is just today learning about these Learning Pathways and they think to themselves, I definitely want to sign up for one of those. Like, for one, how do they get started? And for two, your like top two or three bits of advice for as they get started? 

\n\n\n\n

[00:17:05] Wes: So you can make your way to learn.WordPress.org, and you can basically open the, the pathway, and you can start wherever, wherever you want to. We have made it possible to actually view these pathways or our content without logging in with your dot org profile. The other thing I also wanted to mention is that our content is actually hosted on YouTube now.

\n\n\n\n

So the great thing is we have these pathways within YouTube as well. So, folks can go to the, YouTube channel and see our content. And, of course, that basically reaches a very wide audience. And hopefully some of those videos will also bring people to the dot org site so that they can access the content.

\n\n\n\n

[00:17:57] Josepha: I think it’s great that you don’t have to sign up for a profile. If you are a brand new WordPresser and ran into this in your dashboard and are listening to this podcast now. So dot org profiles are a place where you can kind of log your activity in the WordPress community and the WordPress project. You do not have to have one in order to use WordPress. You don’t have to have one in order to look at these courses or to learn from them. But I always think that it’s kind of nice to get your profile set up so that people kind of know who you are and what you’re doing. And then also your activity shows up. Like, you can see that you enrolled in the course and you get to know for yourself that you made some progress. I know that when you’re getting started, it’s hard to, like, see your progress because you don’t know how far you have to go. And so, like progress when you’re starting out is really difficult to feel is real. And so I like it just so that you have a few reminders to yourself, like, look how far I’ve come as you’re trying to figure out how far you still have to go. And so I like that a lot. 

\n\n\n\n

[00:18:58] Wes: You won’t be able to access all the content on Learn without your dot org profile. But one of the things we’ve made possible is to access these Learning Pathways, the new ones being launched without, you know, removing those blockers. So, of course, when you work through a Learning Pathway, you will be able to track your progress, and you will be able to see which lessons you have completed. So yeah, one of the pieces of advice I would give to somebody starting with the Learning Pathways actually to first go through the modules. And go through the lessons to see which things you know and feel comfortable with so that you don’t waste time maybe going through the first module and say, oh, I know this, and you’ve wasted time. Rather do a bit of research, a bit of reading, and then find the right place for you to start the journey.

\n\n\n\n

[00:19:45] Josepha: That’s excellent. I also, just as a learner, I try to always learn some stuff. And also, as you get older, it’s harder and harder to learn things partially because like you’re in a set path, but also, and here’s my advice to new learners: you worry about looking foolish. Like you, you worry, you’re showing up, and you don’t know anything about anybody else in the classroom. And so there’s this feeling of like, what if I’m the only person who does not know how to make this work? What if I’m the only person who can’t figure out what Wes meant by “Playground” or whatever it is? There’s this real feeling of looking silly when you’re doing something like this.

\n\n\n\n

[00:20:25] Josepha: I can’t control what anybody else says or does to anyone else, unfortunately. But what I can say is that I think that there’s never a bad time to start something you wish you had done, right? Like, the best time to have learned how to use your CMS, your website, make your website work was probably a year ago or something, but the second best time is today. And so, like, why not go ahead and get started and be part of that small group of adults that are learning new things every single day? I think that’s great. And so that’s my tip is to just embrace looking silly sometimes because you’re making some choices about your future, and that’s always a good choice.

\n\n\n\n

[00:21:04] Wes: And I would also say test your knowledge. So you’ve mentioned WordPress Playground. And as I said, we’ve incorporated into the Learning Pathways, but sometimes you watch a video, or you read something, and you feel like, oh yeah, I know this, but you know, the proof is in the pudding. So go and test it out. Use a test website or use WordPress Playground and test yourself to see if you can actually implement this or do something. So yeah, that’s definitely one of the other tips I want to highlight; you know, they also say you, you learn by doing.

\n\n\n\n

[00:21:38] Josepha: Yeah, absolutely. And also, like if you have gotten to a point you’ve done the learning, you’ve done some practicing, you think you’ve got it and want to like try to figure out what other things can be done with it. I recommend this is how I did a lot of my early WordPress learning to organize an event with your local meetup.

Like, I did not know enough about WordPress when I started organizing WordPress meetups. I literally knew nothing. And I basically brought people in and was like, hey, we need people to teach us about this, us being half me. Come in and teach us. And, and that can be a really good thing, partially because, like, you get to know your local folks and see what’s going on and get a sense for, like, what is out there, especially if you’re learning this in order to run a business or to accomplish something for your job that you already have, like knowing what’s out there is super helpful. But then I find that once you embrace the fact that sometimes you will look silly, and that’s the only way that we can know we’re learning something. Like once you’ve embraced it, having some people who are willing to look a little silly with you is kind of, kind of fun, kind of nice. Also, like we’re all going to look at this problem that we definitely don’t understand and hopefully look like, at the end, we know what we’re doing, but between looking at it the first time and at the end of this meetup, we’re all going to look a little bit silly, ask silly questions. And I think that that’s a really helpful thing, too. But yeah, knowing some basic information is a great place to start before you do that, especially if you get anxious about looking silly. And I think these pathways are going to really help to get folks a little bit of a leg up on those big questions that they have as you’re starting to learn how to use WordPress.

\n\n\n\n

[00:23:18] Josepha: So we talked about, like, tips and tricks for learners in general. But if you had something that you wanted to share with us that, like, you’re really excited about for either the Training Team or for the Learning Pathways in general, I think the Learning Pathways are slated to be shipped by, like, end of September or something. So, like, a lot of them are coming quite quickly. 

\n\n\n\n

[00:23:38] Wes: So I am most excited about the website redesign and the new look and feel of the website. And also, you know, one of the goals for us as a Training Team is for learn.WordPress.org to be one of the places people come to and learn about WordPress. And I feel these Learning Pathways and the new website redesign and all the hard work that’s gone into this project is hopefully going to, make that happen. As I said, our content is also available on YouTube. So we’ve really tried to make it easy for folks to find our content and also now to digest our content in a progressive and in a structured way. Because, you know, learning is hard. And hopefully, these Learning Pathways have made it easier for folks to, as you said, to build on your knowledge. You know, a lot of times, there’s knowledge gaps. And I think that’s what makes learning so hard. And hopefully with these pathways, you can build that knowledge one step at a time.

\n\n\n\n

[00:24:44] Josepha: Yeah. And as is the way with open source, like we can only make these pieces of content better if you all show up and help us like try it out, learn some stuff, and tell us what was confusing. Tell us what was too big a step. Cause yeah, you’re right. There are some knowledge gaps and when you’re on the other side of knowing something, it is so hard to tell how big a step is, you know?

\n\n\n\n

[00:25:11] Wes: Exactly.

\n\n\n\n

[00:25:12] Josepha: And so we need y’all to come in here and tell us very plainly as a new learner like that was eventually what I needed, but this part here was especially confusing. This part over here was too like too many little steps like we just we’re trying to make sure that it works for you WordPressers, future WordPressers of the world. And so yeah, come build some learning with us over here on the Training Team.

\n\n\n\n

[00:25:35] Wes: And yes, please, we want feedback because, as you say, as we iterate, we want to improve. So there will be a place where you can provide feedback, and at the end of the pathway where there will also be a satisfaction survey for folks to to complete.

\n\n\n\n

[00:25:50] Josepha: Great. Well, folks, we’re gonna have a bunch of links in the show notes. There’s so much stuff out here to learn with and about WordPress. Wes, thank you so much for joining me today.

\n\n\n\n

[00:26:01] Wes: Thank you for having me. And I will see you all on Learn.

\n\n\n\n

[00:26:05] (Music interlude)

\n\n\n\n

[00:26:12] Josepha: That brings us now to our small list of big things. Although I have to say we have a bunch of links that we’re going to share in the show notes. If you’re listening to this in a place where there are not show notes, you can head over to WordPress.org/news. That’s where we keep all of those. If you are lucky, we also will help you find it on Twitter/X, but I think that it’s hard to find things over there these days. So WordPress.org/news is your best bet. Now, it is time for the small list of big things.

\n\n\n\n

So, first up on my list is that WordPress 6.5.5 is now available. It’s got a few fixes in it, some maintenance things and some security fixes as well. I recommend that you update your sites immediately. You can download it from WordPress.org/download, or you can just visit your WordPress dashboard. If you’re on a managed host, they may have already done this for you, too. But auto-updates, manual updates, CLI updates. However, you want to get it done, get it done. But it is recommended to do this as soon as possible. 6.5.5. 

\n\n\n\n

[00:27:16] Josepha: The second thing on my list is that the WordPress Contributor Mentorship program has a call for interest out. This is a program that we launched about a year ago as well. And we had such a good bit of success at the end of the first round in February that there was significant interest in doing another cohort. So, that program connects seasoned WordPress contribution experts with folks who are new to contributing and offer a fantastic opportunity for mentees to gain hands-on experience contributing to WordPress while their mentors share their expertise and improve their leadership skills. So, most of the time, what you are going to be contributing to is probably a release of WordPress, but there are also a lot of opportunities to contribute to things like the Training Team that we’ve been talking about today and other teams as well. Not everything is focused all around our release cycle. We have things happening in the WordPress project literally all the time. It is a project that never sleeps. 

\n\n\n\n

[00:28:17] Josepha: Speaking of projects that never sleep, our next official release, our second release of the year, is coming out. WordPress 6.6 is coming out just about a week from now. It is the second major release of 2024 and has a lot of things in it that you will want to check out. If you have not yet seen the hallway hangout where we take a look at what was happening in the release, what we intended to get into the release, take a look at it. And if you haven’t tested it yet, if you are one of our plugin developers, if you are building something on top of WordPress core, now is the time to check that out and test it against your products.

\n\n\n\n

And then the final thing is that it’s a new month, my friends. Here we are in July, and we have a ton of things happening in the project. That’s the theme of my small list of big things: the project that never sleeps. But we have a lot of team meetings that are happening. If you haven’t attended one in a while or even if you have never attended one of these meetings and you were trying to figure out when to start, now is as good a time as any. You can join your fellow community members and contribute to the WordPress project. And there are ways that you can do that from home and from your computer and for some parts of the project, like from your phone, if you are taking photos out and about and submitting those. So check out make.WordPress.org/meetings. It’ll give you a sense for everything that’s happening. Do not get overwhelmed by that calendar. You can just choose which team you think is most interesting to you.

\n\n\n\n

[00:29:45] Josepha: And that, my friends, is your small list of big things. Your small list of never-sleeping things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at WPBriefing@WordPress.org. I’m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks. 

\n\n\n\n

[00:30:15] (Music outro)

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Jul 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: Reflections on the First WordPress State of the Word in NYC 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=5150\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/reflections-on-the-first-wordpress-state-of-the-word-in-nyc-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19806:\"

Now I’m not talking about the State of the Word’s that we hear from Matt at WordCamps. I am talking about the first one that was a stand-alone event and how I not only was able to attend, but I had quite the experience on the train.

\n\n\n\n

Also, I am moving over some content from my other site Do the Woo to here as we will no longer have text posts over there. Only podcast episodes. So as a result I am going to make this quite the post by adding the original posts from Do the Woo and linking back to some so I have this experience archived somewhere.

\n\n\n\n

So let me take you back to December 2021.

\n\n\n\n

Follow Do the Woo to the State of the Word 2021

\n\n\n\n

published December 6, 2021

\n\n\n\n

Last week on the podcast I announced the cross-country journey I am taking to attend the State of the Word in New York City. As we get closer to the date, the reality of this 8-day adventure is drawing nearer.

\n\n\n\n

Join Me For the Trip

\n\n\n\n

Let’s get one thing straight off. This is not about a train trip where I kick back and enjoy the scenery along the way. Well, okay, I’m sure I’ll enjoy it, but this is more about bringing together the community through my ears and eyes. As much as as wish each one of you were on this train, although that is physically impossible, this is my chance to bring a different perspective on this years State of the Word from Matt Mullenweg.

\n\n\n\n

Sights, Sounds and Experiences

\n\n\n\n

In this podcast I shared how this all came about. And moving forward, it is almost impossible to tell you everything that will take place. But I can promise you podcasts, videos and posts with insights of the State of the Word. Plus pictures of community we meet along the way and in New York City. And I can’t do this without some snippets of the actual journey across the US. The details are not here now, but will transpire over the duration of the trip.

\n\n\n\n

How to Keep Up It All

\n\n\n\n

There are two perfect ways to follow along on this adventure.

\n\n\n\n
    \n
  1. Bookmark our special landing where you will find it all
  2. \n\n\n\n
  3. Follow the hashtag #WooTrainClan on Twitter
  4. \n
\n\n\n\n

If you are subscribed to the Do the Woo podcast, you will at least catch all of the conversations and updates done via our episodes, but trust me, there will be a lot more than that.

\n\n\n\n

However you choose, I am hoping to bring to you the first ever unique event centered around the WordPress State of the Word.

\n\n\n\n

Thanks to These Sponsors for Sending Do the Woo to the State of the Word

\n\n\n\n

published December 7, 2021

\n\n\n\n

The WordPress and WooCommerce community never ceases to amaze me.

\n\n\n\n

When I came up with the idea of this 8-day event wrapped the State of the Word NYC, I knew it could be big. At the same time it was nearing the end of the year and it’s not the best time to approach companies about sponsorships. In fact, when your goal is to get things solidified within a week, that is another thing.

\n\n\n\n

But thanks to four incredible sponsors, Post Status, GoDaddy Pro, Cloudways and Mindsize who stepped up to the plate, the Do the Woo adventure is happening.

\n\n\n\n

So please visit their sites, or give them a shout out on Twitter. Because when it comes to WordPress, and yes, WooCommerce, it’s all about community.

\n\n\n\n

Why Do the Woo is Talking About the State of the Word

\n\n\n\n

published December 10, 2021

\n\n\n\n

Over the next week or so, the content here on Do the Woo will be primarily focused on the large WordPress community and the upcoming State of the Word.  Likely WooCommerce will poke up here and there, but you will notice an obvious wider perspective on all of the content during this time through Dec. 18th.

\n\n\n\n

Woo and WordPress, It’s All Good

\n\n\n\n

The first obvious reason is apparently the fact that I have created this trip/event around State of the Word.

\n\n\n\n

But the second reason should also be obvious and it’s something I talk about a lot here. It’s the simple fact that WooCommerce sits on top of WordPress. Right? Just about everything that happens with WordPress affects WooCommerce builders in one way or another, ultimately affecting the end user or client.

\n\n\n\n

Again, as I have said time and time again, if you build with Woo, you must keep on top of WordPress.

\n\n\n\n

And There’s the Community

\n\n\n\n

I have been hanging in the WordPress community for 15 years. During that time I have met incredible people and yes, started doing the Woo. With a history like mine, it’s easy to build event around the bigger ecosystem. Now I will admit that this is not a WordCamp I am going to and I won’t see as many people as I would have. But the times are weird and we are all doing what we can. But it will be able to share this experience with those online as well as those I get to see in person, both on the way to the State of the Word and during it.

\n\n\n\n

The community will also hear reflections of Matt Mullenwegs talk from community members and myself on the return home.

\n\n\n\n

So yes, I do the WordPress and I Do the Woo.

\n\n\n\n

An Eat and Run with Chicago WordPress Peeps on the Way to State of the Word

\n\n\n\n

published December 13, 2021

\n\n\n\n

Best laid plans of mice and men

\n\n\n\n

If you listen to this podcast (link coming soon), you will hear the story of how Mike Demo from Codeable made his plans to jump on the train (not literally) for the leg from St. Paul to Chicago. This transpired into a dinner for some Chicago WordPress peeps. Long story short, plans where made at the Hard Rock Cafe in downtown Chicago and invites were sent out.

\n\n\n\n\"\"\n\n\n\n

Then if you listen to this podcast, you will hear how I ended up running into Susan Ramsey, longtime WordPresser and friend, from Fort Worth, Texas. Yes, and she joined the dinner.

\n\n\n\n

Chicago WordPress Rules

\n\n\n\n

It was so cool for both Mike and I to have dinner with Brian Gardner, Susan Ramsey, Steve Stern, Becky Davis, Keanan Koppenhaver, Zach Stepek and Robert Jacobi.

\n\n\n\n

Even from my perspective it was an interesting group relationship-wise. I have known Becky and Brian from way back at Chicago WordCamp, 2011 or thereabouts. Susan has always been on my radar with her past activities in the Genesis community and, of course, my co-hosts of this podcast, Zach and Robert. But it was also very cool to meet two new faces, Steve and Keanan. Because of the limited time and where I was sitting I got to know Steve a bit better, but hoping I will have the chance with Keanan in the future.

\n\n\n\n

Trains Will Run Late

\n\n\n\n

Yes, we learned how trains, especially at this distance, can and will run late. In fact two hours late. As Mike and I had done a podcast on the train and hung out and just chatted, as we grew closer, Mike would frantically check the updates as minutes were slowly being added to the delay. But, hey are we going to let what came as a 2 hour late arrival spoil the party. No way.

\n\n\n\n\"\"\n\n\n\n

Robert Jacobi made he was there to greet everyone. When we got off the train, Mike took off to grab a cab while Susan and I looked for the place that would hold my bags. She was damn good at helping me find the right place.

\n\n\n\n

Mike did make it, gave the cab drive a $20 bill for a $7 fare, and started the party going. We followed and soon were enjoying appetizers and conversation.

\n\n\n\n

The Best Part

\n\n\n\n

Sure, I arrived around 7 and by 8:00 was in the Hard Rock shop grabbing a gift for Judy. Of course I was behind Mike who was stocking up on his Hard Rock findings. As I made my way back to the train station, looking at the photo of the group, I could do nothing but smile, thinking about how much fun everyone seemed to be having, catching up IRL, laughing, telling stories. Seeing each other for the first time in awhile.

\n\n\n\n

It was a joy to see and made me think about this amazing community we have in WordPress.

\n\n\n\n

So again, thanks to Mike and Codeable for helping bring an amazing highlight to my trip of the #WooTrainClan

\n\n\n\n

The Podcasts on the Trip

\n\n\n\n

podcasts published from November 30, 2021 – December 22, 2021

\n\n\n\n

I ended up doing podcasts before I left, on the train, at the hotel and a few other places. Here are the links to those. One of the train podcasts was completely by luck. So happens a WordPresser I know was on the same train car. Amazing!

\n\n\n\n

Do the Woo is Heading to the WordPress State of the Word 2021

\n\n\n\n

Just a Quick Note on the Do the Woo Trip to NYC

\n\n\n\n

A WordPress Community Chat with Cami MacNamara in Seattle

\n\n\n\n

Thinking of My Sponsors While Traveling Through Montana to State of the Word

\n\n\n\n

WordPress Serendipity: A Chat with Susan Ramsey

\n\n\n\n

Random Thoughts on the Train Traveling to State of the Word in NYC

\n\n\n\n

Mike Demo Riding the Woo Train

\n\n\n\n

Adam Warner Talks About the Upcoming State of the Word

\n\n\n\n

Daniel Schutzsmith Shares Thoughts on the Upcoming State of the Word

\n\n\n\n

Cory Miller from Post Status on Community and State of the Word

\n\n\n\n

Topher and Cate DeRosia Talk HeroPress and the State of the Word

\n\n\n\n

Thoughts on the State of the Word from Mark Westguard

\n\n\n\n

The Beginning of the End, State of the Word and the WooTrainClan

\n\n\n\n

Matt Mullenweg on WooCommerce at the State of the Word 2021

\n\n\n\n

Last Thoughts on the State of the Word from the Community

\n\n\n\n

And before I left NYC and caught that train home, had the time to grab a nice lunch out with Bud Kraus, Robbie Adair and Cate and Topher Derosia

\n\n\n\n\"\"\n\n\n\n

Oh, and Then There Was State of the Word 2022 in NYC

\n\n\n\n

Of course, when it came around the next year, I opted to do this again but plane instead of train and no podcasting.

\n\n\n\n

Do the Woo is Headed to the State of the Word, NYC, Again

\n\n\n\n

It’s that time of the year, or at least for the second year in a row. Matt Mullenweg will be giving the State of the Word again in New York City. And yes, once again I will be making the trek across country to attend.

\n\n\n\n

What is and what was

\n\n\n\n

You may or may not recall that last year, due to a misunderstanding with flying and ID’s required, I ended up taking a roundtrip adventure on a train to NYC. In fact I have several posts here that not only talk about the adventure, but also podcasts that were done along the way as well at in NYC. I don’t need to go into the details again, but let’s just say I have opted for a flight this time. \"🙂\"

\n\n\n\n

Time for connection, reflection and optimism

\n\n\n\n

So you may be asking why I used the resources to fly six hours one way for a three hour event. Well, first I feel I need to be there to represent Do the Woo. And I am able to do this because of the support of our Pod Friends.

\n\n\n\n

But it also is perfect timing for the end of the year.

\n\n\n\n

Connection – this goes without saying. Although a small crowd, maximum of 50 people, I always look forward to connecting with my WordPress friends. In fact, sometimes smaller is better.

\n\n\n\n

Reflection – when Matt reviews the year, for some it may seem to be only on the surface. But post-state of the word gives me time to think about what he has said. What it means to the community. And what it means for our efforts here at Do the Woo. For me personally, it has more meaning and goes deeper when I experience it in person. Plus it gives me something to think about on the flight home.

\n\n\n\n

Optimism – I am by nature optimistic. And though there can be skepticism, doubts or even drama for others, each year always brings me optimism in the future of the project.  Which lends to the whole experience that I have before, during and after the State of the Word.

\n\n\n\n

I do admit I am lucky that I can attend. And yes, again I have my sponsors to thank for that. Also, there is a part of me that hopes the SOTW could be worked to be given at all of the flagship WordCamps, as it had been done with WordCampUS before. But knowing that it plays on the end-of-the-year, maybe I am too optimistic there.

\n\n\n\n

If you are one of the few that are able to attend, and we haven’t talked about meeting up yet, let me know. NYC, here we come!

\n\n\n\n

A State of the Word Dinner with Some Woo

\n\n\n\n

As you likely know from earlier posts and podcasts, I was able to attend the State of the Word this year in New York City. All because of our Pod Friends.

\n\n\n\n

When a community comes together

\n\n\n\n

Since I would be there on the night before the event, Michelle Frechette and I started a conversation with others who were attending. “How about getting together for dinner?” Of course, as with any WordPress event, large or small, you will find those interested, both old and new friends. And the fact that the hotel we both were staying at had this very convenient restaurant and bar, well, it was an easy decision.

\n\n\n\n

Except when you call to make a reservation, get a failed call notice, and learn from the hotel that the restaurant is closed.

\n\n\n\n

This led into more conversations with those attended, and those not. Apparently with the size of most restaurants in NYC being small and, to add to that, the holidays, well, finding a reservation for 10-11 people turned into a challenge. The fact that I had left this to only a few days before the dinner didn’t help.

\n\n\n\n

It takes a community

\n\n\n\n

We are a hearty group and don’t give up easy. Along came superhero Nev Harris suggesting he calls the American Express concierge to help and recommend some restaurants was a game saver. And although what we found was an outdoor heated patio, with temperatures in the low 30’s F, we couldn’t be picky. Luck was on the side of this WordPress group and we felt we were treated to a semi-private room where good food, drinks and conversation took the stage.

\n\n\n\n\"\"\n\n\n\n

Of course, once you have had a terrific Italian dinner there is no better place to extend the holiday cheer than for a few of us to visit Rockefeller Center.

\n\n\n\n\"\"\n\n\n\n

State of the Word 2023

\n\n\n\n

Which brings me right back to where we are. Will I be attending SOTW at the end of this year? You just never know, but once I get started….

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Do The Woo Community: WordCamp US 2023, Another Fantastic WP Memory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=4815\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/wordcamp-us-2023-another-fantastic-wp-memory/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17398:\"

Well, it was inevitable that I should post a recap of WordPress US. I am writing this after returning to my home and office in Porto on Monday morning, this being Thursday of the same week. And I’ll tell you, I am just starting to get over my exhaustion.

\n\n\n\n\"\"\n\n\n\n

The Trip to WCUS

\n\n\n\n

Flying back to the states, I loved the way over. No overnight experiences for me, and leaving at 7:30 am Porto time, arriving in National Harbor 7:30 pm EDT. Of course, during the flight I started with breakfast, then a drink and lunch and segued into dinner at some point which ended with a snack. Lot’s of food and can’t honestly remember when I ate what.

\n\n\n\n\"\"\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

I did meet a few friends when I landed, but by then I was pretty much half asleep. It was nice seeing my good friend Mark Westguard right off the bat.

\n\n\n\n\"\"\n\n\n\n

The first day in National Harbor

\n\n\n\n

Unlike my other WordPressers who were already there, the next day I was not part of the Community Summit nor did I have the desire to be a tourist in Washington DC. The latter did not tempt me with the heat or the sights.

\n\n\n\n

So I spent the day hanging around the hotel/convention center to make life easy. Now the Gaylord National Resort and Convention Center is enormous. And I mean freakin’ huge. It kind of reminded me of those large cruise ships, although I have never been on one. It’s set up quite well. You never really need to leave and everything is overpriced. But hey, that’s America, right?

\n\n\n\n

The morning I spent wandering around the grounds, inside and out.

\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

The other part of the day Mark and myself just did this and that. Lunchtime we went and had some drinks and nachos. After that we just roamed around the hotel and Mark was obviously delighted to find his logo with all the sponsors on the entryway to the conference center.

\n\n\n\n\"\"\n\n\n\n

Then we had Casey join us, Mark’s better half, and dinner time where at even more food.

\n\n\n\n\"\"\n\n\n\n

So after a day of local exploring, drinks and food, we did what any normal WordCamper would do. We went to a party, WP-Includes Summer Fest.

\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

Contributor Day

\n\n\n\n

The next day was Contributor Day. And guess what? It was amazing. So much so that I didn’t take one photo as I was busy listening and interjecting every once in awhile. But I did snag the group photo from that day just to share the all the groovy WordPressers who were part of that day. By the way, photo credit goes to Shusei Toda.

\n\n\n\n\"\"\n\n\n\n

WordCamp US, the Event

\n\n\n\n

As with most WordCamps, I find myself so busy connecting with old and new friends, and just being a happy WordCamper that I never take as many photos as planned. But, I do the best I can do.

\n\n\n\n

Of course, I cannot go without thanking my sponsors, A2 Hosting, Avalara, Hostinger, GoDaddy, Jetpack and Weglot. Oh, and yes, WooCommerce!

\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

Do the Woo, a Pseudo Sponsor

\n\n\n\n

And then this happened. My friends over at Multicolab were not able to use their sponsor booth. Anil Gupta was able to attend, but he had problems with getting his team over to the US. So his table sat unattended and barren.

\n\n\n\n

I had a chat with Anil as he is a good friend of mine, and also a past sponsor of Do the Woo. Long story short, I took over the booth and used it for the DTW hq at WordCamp US. So I had the opportunity to be able to do some podcasting as well as meet many of our listeners.

\n\n\n\n

Here is Anil sharing some thoughts on WordCamp.

\n\n\n\n\"\"\n\n\n\n

Here is my makeshift booth.

\n\n\n\n\"\"\n\n\n\n

And some of our podcast guests.

\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

And a very special podcast. Three WordPressers from the Spain WordPress community did a show, and they did it all in Spanish. What fun!

\n\n\n\n\"\"\n\n\n\n

As it so happened during contributor day, also at the event I didn’t get as many photos as I would have wanted. Was just too busy enjoying IRL conversations. But here are just a few more friends that I caught.

\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

What’s a Flagship WordCamp without Nathan’s head

\n\n\n\n

Now for those of you who know Nathan, you get it. For those that don’t, well I will add a mysterious moment to your life. A good friend and fellow podcaster of mine, Nathan’s head often shows up in the weirdest spots, or simply frightening people here and there. And the second day started out with just that.

\n\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\n

The After Social

\n\n\n\n

As with tradition of WordCamp US, the social at the end of the second day was at the Smithsonian Museum of Natural History. Quite the impressive museum. Now I am not a huge fan of museums. I could also say that it was mostly bones, stuffed or recreated animals, rocks and overpriced jewelry, but nonetheless it was quite breathtaking.

\n\n\n\n

A lot of people had a great time and it was also filled with conversation, laughter and yummy desserts with old and new friends.

\n\n\n\n\"\"\n\n\n\n

And what is a museum visit without posing as a museum exhibit.

\n\n\n\n\"\"\n\n\n\n

Of course my friend Miriam had to catch as I ventured into the fossil display where I discovered an old acquaintance, Joe the Tyrannosaurus. As I gently touch the bones of his neck on display, I pondered our prehistoric life together.

\n\n\n\n\"\"\n\n\n\n

It’s Why I Do What I Do

\n\n\n\n

In a nutshell, I do WordPress because of the community. And events like WordCampUS is like a moment of pure oxygen. So much laughter, conversation, hugs, food and drinks with old and new friends. I wouldn’t have it any other way.

\n\n\n\n

And I leave you with one last photo. As I was flying home, something outside my window reminded me of that museum. Can you guess what that is?

\n\n\n\n\"\"\n\n\n\n

Hope to see you at WordCamp Asia in 2024.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Do The Woo Community: WordPress 6.3. Our Heroes, the Release Squad and Contributors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=4706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://dothewoo.io/wordpress-6-3-my-heroes-the-release-squad-and-contributors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1386:\"

The last time I wrote a post on a WordPress major release on this blog was sometime ago, where I was doing more tutorials and education pieces here. A previous focus of the life of this blog, now archived into oblivion.

\n\n\n\n

But hey, can you imagine how many posts have been published and will still be published about 6.3? I cannot fathom that number.

\n\n\n\n

The release, the people

\n\n\n\n

I don’t have to tell you about the features. Nor do I really need to tell you about what makes this happen, and the incredible people who contribute their time and expertise to each release.

\n\n\n\n

Well, I lied. On the latter, I do have to tell you. Because every time that a major release comes out, and I head over to WordPress.org to see the post. It’s always fun to read about the jazz artist that it was named after, revisit the features, but I always stroll to the bottom to see my heroes first.

\n\n\n\n

The release squad and the contributors. And for each and every one of you, my sincere gratitude and appreciation for making this community what it is. Also, a big virtual hug.

\n\n\n\n\"\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Do The Woo Community: WordCamp Europe 2023. Amazing.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=3702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://dothewoo.io/wordcamp-europe-2023-amazing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12637:\"

If I could put every experience I had, every conversation, and every laugh or hug here in this post, I would. But it would be a very long post and, of course, I would have discovered something I missed, or several things, thus even a longer post.

\n\n\n\n

This was my second WordCamp Europe, but my first living here in Porto, Portugal. That fact alone, and the love I am getting from the community here, would be worth a post in itself.

\n\n\n\n

The Community

\n\n\n\n

It’s never surprising when I hear from anyone talk their experience at a WordCamp, community and people are always in there, often being what they loved most. And for me there is never an exception. New friends. Connecting with old friends. And so much laughter, and yes, food.

\n\n\n\n

The Sponsors and the Venue

\n\n\n\n

The venue was fantastic. Although I must admit at first it was a bit overwhelming as the sponsors winded around different parts and hallways. Some of the small biz sponsors were concerned being off the beaten path, but that changed quickly, at least for the ones I talked to.

\n\n\n\n

Fact is I started going around to the booths, meeting people, saying hi to others and stopping for so many hugs and conversations, it took me 3 hours just to do that. On the second day, I spent an hour easily just with the Small Biz sponsors.

\n\n\n\n

Now I talk to a lot of WordPress businesses and I know there are always questions about sponsoring WordCamps and the value behind it. So I am going to share a great post from my friend Katie Keith from Barn2 Plugins, where she shares their first experience sponsoring. If you ever had questions about sponsoring, make sure and read it.

\n\n\n\n

If you missed any of the sessions, or were not able to make it, you can find all of them here from the livestream.

\n\n\n\n

As I said, there is a lot more I am still digesting and it will also settle in my brain just in time for WCUS. But I do want to thank the organizing team, the volunteers for their hard work in making it so amazing. And of course, the sponsors who make it possible.

\n\n\n\n

I leave you with this. Some great WordPress peeps. (and a few taken by others, plus my mug occasionally).

\n\n\n\n\n\"\"\n\n\n\n\"WordCamp\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\n\n\n\n\"\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Do The Woo Community: 20 Years. That’s a Lot of Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=3448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://dothewoo.io/20-years-thats-a-lot-of-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"

In May I was fortunate to speak at WordCamp Lisboa about community. It had been awhile since I’ve spoken at a WordCamp, but I had a lot of fun.

\n\n\n\n

If you are interested in my elaboration of the future of the community, listen to this show here.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: WordCamp Asia. Energized, Graciousness and Empathy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=1625\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://dothewoo.io/wordcamp-asia-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9885:\"

For 13 years I have been going to the smaller and local WordCamps and when the first flagship WCUS started, I jumped on the opportunity and have been lucky enough to attend all of them so far.

\n\n\n\n

Last year, I attended my first WCEU which of course was far from their first. It was an amazing event and even pushed us to move to Porto, which we are doing end of March.

\n\n\n\n

Then comes WCAsia

\n\n\n\n

Judy and I were excited that we would be able to attend the very first WCAsia. Neither of us had been to any part of Asia, so Bangkok was soon to be our first. 

\n\n\n\n\"\"\n\n\n\n

Now with all that comes for anyone attending a WordCamp, it can be anything from intimidating, to exciting, or both. I did not know what to expect from this very first flagship event. I knew that it would be good, but I didn’t know I would be blown away.

\n\n\n\n

The event itself

\n\n\n\n

The event was held on the top floor of what’s called Iconsiam. A gigantic mall with a conference center.

\n\n\n\n\"\"\n\n\n\n

And everything about the organization of the event was top notch. The sponsor area was strategically placed. And I personally experienced a volunteer approaching me a few times and asking how I was doing and if they could help with anything. It was amazing.

\n\n\n\n

Contributor day

\n\n\n\n

This was my second contributor day. And it did not disappoint. I spent my time with the Community team and we had several very good discussions. Of course a lot of time was put into the day-long event from both organizers and volunteers. And I had to get a shot of all the team table leads from around the world.

\n\n\n\n\"\"\n\n\n\n

This was just how big contributor day was.

\n\n\n\n\"\"\n\n\n\n

Two days of WordCamp Asia

\n\n\n\n

The minute I walked in that morning and headed straight for the expo area, this is what I saw. It was one of the most busy WordCamps I had ever been to, at least from this perspective. And the vibe in the air is what I believe energized everyone.

\n\n\n\n\"\"\n\n\n\n

The community, the people

\n\n\n\n

There is no single word to describe all the new and old friends that I met with. There were hugs, fist bumps, handshakes, and a lot of conversation. I had the chance to meet people who had literally been reading or listening to my stuff for over a decade. It was incredible humbling.

\n\n\n\n

Although I don’t have these tagged, here is are bunch of selfies and other pics that were taken by others and myself.

\n\n\n\n\n\n

Three things really stood out to me

\n\n\n\n

As I mentioned earlier, this was likely the best WordCamp I have been to. If asked, I would have to say that there are three words that come to mind if I was to describe it as a whole.

\n\n\n\n

The energy

\n\n\n\n

I have never been to a WordCamp that had as much energy as I experienced here. I’m sure it was a combination of it finally happening for the Asian community (the first time it was cancelled due to covid), the pride they felt and the fact that so many of the attendees were experiencing their very first WordCamp of any size. 

\n\n\n\n

Everyone seemed hungry for community and education. Even the sponsors who frequent many WordCamps, the teams they brought were energized and kept very busy. There was a vibe of this energy with everyone you met. 

\n\n\n\n

I know that both my brand BobWP and Do the Woo is very popular in that part of the world. But until you are able to talk, shake hands or hug, you just don’t know. I met strangers and people who I have been connected with online for a decade or more. I was in what felt like hundreds of selfies with friends and new friends. The energy there was contagious and even by day two, it did not let up till closer to the end of the day.

\n\n\n\n

The graciousness

\n\n\n\n

This is probably the most powerful word that stuck with us during our entire stay, both at the event and beyond. We felt welcomed wherever we went. The kindness and consideration of each individual we had contact with and I had contact with at the event, was something that added to the energy I previously talked about.

\n\n\n\n

Culturally, between the greeting with a bow and hands held together, and those who held their hands over their hearts as they approached you, other parts of the world could learn from those warm and loving gestures and how they made us feel each and every time.

\n\n\n\n

The empathy

\n\n\n\n

Empathy has always been a huge part of my life, and I wish more people would naturally feel it in all circumstances.

\n\n\n\n

As I mentioned previously, a lot of the attendees where first time WordCampers. Because of the nature of our business, many are introverts and that first event experience can be overwhelming. But it was different. There was a natural born vibe of empathy coming from everyone.

\n\n\n\n

The vendors talking to community members. People meeting each other for the first time. Questions asked and answered. I would often catch pieces of conversation near me, and more times than not there was a tone of empathy. A tone that said we are the community and here to help each other, no matter who you are, what skill level you have or where you come from. The glass was half full, if not brimming over.

\n\n\n\n

Of course all the other stuff

\n\n\n\n

There was so much to the event, but at the same time the entire experience.

\n\n\n\n

Having a little fun and a good laugh

\n\n\n\n

There is nothing better than a good laugh. You may or may not know Nathan Wrigley from WPBuilds. A great friend of mine and a treasure to the WordPress community. Unfortunately Nathan could not make it, so our friend Mark Westguard from WS Form created a “Nathan head”. And it started popping around here and there at WCAsia. Make sure and click on the images so you can easily find “Where’s Nathan?”

\n\n\n\n\n\n

Nom nom

\n\n\n\n

The food was incredible. I’m not a foodie as much as many who travel, but the tastes I experienced are really beyond words. I am still deciding my favorites between Thai, Indian and Japanese. Unfortunately, I am terrible when it comes to taking pictures of our food. In fact, I likely got more from the food served on our flights than at the event.

\n\n\n\n

There was this amazing Espresso Martini that we had, in some kind of a chalice at a restaurant in a local marketplace.

\n\n\n\n\"\"\n\n\n\n

And the best experience I had was a cup of Spicy Coconut Soup with Scallops at a restaurant in the Iconsiam. Unfortunately I didn’t think to take a picture until I was half-finished. Trust me, the untouched presentation was pretty impressive. The taste, out of this world.

\n\n\n\n\"\"\n\n\n\n

Bangkok

\n\n\n\n

And then there was the host city. As mentioned, this was the first time Judy and I have been in Asia. The city was interesting and amazing at the same time. The weather was another thing. We spent an extra three days and found we could spend very little time outside because of the heat and humidity. Average days temp while while there were around 94°F / 34°C. We thought we would either melt away or simple pass out. But between the hotel, a boat ride down the river and a few other places, I do have a few shots to share with you.

\n\n\n\n\n\n

What have I left out?

\n\n\n\n

Likely a lot. But still recovering from jet lag and a good chunk of this post was written on the flight back.

\n\n\n\n

If we connected at WCAsia, you are now a big part of one of my favorites memories since using WordPress.

\n\n\n\n

And if you were an organizer, volunteer or sponsor this year, a big thanks and hug for one amazing event. You should be proud of what you did and the community that you brought together.

\n\n\n\n

Until WordCamp Europe….

\n\n\n\n\"\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Do The Woo Community: The State of the Word experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://bobwp.com/?p=585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/the-state-of-the-word-experience/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5731:\"

I have purposely chosen to not revisit the actual message delivered at State of the Word. There has been a lot already said and I don’t really need to add to that pile. In fact, I have listed a few posts at the end here that will give you that overview.

\n\n\n\n

I arrived in New York City late Tuesday evening. The SOTW was not beginning till noonish on Thursday. But I was pretty sure Wednesday would be my “hang out with friends and community day”. Of course I was not disappointed.

\n\n\n\n

Community is where community goes

\n\n\n\n

Mid-morning on Wednesday, I ran into Michelle Frechette and her friend Julia in the hotel lobby. Hungry and in need of caffeine, I joined them for a bit of time at Starbucks. Returning to the hotel, we ran into Rich Tabor, and set a time to find a restaurant and have lunch. The four of us ended up at an Italian place, which would be the first of two that day.

\n\n\n\n

Then came a break before I met Robert Jacobi, Rich Tabor at Nancy’s Whiskey Bar across the street. Where eventually we were joined by Robbie Adair and Bud Kraus. Although we didn’t get a group shot then, Robert did grab a shot of Rich and myself.

\n\n\n\n\"RichThanks to Robert Jacobi for the photo\n\n\n\n

After that came dinner. I shared a bit of that experience on my podcast over on Do the Woo, which in a nutshell ended up being a fantastic Do the Woo dinnner in a heated patio at yet another Italian restaurant.

\n\n\n\n\"DoDo the Woo Dinner at State of the Word 2023 with Michelle Frechette, Allie Nimmons, Bud Kraus, Nev Harris, Aaron Campbell, Rich Tabor, Timothy Jacobs, BobWP, Robbie Adair, Julie and Ryan Marks. \n\n\n\n

Following that feast, a few of us ended up at the Rockefeller Center.

\n\n\n\n\"\"Michelle, Nev, Ryan, Julia, Robbie and BobWP\n\n\n\n

And that was the day of true community. Friends coming together and just simply having a great time.

\n\n\n\n\"Rockefeller\n\n\n\n

State of the Word Day

\n\n\n\n

Of course the day of the State of the Word has it’s fair share of community. From a casual get together at a cafe beforehand, to the event itself and rounding that off with a small dinner with Robert Jacobi, Robbie Adair and Nev Harris.

\n\n\n\n

The entire day, day two, filled with community. Old and new friends.

\n\n\n\n

Conversations at SOTW

\n\n\n\n

I cannot possibly share with you the conversations I had at the event, primarily because I had too many and cannot recall each one. But a couple of instances stick in my mind.

\n\n\n\n

First, I met Zandy Ring, COO at Tumblr. This was not only a fun conversation but also very timely as I dive into the Tumblr world as BobWP. It’s been an interesting platform to sort out. And the insights that Zandy shared with me confirmed I was doing the right thing by taking my time and finding my groove there.

\n\n\n\n

Secondly, I had a chance to chat with Matt Mullenweg a couple of times. The best thing about the SOTW event if Matt is in his element there. The smaller crowd gives it a much more relaxed feeling and I sense that he is truly enjoying himself.

\n\n\n\n

And the cool thing. There would never be the opportunity where I would be able to share with him the new stuff we are doing over at Do the Woo in the new year. But this event gave me that chance. And even better, he loved what we were going to be doing.

\n\n\n\n

Now with both of these conversations, I was fortunately to be given the opportunity to have them. But I did for two simple reasons.

\n\n\n\n

The WordPress community is incredible, no matter who you meet

\n\n\n\n

I am extremely fortunate to have such amazing sponsors for Do the Woo that made it possible for me to represent DTW at the event.

\n\n\n\n

Learn more about the State of the Word

\n\n\n\n

Matt’s SOTW was great and there was some really cool stuff he shared. But I am not into reinventing the wheel, so here are a few options for you to catch up with it if you haven’t already.

\n\n\n\n

Over on WPTavern, State of the Word 2022: Matt Mullenweg Highlights Gutenberg’s Progress, Announces New Community Tools

\n\n\n\n

The WPMinute has an audio version if you are on the go, as well as some key takeaways.

\n\n\n\n

And of course, over on WordPress.org, you can catch the full video.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 12:45:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"Gutenberg Times: Gutenberg Changelog #103 – Create Block Theme Plugin, WordPress 6.6, Gutenberg 18.7, and Updates from the Training Team \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=29223\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-103-create-block-theme-wordpress-6-6-training-team/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56988:\"

In this episode, Nadia Maya Ardiani and Birgit Pauli-Haack discuss the create block theme plugin, WordPress 6.6, Gutenberg 18.7, and updates from the training team.

\n\n\n\n

Show Notes / Transcript

\n\n\n\n\n\n\n\n

Show Notes

\n\n\n\n

Special Guest: Nadia Maya Ardiani

\n\n\n\n\n\n\n\n

Announcements

\n\n\n\n\n\n\n\n

Training team updates

\n\n\n\n

Contributor Spotlight series

\n\n\n\n

Gather Press

\n\n\n\n\n\n\n\n

New Courses

\n\n\n\n\n\n\n\n

What’s released

\n\n\n\n\n\n\n\n

WordPress 6.6

\n\n\n\n\n\n\n\n

What’s in the works

\n\n\n\n

Twenty Twenty-Five

\n\n\n\n

Stay in Touch

\n\n\n\n
\n\n
\n\n\n\n

Transcript

\n\n\n\n

Birgit Pauli-Haack: Hello, and welcome to our 103rd episode of the Gutenberg Changelog Podcast. In today’s episode we will talk in detail about Create Block Theme Plugin, WordPress 6.6, Gutenberg 18.7, and updates from the training team too. Maybe not in that order.

\n\n\n\n

I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress Open-Source Project sponsored by Automattic’s Five for the Future Program.

\n\n\n\n

I’m delighted to have again as co-host, my dear friend, Nadia Maya Ardiani from Indonesia, member of the WordPress training team, translating Learn WordPress content. And in her day job, Maya creates content for the Hostinger blog and social media. So glad you can make it this time, Maya. How are you today?

\n\n\n\n

Nadia Maya Ardiani: Hi, Birgit. It’s very nice to be back here. How are you by the way?

\n\n\n\n

Birgit Pauli-Haack: I’m good. I’m good. I’m good. So glad we’re doing this. And it’s summer in Munich.

\n\n\n\n

Nadia Maya Ardiani: It’s always summer here in Indonesia.

\n\n\n\n

Birgit Pauli-Haack: Well, I definitely have to visit sooner or later.

\n\n\n\n

Nadia Maya Ardiani: Yes, please.

\n\n\n\n

Birgit Pauli-Haack: Rather sooner than later because time runs out.

\n\n\n\n

Nadia Maya Ardiani: Yeah. The last time you invited me, I think it was around WordCamp. After I came back from WordCamp US and you were not attending it. And this time it’s the other way around. You’re attending WordCamp Europe and I’m not, and I’m getting so FOMO of everything. So yeah.

\n\n\n\n

Birgit Pauli-Haack: Yeah. FOMO is something that I’m looking at for now. Also for WordCamp Canada. There are some great speakers on there. But I am really looking forward. Are you coming to WordCamp Asia in the Philippines next year? You don’t know?

\n\n\n\n

Nadia Maya Ardiani: Yeah, I plan to. I plan to. So hopefully, we can meet again.

\n\n\n\n

Birgit Pauli-Haack: Yeah, I hope so too, in-person. Well, did you know that the call for speakers is out for WordCamp Asia?

\n\n\n\n

Nadia Maya Ardiani: Oh, not yet.

\n\n\n\n

Birgit Pauli-Haack: Yeah.

\n\n\n\n

Nadia Maya Ardiani: I haven’t checked.

\n\n\n\n

Birgit Pauli-Haack: So dear listeners, if you want to come to WordCamp Asia and be on the speaker roster, now is the time to get your creative juices going on what you want to talk about. All right.

\n\n\n\n

Announcements

\n\n\n\n

Before I forget again, because I did the last time, I want to mention our new music for the intro and the outro. So this is the second episode actually with new music dear listeners, and I hope you like it. A 100 episodes is a great run for Homer Gaines’ music that we started out with and we used for 100 episodes. But I’m also grateful that he allowed me to use his music for free. So big prompts to Homer Gaines. And I’ll share again the link to his music channel on Spotify or what was the other one? SoundCloud.

\n\n\n\n

Nadia Maya Ardiani: SoundCloud.

\n\n\n\n

Birgit Pauli-Haack: Yes. Yeah, thank you. The new jingle, or what you call it, whatever you call it, is actually created by Udio, and that’s an audio AI site. Which I just was trying out. And the prompt was Jango Edwards style intro music, and it’s called Manouche Morning. I share the link also in the show notes, so you can go to the site and try out your music tastes. But let me know what you think about it, dear listeners. And also, of course, Maya.

\n\n\n\n

Nadia Maya Ardiani: Yeah, I really like it, because it sounds like something that you can hear from a gramophone and take you back to another time. And it’s really a nice change of vibe. Because before we have this cool guy, a cool person, who is more very chill and very calm person, and this time it’s more happy-go-lucky. So yeah, I think it’s really great. And it’s like Morning Spirit, like the name.

\n\n\n\n

Birgit Pauli-Haack: You kind of get in a different mindset there. And I learned in between that music actually changes, depending on which music of course, your brainwaves. So your alpha waves and your mood. I find it really interesting. So I read more about it. Well good. So that’s music. Well, either comment on the episode or send me an email or just ping me on Twitter what you think about the music.

\n\n\n\n

So last episode, we talked about the upcoming events and now those events have taken place, and I can share the recordings in the show notes. If you are a theme developer, but you are not so much into code and want to use the Site Editor to create your theme, the Hallway Hangout where Beatrice Fialo demonstrated how she changes a theme and then used to create Block Theme Plugin to save all the changes that are normally in the database to the theme files and then make those theme files part of Version Control and GitHub.

\n\n\n\n

So that process she demonstrated very closely. And on the recap post, I actually also spelled out the steps so you can really follow along. It was really a cool event. And you can actually design a theme and Site Editor and still update the theme files and handle it in Version Control. That was one of the big questions we had on the Outreach channel.

\n\n\n\n

Nadia Maya Ardiani: Yeah. I personally also really love Playground because it really helps for content creation as well. Because I don’t have to keep on tweaking my WordPress site, even though that’s a special site for testing. But it’s very handy to have it. I can just test everything there and then forget about it.

\n\n\n\n

Birgit Pauli-Haack: Yeah.

\n\n\n\n

Nadia Maya Ardiani: I don’t have to reset everything. So, yeah.

\n\n\n\n

Birgit Pauli-Haack: Right. Yeah. You don’t mess up the site that you use for other things. Yeah. Totally get it. And so I use local or used to use local, and I have probably 25 sites in there. Because I spin up a new site for everything. But that also clogs up my computer, although I have a terabyte of hard drive. But it still clogs up my computer. Because every single site has all the WordPress files, and with Playground I have nothing stored there except what I wanted to store in the browser or something like that.

\n\n\n\n

So, yeah. The other event was the exploration of Grid Layouts. It was also a Hallway Hangout. And Isabel Brison, also a regular co-host here on our show, gave a great demonstration on how to handle blocks with Grid Layout or the other way around, how to work with a Grid Block, which is a subset of the Group Block. And she showed off the 6.6 features, but also what she’s working on for 6.7 in an experiment. So that’s also something, if you are keen to learn more about Grid Layout and what you can do with it, definitely watch that recording.

\n\n\n\n

Nadia Maya Ardiani: Yeah. People already starting to work on 6.7. It’s like, wow, so fast.

\n\n\n\n

Birgit Pauli-Haack: Yeah. So once decided when the Beta 1 is of major release, then it was also decided which Gutenberg Plugin version will make it from the new feature point of view. So the week the Beta 1 is released, that’s the week where the Gutenberg Plugin released, and that’s the last release with new features.

\n\n\n\n

So Beta 1 was on June 4th and the release candidate for 18.5 was already out. So those features made it into the major 6.6. And everything else afterwards, 18.6 and 18.7hat we’re going to talk to now, are either bug fixes and they will be ported to the release on WordPress but all the new features that add UI, that are enhancement to existing things, stay in the plugin.

\n\n\n\n

And Isabel Brison, and I think Robert Anderson, they were working on the Grid Layout, they actually started that experiment way earlier, but they were not ready to make it public. So if you want to test out what she showed off in the Hallway Hangout, you need to enable that experiment on the experiment page in Gutenberg before you can actually see that feature.

\n\n\n\n

So there’s multiple levels of how you learn about new things. And if you want to get in early, the experiment page on the Gutenberg Plugin gives you a clue what people are actually working on. Some of them are pushed forward like the data views or the Grid Layout, and some of them are a little bit stale because there hasn’t been enough feedback to move forward with a lot of things.

\n\n\n\n

Going back to the announcements or to the upcoming events, there’s also in the show notes a link to the recording of the developer hours, what’s new for theme developers in WordPress 6.6, where Nick Diego and Justin Tadlock were talking about all the good things that are coming, especially the overrides to sync patterns and also grid, but also most prominently the section styles, that’s it, block styles, and how that works with the reduced specificities for custom CSS.

\n\n\n\n

So you can override. Well, how you can override some custom styles and block style. It’s a little bit highly technical, and if you’re not into that, the last part might be a little bit too technical, but it’s definitely worth checking out. 

\n\n\n\n

And then there’s a set of upcoming events in July on Monday, you might not have listened to that, next week, July 8th there’s a Hallway Hangout where Justin Tadlock and Nick Diego are talking about the section styles and block style variations, want to discuss with the extenders what are the challenges and what are the problems or questions. Bring them all to the Hallway Hangout. That’s on July 8th, 1600 UTC.

\n\n\n\n

Then on July 9th, there’s a Developer Hour, Editor, Unification and Extensibility in WordPress 6.6. That’s with Ryan Welcher and Nick Diego. And they talk about how the slot fields and all the other extensibility works now for post editor, site editor, template editor. They’re all now one interface or almost, in how you can take advantage of it. And the additional ways to add your own interfaces to the sidebar.

\n\n\n\n

Then July 23rd at 1500 UTC is another Developer Hours, and that covers that topic, do you really need a Custom Block? And it explores the alternative, and it was one of the things that early on, but more and more you have already built in ways to modify core blocks without having to create your own blocks. So be based on the core blocks. And with pattern overrides, there’s another feature there where you can say, okay, maybe I don’t need my Custom Block. And the other part is the Block Bindings.

\n\n\n\n

So for custom fields, that you don’t need a block for each custom field, your customer needs. So you could actually use the Block Bindings for that and bind those information or the values to certain core blocks. It’s not available for all the blocks, but it’s 6.6. Block Bindings came with 6.5 and all extended, especially the editing part in the interface for 6.6. All right.

\n\n\n\n

Training Team

\n\n\n\n

Nadia Maya Ardiani: Yeah. And speaking of events, so currently the training team is, we are trying to test GatherPress. So it’s like an event management application and it’s open source. So we are thinking, why not? We’re trying to move through this platform, we are looking for a tool that can help us to improve the flow management of our Learn WordPress online workshops, for the scheduling stuff.

\n\n\n\n

And we hope that by testing it, we can try to meet the diverse needs of even organizers and members of the WordPress community in general. And it’s not just training team members who can test it. Everyone basically can test it. And I will put the invitation to test it in the show notes. And the main areas that we follow will be including its ease of use and then the registering process, and then the editing attendance feature, and basically any other stuff that stands out.

\n\n\n\n

Birgit Pauli-Haack: That’s great. Thank you so much for bringing that to the show. I totally dig it. And I remember having conversations about replacing Meetup as the tool for the local Meetups with multi-site, for all the 700 local Meetups when I was a Meetup organizer in ’16 and ’17, so this is great that it comes together now.

\n\n\n\n

Recently, the GatherPress Plugin is also now available in WordPress Plugin Repo, so you can also test it on one of your other sites. You don’t have to use it for WordPress events. But yeah, I’m going to look at the invite. So that is really cool. When I look at the plugin page, it has blocks for everything and it has for RSVP, add to calendar, the online event, event date, menu and all that. So this is really great. And maybe could even be used for other events, not just WordPress events.

\n\n\n\n

Nadia Maya Ardiani: Yeah. And I myself haven’t tested as well, so sharing this also became a reminder for me to test it. Because it’s really great to have this alternative.

\n\n\n\n

Birgit Pauli-Haack: Absolutely. Oh, and speaking of the training team, there are three courses that came out in the last couple of months. One is the beginner WordPress user. So if you start out as a WordPress content creator and/or site owner, this is definitely a course to go through because it explains some of the WordPressy things that are a little bit harder to know. It’s like your driver’s license course for WordPress. Sometimes we just need a refresher as well. And I just realized that there’s also an Immediate WordPress User course out there. So I think it just went online. And for those who are….

\n\n\n\n

Nadia Maya Ardiani: Yeah, it’s very new.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Have you worked on those?

\n\n\n\n

Nadia Maya Ardiani: Actually, these three stuff like Beginner WordPress User and then Beginner WordPress Developer, and then Intermediate WordPress Developer. WordPress user, sorry, they’re all part of the Learning Pathway Project. So lately we try to create learning pathway. Because sometimes people get into learn.wordpress.org and became like, oh my God, there’s so much stuff to learn. Where do I start?

\n\n\n\n

So we’re thinking maybe it will help if we can have separate learning pathways, for example, for people who don’t have enough technical background, they can start by the Beginner WordPress User. As you already said, it’s like the driving license for WordPress. It’s a really nice way to put it. It’s when you want to really learn from the basics. And then we have Beginner WordPress Developer. It’s for those who want to start developing for WordPress.

\n\n\n\n

And then we have Intermediate WordPress User. So it’s for people who already have basic fundamental knowledge and then they want to level up their use of WordPress. Maybe for content creation, they want to make it more effective, and then they want to explore the advanced features. So this is what everyone can learn from this.

\n\n\n\n

Birgit Pauli-Haack: Yeah. No, really, and I know there’s a lot of work that goes into that, especially because WordPress changes so much in the recent year. What I also like is that the single lessons are actually available separately. You don’t have to go through the course or finish one lesson to go to the next. You can just look at the list of the course and then pick the lessons where you want to expand your knowledge. Or when you say, okay, I need to dive deeper in that topic, and hopefully the lesson covers that.

\n\n\n\n

That’s a really good way also for people who actually build sites for others, to say, okay, if you want to learn that, why don’t you go to that lesson, instead of having to do that training themselves. Although it builds trust, sometimes it can be a bandwidth. You don’t have the bandwidth as a freelance developer or as a small agency to do all the training. And having an official site where you can point people to for certain explanations or for certain tools, on how to use them, is definitely a feature also very well-built for agencies that are out there and working with clients. You are pretty much the first line of support. So that definitely gives you support in supporting. I like that.

\n\n\n\n

Nadia Maya Ardiani: Support in supporting.

\n\n\n\n

Birgit Pauli-Haack: Yeah. So check out the learn.wordpress.org site and the three courses we will have in the show notes for you. And of course, yeah, the Beginner WordPress Developer course covers all the things that you might need to at least get started. Because there’s a lot of tutorials out there that assume a certain knowledge of certain things.

\n\n\n\n

And I know because I work with the writers on the developer blog on the WordPress Developer Blog, and some of it is kind of how can we get to the meat of that particular tutorial without having to explain about everything WordPress.

\n\n\n\n

Nadia Maya Ardiani: Everything.

\n\n\n\n

Birgit Pauli-Haack: So now we can point to the WordPress Developer lessons and say, okay, here you can beef up thinking about this or this and that. So it’s great fundamental work that the training team is doing there.

\n\n\n\n

Nadia Maya Ardiani: Yeah. And we try to facilitate the many ways people might prefer to learn. Some people prefer to learn audio/visually, some people prefer to just read it, because they can do it anytime and anywhere, and also for the accessibility reasons.

\n\n\n\n

Birgit Pauli-Haack: Excellent. Yeah, definitely. That was the section about the training team. Well done on the training team and everybody else out there.

\n\n\n\n

What’s Released – Create Block Theme Plugin        

\n\n\n\n

So that brings us to the section, what’s released. And before we dive into WordPress 6.6 some more, I just wanted to give a shout-out to the latest release of the Create Block Theme Plugin. It has become my most favorite plugin that I actually use. And the team working on has released version 2.3 with a few more capabilities.

\n\n\n\n

And now you can add image credits to the theme modal. So there’s a theme modal where you can put all the information about a theme that you create in there. And there’s now also a section for the image credits if you use somebody else’s images in there that are not commonly licensed or public domain. So you can add this to it.

\n\n\n\n

External links are now translatable. So the translation team, whoever and polyglots wants to translate a theme can do that. There is a new About section in the editor that helps you with what the various pieces are about. And the landing page in the plugin has been majorly improved from the design, and it now looks a little bit more like that plugin is. And then now the font settings. When you clone a theme, the font settings actually persist over the cloning part. So what the original theme is doing you can do. The clone theme is also respecting that.

\n\n\n\n

And then there were quite a few bug fixes and all that. But it’s so great how this plugin actually evolves throughout the times and goes along with the WordPress features. I think that they’re working now on some pattern management, but they need to wait for the core to finish developing. Sometimes the heart of the matter, if you want to create, you can create patterns in the interface, but you need to export them separately and not with the theme. So that’s kind of a major stepping stone.

\n\n\n\n

And then the styles and section styles, they haven’t implemented that yet. But it’s coming along and stay tuned. 

\n\n\n\n

WordPress 6.6

\n\n\n\n

So for WordPress 6.6, release candidate two is now available for testing. Today, we are recording this on July 4th, thinking July 4th to our American listeners. Happy Independence Day. Hope you have a wonderful weekend.

\n\n\n\n

Nadia Maya Ardiani: Yeah.

\n\n\n\n

Birgit Pauli-Haack: And enjoy the summer coming in. But no rest for the wicked. WordPress 6.6 is scheduled to come out July 16th. That’s 12 days away. And there is with the release candidate one, also the Source of Truth came out, a compendium, it’s a book about that, WordPress 6.6. Compiled or composed, edited, authored by and…

\n\n\n\n

Nadia Maya Ardiani: Curated.

\n\n\n\n

Birgit Pauli-Haack: Curated By Anne McCarthy. It’s all you want to ever learn about 6.6 in any detail, about every feature. It might not interest everyone. But you can actually… She tags each feature for the intended user, like this is the theme author, plugin author, end user or enterprise level or for everybody. So you can actually use the browser, find function for the tag theme author, and then go just hop from one occurrence to the next and read it that way. That’s how I do it.

\n\n\n\n

Nadia Maya Ardiani: Yeah.

\n\n\n\n

Birgit Pauli-Haack: If you need a shorter version, Jamie Marsland summarized the most important feature in this video and calls it WordPress 6.6, huge changes coming soon.

\n\n\n\n

Nadia Maya Ardiani: As a content writer, I am so thankful that Anne McCarthy always creates this source of truth every time there’s a major release. So it became our source of truth, literally, to write anything about WordPress.

\n\n\n\n

So it’s also interesting that today’s marketing team, from the make teams shifting to Media Corps. Because it’s expanding the possibilities for the Source of Truth. Now that we are going to have that one place, one central to getting everything about WordPress and being updated on it. So it’ll be really helpful for content creators especially.

\n\n\n\n

Birgit Pauli-Haack: Yeah, it’s actually meant for content creators. It’s not so much for end-users, because that also can be quite technical. So Jamie Marsland, in his video, points out pattern overrides, the grid layout, and we all talked about the negative margins, the custom shadows, and as well as the data views.

\n\n\n\n

And there were actually for the developers additional def notes since the last episode were published, and one was the updates to the interactivity API, miscellaneous editor changes. These are smaller changes, but still don’t overlook them. A definite about section and styles, is definite about the CSS specificity. That’s a very difficult word for me.

\n\n\n\n

Nadia Maya Ardiani: Me, too. It’s a tongue-twister.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And it reflects how hard it is to talk about that as well.

\n\n\n\n

Nadia Maya Ardiani: Yeah, yeah. 6.6 specificity.

\n\n\n\n

Birgit Pauli-Haack: Specificity.

\n\n\n\n

Nadia Maya Ardiani: So many S.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And then there’s a roster of the design tools per block that’s just a table of lists, all the blocks, and then which design tool, line, typography, color, dimensions, background image, gradient, yay, duotone, which block does what. And then there’s another dev notes about the theme JSON version three that also covers the style variations or the section style variations, how you can manage them through theme JSON.

\n\n\n\n

Maya, from all the small and big features, what intrigues you as a content creator the most?

\n\n\n\n

Nadia Maya Ardiani: I actually want to say the zoom out view, but sadly, based on the 6.6 Source of Truth, it’ll be available on a future release. But I was like, if it’s finally available, it’ll be a game changer, because I can… Instead of cut and then move it to somewhere else by scrolling up or down my mouse and put it on the wrong part of the website, being able to zoom it out will be, oh my God, it will be… What is it in English? Sorry. It’ll be really time-saving.

\n\n\n\n

Birgit Pauli-Haack: Yes, absolutely. Yeah. I can definitely see that. Because we are so focused on the block or on the section kind of thing that sometimes you need a full view of a page. And the zoom out view is… We are looking at things sometimes only for the block section and what’s in front of us, but the zoom out view gives you actually a view of the full page and how everything fits together.

\n\n\n\n

That’s very important when you look at template previews or on pattern previews or even on when you go through the categories of patterns and then you see the pattern, how would that fit in into your full page kind of thing? Yeah. But if I understood it correctly, it wasn’t all that seamless to use. It was always a little bit of a surprise when it happened that the team still wanted to… And nothing is hated more than a surprise by an end user. What did I do?

\n\n\n\n

Nadia Maya Ardiani: Did I do something wrong?

\n\n\n\n

Birgit Pauli-Haack: Yeah. That’s the first question I always ask. What did I do? And how did that happen? So they wanted to finesse that a little bit more and make that usage a bit more intuitive. So apart from what’s not in 6.6.

\n\n\n\n

Nadia Maya Ardiani: Yeah.

\n\n\n\n

Birgit Pauli-Haack: What else?

\n\n\n\n

Nadia Maya Ardiani: I think it’s the unified editor experience. It just makes sense to me to have the featured image position way higher than before, because before it’s down there. Now it’s way up there. Because when we create a blog post after finishing the text, the first thing that comes to mind is what feature image we will put there to represent the blog post.

\n\n\n\n

Because having a proper and featured image is also important for the SEO and for branding, especially if we name the featured image with the keyword that we target, it’ll boost the SEO performance as well. And I like how the publish flow looks more compact and less distracting. Because some stuff gets inside when we click something and…

\n\n\n\n

Birgit Pauli-Haack: The three-dot menu.

\n\n\n\n

Nadia Maya Ardiani: Yes. It can be also less intimidating for newbies because there’s not so much stuff right there. And then I’m also interested in the pattern overrides, because it will be so handy and time-saving. And also help create a cohesive design across the site, especially for no-code or no designer, non-designer users, and then also the negative margins because it unlocks the design possibilities for us who don’t really design in our daily lives. So yeah, it will look really cool, I think.

\n\n\n\n

Birgit Pauli-Haack: Yeah, absolutely. And I like the combination between the grid block and the custom shadows. And then now you can have some overlap of images and text, and you don’t have to use a cover block to have that because it’s hard to organize that. Yeah,

\n\n\n\n

Nadia Maya Ardiani: It’ll be so fun to play with.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Great tools in there for designers that are no-coders. Yeah, it’s kind of cool. Yeah. I’m a total fan of the pattern enhancement that comes with 6.6. It’s not only the set pattern overrides that were punted from 6.5, I like the additional time, which really helped with the feature to bring it in. Because now you see it in the sidebar which content you can override and how they’re called.

\n\n\n\n

And to create this, you can actually guide your users, which piece of the pattern you can override. So there’s a sidebar on that, when the pattern comes in you really see it. And there’s also the full pattern management, is made available for sites that use a classic theme. So they get a menu item in the WP admin and also all the pattern management screens. So that’s a big deal for the classic themes because they still dominate the space of course.

\n\n\n\n

Not everybody changes themes every two years, but users can take advantage of the broader template part and pattern management. And theme developers can also make those available for their users. So I’m really happy about that. Yeah, we talked about the grid layouts. I’m absolutely a fan of that. And because you can have so much more design, although I want to do something like a Pied Mondrian kind of style, and I am….

\n\n\n\n

Nadia Maya Ardiani: Oh, yeah.

\n\n\n\n

Birgit Pauli-Haack: Looking forward to doing that. And now you can also create your own drop shadows and you don’t need a theme developer or a developer for it or wait for core. You can create your own drop shadows with the color, how they lean, what’s the angle and what’s the distance from the thing. It’s not available for all blocks. But I think it’s still only for four blocks, but it’s definitely changed for the content creators to make some interesting things.

\n\n\n\n

Nadia Maya Ardiani: Yep, yep.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And one thing I really like is that it’s finally coming to WordPress, and that is, to use….

\n\n\n\n

Nadia Maya Ardiani: What is that?

\n\n\n\n

Birgit Pauli-Haack: The tab button to indent list items?

\n\n\n\n

Nadia Maya Ardiani: Oh, yeah, yeah.

\n\n\n\n

Birgit Pauli-Haack: Every time.

\n\n\n\n

Nadia Maya Ardiani: Yeah, I forget about that too. It’ll be really nice too.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And because it trips me up every time I know I’m going to use it very much. I have not learned to work around it. Why can’t I do this? So I try it every time I use a list that needs to have multiple hierarchies. So I’m really happy about that. Thank you.

\n\n\n\n

Nadia Maya Ardiani: Finally.

\n\n\n\n

Birgit Pauli-Haack: The time that I don’t spend in WordPress, I spend in Google Docs. So some things from Google Docs. What drives me crazy in Google Docs is that I can’t just highlight something and put a link underneath with copy paste. That kind of trips me up in Google. And I was like, Google, get on with it. And GitHub can do it, WordPress can do it, you can do it too. And this was the other way around. Yeah, it’s kind of what Google does nicely and WordPress does.

\n\n\n\n

We talked a little bit on the podcast already about the new screens coming, called the data views. And those are the admin screens, that insight editor to manage pattern pages, styles, navigation and templates. And as they are tested for more admin redesigns to come. And yeah, I’m really excited about that because it kind of gives you a little view into the future, and also lets you already use it and see how that works well for you.

\n\n\n\n

I know for 6.7, they’re looking at making those available for the media library and also for the post because those two things on the content side, they still use the old WP admin for various reasons. Most of it because of the extensibility that needs to be built in, because a lot of plugins kind of tap into these screens right now.

\n\n\n\n

But the 6.7 is probably going to have at least some first versions of that in that. If you’re a plugin developer, you might want to check out theWordPress  component package data views. And there’s also one that contributors are working on, it’s called data forms, maybe to make them work for your plugins or at least test them out, and what it would bring for you later on in a year or so.

\n\n\n\n

And then of course, the last feature that I am really happy about is the extensions of the Block Bindings, they were a big deal in 6.5, but the enhancements that coming in 6.6 is even more useful for site owners and site content creators, because WordPress now offers various ways where you can update the custom fields through the Block Binding screen.

\n\n\n\n

So the meta boxes that are on bottom of your screen are not the best interface. They also don’t have any validation and all that, but you can now change it right in the block. So if you have a typo of inner value for the meta, thinking of a book, if you have a typo in the author. Or you can change the author right there in the block, as well as if that’s in the archive, you can use those Block Bindings also in the archive pages through your templates, but users can then change, oh, this is a wrong date, or this is a wrong location. They can change it right there in the archive pages in the editor.

\n\n\n\n

So it’s kind of nice to have that now built into the Block Editor, what before you actually needed custom blocks for it or you needed ACF for it or parts or something like that. But now you can just have the custom fields connected with blocks still in the early stages of course, but it’s not complicated fields or complicated connections. But it’s a start and it might make….

\n\n\n\n

Nadia Maya Ardiani: We’re getting there.

\n\n\n\n

Birgit Pauli-Haack: Yeah, it’s getting there. And it might make quite a set of custom blocks redundant if you could use those for that. And you don’t have to maintain the code for that. Yeah, that’s what I think about 6.6. What I like and what… I am really looking forward to it.

\n\n\n\n

Nadia Maya Ardiani: It’s less than two weeks from now, I think.

\n\n\n\n

Birgit Pauli-Haack: 12 days from today.

\n\n\n\n

Nadia Maya Ardiani: 12 days.

\n\n\n\n

Birgit Pauli-Haack: So this comes out on Sunday, and you have only 10 days once you listen to that.

\n\n\n\n

Nadia Maya Ardiani: 10 days.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Or maybe today, Thursday. Well, it comes out on Sunday, so you only have eight days. 

\n\n\n\n

Gutenberg 18.7

\n\n\n\n

But that was not the only thing that was released today or this week. The WordPress 6.6 release candidate two, it was Gutenberg 18.7. Total of 115 PRs were merged in Gutenberg 18.7 with seven first time contributors. Yay.

\n\n\n\n

I was going to look at that and hope they contribute not only their first contribution, but also because now they’ve got the process right that there will be many, many more contributions from those users.

\n\n\n\n

Nadia Maya Ardiani: Of course, of many contributions after this.

\n\n\n\n

Birgit Pauli-Haack: Right, right. Yeah. And with WordPress 6.6 at our doorstep, many contributions are focused on bug fixes. So there’s not a whole lot of new features in there, but what we are talking about, some of them are really… We will find in 6.7, but let’s talk about them.

\n\n\n\n

Enhancements

\n\n\n\n

So there is now a content panel for template parts, and that is good because now developers, and when you create templates in the editor, you can add a description and that shows up in the content area for that template. So you can make your theme a little bit more descriptive. Then the next one is, we talked about the published workflow, right?

\n\n\n\n

Nadia Maya Ardiani: Mm-hmm. Yeah.

\n\n\n\n

Birgit Pauli-Haack: And there is the Sticky Toggle, which is something that means the sticky post.

\n\n\n\n

Nadia Maya Ardiani: Yes.

\n\n\n\n

Birgit Pauli-Haack: That is…

\n\n\n\n

Nadia Maya Ardiani: It’s now under… It will be under… Wait, I forget.

\n\n\n\n

Birgit Pauli-Haack: Those three dots.

\n\n\n\n

Nadia Maya Ardiani: Yeah, it’ll be under the status and visibility. And I think that will be great because it makes it more clear what sticky means, especially for non-English speakers and beginners. Because I remember the first time I learned using WordPress, I was confused what does this sticky mean? Because I was trying to make my first blog post and then I tried this sticky feature and nothing happened. Of course, because my post is only one. So I cannot see what this feature actually does. So by moving it under status and visibility, I think it makes it more intuitive. Because by that we know that, oh, this sticky might be related to the visibility. Oh, it’ll stick to somewhere in the website.

\n\n\n\n

Birgit Pauli-Haack: Yeah, I think you’re right. And it’s also not the first… The first few blog posts you probably wouldn’t need to know about Sticky Post to get that into your feature set that you would need. So why is it there? Yeah, you’re totally right. Yeah. What they also did in 18.7, why am I still two years, in 16?

\n\n\n\n

Nadia Maya Ardiani: Numbers are also hard.

\n\n\n\n

Birgit Pauli-Haack: Yeah, numbers are hard, especially for writers. But I’m actually a number person, so…

\n\n\n\n

Nadia Maya Ardiani: Ahh. Yeah, yeah. Number person and alphabet person.

\n\n\n\n

Birgit Pauli-Haack: I used to say, so it’s a real miracle what word people do with numbers. Because I looked at budgets from word people that didn’t work out. But off my tangents now. So one feature that comes with 18.7 is the alignment of the naming models. So we are renaming and naming quite a few things. One is we renamed the sections in the pattern overrides. We renamed template parts, we renamed posts and pages, titles, and all these models, they looked a little bit differently every time. So they are now aligned and use the same design.

\n\n\n\n

So it makes it less of a friction, because every time you see something different, you think there might be something different, but there isn’t. So that’s really good for quality of life improvement on that. So we haven’t talked a lot about the writing mode support for blogs. What is that? That is… Do you know what that is? Have you ever used it?

\n\n\n\n

Nadia Maya Ardiani: I tried it, but not really applied it to my daily process. But I think it opened more design possibilities. Because we can make any other element to be vertical or there are so many possibilities that we can do with the layout and then with the message that we want to share to the world.

\n\n\n\n

Birgit Pauli-Haack: Yeah, definitely. Yeah, so you could pretty much say in the fonts you see in the three dot menu in your font, typography, things you see, vertical alignment or orientation, is I think what you see. Font orientation.

\n\n\n\n

Nadia Maya Ardiani: Oh, yeah, orientation.

\n\n\n\n

Birgit Pauli-Haack: So you can then say, okay, I want this headline to be vertically aligned with the paragraph that it kind of comes after. So it actually will be on the left-hand side instead of on top of it, but it is vertically aligned. And yeah, as you said, it’s a nice design tool to break up the wall of text, I call it.

\n\n\n\n

So when you use headers and list items and all that, they need to be visually attractive at one point, so you can end this PR or with 18.7, the feature of the vertical alignment comes to other blocks. The writing mode support is now also available for buttons and verse and side tagline blocks and side title blocks. Not just for headings and paragraphs. There’s a theme JSON settings in there, and you can also kind of see it then in your style blocks. So I think that’s a great feature to have, that is added to a few more blocks.

\n\n\n\n

So wonderful. Another tool, it’s not a tool, but what has changed, and you will see it in 6.6, is that with the entity that you’re editing. So what do I mean by that? Is it a pattern or is it a block or is it a template? And now you get a document bar on top of the screen that actually tells you where you are. And that document bar is now also available in 18.7 Gutenberg with the style book and the style revisions. So it’s one more piece of getting the orientation right for a content creator. So what am I actually doing? And I liked it for templates and for pages. So am I in template mode or am I in page editing mode, which is kind of a little different.

\n\n\n\n

Nadia Maya Ardiani: Yeah, I checked the GitHub issue and still cannot really comprehend what we will get from this feature? But then you just explained about it. It makes me, oh, yeah, yeah, I will… looking forward to this. That’s why even though I’m not really a technical person, I’m still keeping notes and updating myself of all these updates. Because, oh, this one, I might need this. And just taking notes of everything.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And the last one, it’s also a very small thing, but it’s really improved the quality of life of these new features. And I’m sad it’s not going to come to 6.6. Not that I… Because it’s the tool top to hover over the color and to typography presets. So if your theme has, or if you’re a theme developer and you create color and typography presets for your theme, then the user can hover and identify that color palette or what typography, what’s the font like or what do you call those fonts. And you can then point people to it in your documentation and say, well look at that. Well look at this. And the Tooltip helps you identify really the things that are on screen. All right. Do you want to add something to the Tooltip?

\n\n\n\n

Nadia Maya Ardiani: Yeah, I just want to say that this will be very handy for working with teams because you don’t have to pick that one that is the third one from the top. You can just say the name of, what is it? The color presets. The color palette. So yeah.

\n\n\n\n

Bug Fixes

\n\n\n\n

Birgit Pauli-Haack: Yeah. No, you’re right. Yeah, it’s really hard to organize it. So we mentioned quite a few bug fixes in there. And there is one in there that we are talking about, that’s the writing flows, split the heading into a default block. You can split a block and then it’s still going to be a heading.

\n\n\n\n

Nadia Maya Ardiani: Yeah. Because sometimes when we enter in the middle of the heading and then it creates another H1, let’s say. It just didn’t make sense to have… Why do we want to have two heading one in a row? So yeah, it just makes sense to have when we enter, it automatically becomes a normal text like that.

\n\n\n\n

Birgit Pauli-Haack: Yeah, a normal paragraph block. Or when you get carried away with writing a headline and say, ah, no, I want to break it and do that as a subheading. Yeah. Yeah. So that’s a very good fix. You can also now, it fixes the custom color palette. Because that was always a little bit hard to use when you wanted to create new ones.

\n\n\n\n

Nadia Maya Ardiani: Yeah. I also found this one really useful because sometimes, especially for brands, some brands have that very specific color and by being able to create the custom color palette, it will help us to have a website in our signature color.

\n\n\n\n

Birgit Pauli-Haack: Right. Yeah. And this fix actually makes that workflow much smoother and you don’t have to fiddle around with it too much. And the next one is that for the grid, we talked about the experiment, about the grid interactivity, and it now allows blocks to be positioned in manual mode using drag and drop.

\n\n\n\n

So the handing of grid and grid cells is going to be much easier. And even in the manual mode you can use drag and drop to place your blocks on the grid. There were two things that I want to… There are quite a few documentation PRs that fix or add to the documentation, which is always appreciated.

\n\n\n\n

Documentation

\n\n\n\n

The interactivity API docs now have an addition of the WP-async directive documented. It’s for the developers when they go out and grab some data from somewhere and how to push that into the website. And then for the Query Loop Block, it clarifies some explanation about the variation examples that are in core, so developers can handle them. And I think that was it, what we have for Gutenberg’s 18.7. Yes, we are almost through.

\n\n\n\n

What’s in Active Development or Discussed

\n\n\n\n

We have one section for the… What’s in active development or discussed, and I just wanted to let you know that the GitHub repo for the next default theme can’t….

\n\n\n\n

Nadia Maya Ardiani: Twenty Twenty Five.

\n\n\n\n

Birgit Pauli-Haack: Very good. We did not plan this.

\n\n\n\n

Nadia Maya Ardiani: Yeah.

\n\n\n\n

Birgit Pauli-Haack: And I connected with Carolina Nymark who created the repo, and she just said that it’s pretty much right now just to put the placeholders in. Because the release team for 6.7 hasn’t been announced yet. And the default theme Co leads, will be part of the release team. So we need to wait for that. But if you have any input or any ideas for Twenty Twenty Five, you can definitely create issues there and start and raise your hand if you want to contribute however you want.

\n\n\n\n

Nadia Maya Ardiani: The Twenty Twenty Five will be part of the last release of this year.

\n\n\n\n

Birgit Pauli-Haack: Which is WordPress 6.7.

\n\n\n\n

Nadia Maya Ardiani: 6.7. Oh, yes.

\n\n\n\n

Birgit Pauli-Haack: Yes. Yeah, it’s the next release and it will come out in November. But I think the release date is before Thanksgiving, so it’s November 12th. So it’s way before Black Friday and all the holidays are going to start. At least in America, between Thanksgiving and New Year, nobody really, everybody shops and not a whole lot of people work.

\n\n\n\n

Nadia Maya Ardiani: Yeah. It’s time for… Have fun.

\n\n\n\n

Birgit Pauli-Haack: Well, it’s time to have fun, but also to keep websites stable so the online shopping spray is not interrupted. And because that’s where most people make the year’s revenue.

\n\n\n\n

Nadia Maya Ardiani: Gift giving time.

\n\n\n\n

Birgit Pauli-Haack: It’s giving time, it’s buying time. It’s Black Friday time, it’s Cyber Monday time. It’s all the discounts that come around for that. Yes. Yeah. So I’m so happy that you were on my show, Maya. Or on our show.

\n\n\n\n

Nadia Maya Ardiani: Me, too.

\n\n\n\n

Birgit Pauli-Haack: And it’s always wonderful to chat with you about WordPress and all the things content creators do with it. So when people want to connect with you, where would they find you?

\n\n\n\n

Nadia Maya Ardiani: So you can find me on wordpress.org, of course. And then I have LinkedIn as well, and Twitter and Instagram. But lately I’ve been taking social media time off.

\n\n\n\n

Birgit Pauli-Haack: Okay.

\n\n\n\n

Nadia Maya Ardiani: So if anyone wants to get in touch with me, I think wordpress.org. And maybe if you want to read anything related to me, so in training team, we recently developed… We have a new initiative, so it’s Contributor Spotlight. So we celebrate the journey of training team contributors. It’s initiated by Courtney Paulo-Kranzke or Courtney PK, we call her. It started this January, I think. And yeah, you can all read it on the training team made WordPress Blog.

\n\n\n\n

Birgit Pauli-Haack: Oh, wonderful, wonderful. I’m going to put a link in the show notes to that profile.

\n\n\n\n

Nadia Maya Ardiani: Thank you.

\n\n\n\n

Birgit Pauli-Haack: Well, thank you for that initiative. It’s always good to read the stories, contributor stories. And I will add your LinkedIn and your WordPress Slack profile or WordPress Slack account as well to the show so you can all follow up with Maya.

\n\n\n\n

Nadia Maya Ardiani: Thank you so much.

\n\n\n\n

Birgit Pauli-Haack: You’re welcome. As long as the show notes ,dear listeners, will be published on gutenbergtimes.com for WordPress Podcast. This is episode 103. And if you have questions or suggestions or news you want us to include, send them to changelog@gutenbergtimes.com, that’s changelog@gutenbergtimes.com. Or just ping me on Twitter like many people do. And if you enjoy the show, please, please leave a review on Apple or Stitcher or whatever your favorite podcast directory is, so other people can find it too. Again, thanks to Maya and thanks for listening, and goodbye.

\n\n\n\n

Nadia Maya Ardiani: Thanks to Birgit as well.

\n\n\n\n

Birgit Pauli-Haack: Well, thank you.

\n\n\n\n

Nadia Maya Ardiani: It’s always an honor.

\n\n\n\n

Birgit Pauli-Haack: Thank you. And a great pleasure for me. All right, this is the outro. Listen to it and I’ll see you in two weeks or talk to you in two weeks. Bye-Bye.

\n\n\n\n

Nadia Maya Ardiani: Bye.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jul 2024 08:59:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Gutenberg Times: Grid Layouts, curate the Editor experience, WordPress 6.6 — Weekend Edition 298\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=29127\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://gutenbergtimes.com/grid-layouts-curate-the-editor-experience-wordpress-6-6-weekend-edition-298/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19986:\"

Hi there,

\n\n\n\n

It was a fairly normal WordPress week, apart from the general password reset for all plugin committers on the repository. That was highly unusual.

\n\n\n\n

The release of WordPress 6.6 is moving along right on schedule. Release candidate 2 is out. The video Watch the Build: How WordPress Release Pages are Created in the Site Editor allows you a look behind the scene of this part of the release process.

\n\n\n\n

Gutenberg 18.7 was also released. Together with my friend Maya, I recorded a Gutenberg changelog episode again, number 103. I just can’t get my head around that we already recorded over 100 shows. We also added new music.

\n\n\n\n

This Weekend Edition has quite a few videos linked on what’s coming in WordPress 6.6, on Grid layouts, and Interactivity API. Something for everyone. To learn about new features and grasp their impact, it’s much easier to see them demo’ed in a video setting or screen share than just learn about it via a blog post or a podcast.

\n\n\n\n

Wishing you a fabulous weekend!

\n\n\n\n

Yours, 💕
Birgit

\n\n\n
\n

PS: Thank you to Chris Clarke for sharing his Hong Kong Harbor photo on WordPress Photo directory.

\n
\n\n\n

\n\n\n\n\n\n\n\n

Developing Gutenberg and WordPress

\n\n\n\n

First time release lead, Kai Hao, published Gutenberg plugin version 18.7 and highlighted in his release post What’s new in Gutenberg 18.7? (03 July), the feature of moving grid items around via drag and drop in manual mode, and new content panels for template parts, allowing developers and users to add descriptions to those sections.

\n\n\n\n
\n\n\n\n

Nadia Maya Ardiani and I reviewed the latest Gutenberg version for our Gutenberg Changelog episode 103. We also discussed the latest learning path courses by the training team, upcoming events and WordPress 6.6. The episode will be published over the weekend and arrive shortly after at your favorite podcast app. It was lovely to chat with my friend, Maya from Indonesia again.

\n\n\n\n\"\"\n\n\n\n

🎙️ Latest episode: Gutenberg Changelog #103 – Create Block Theme Plugin, WordPress 6.6, Gutenberg 18.7, and Updates from the Training Team  with Nadia Maya Ardiani

\n\n\n\n

Tammie Lister wrote on X (former Twitter): “Being sponsored to work on the WordPress default theme task force has been one of the most rewarding contribution areas for me in a while. I wrote a post about what has gone on so far. Thank you to everyone who supported me and collaborated.” You can read more about the project on her Update on default theme focus.

\n\n\n\n
\n\n\n\n

The work on the default theme Twenty Twenty-Five has begun with a fresh GitHub Repo. There isn’t much information available yet. After checking in with Caroline Nymark, who created the repo, I learned that the release squad for WordPress 6.7 hasn’t been announced; the repo is more a placeholder until the new theme leads are picked.

\n\n\n\n

Upcoming events

\n\n\n\n

July 8th, 2024 at 16:00 UTC  Hallway Hangout: Section styles and other block style variation updates with Justin Tadlock and others: “At a technical level, the expanded tool set does not add too many new concepts to learn. However, in practice, working with these updates can present challenges and may even have you rethinking your approach to theme design.” says the description.

\n\n\n\n

As already mentioned in Weekend Edition 297

\n\n\n\n

July 9th, 2024, 15:00 UTC – Developer HoursEditor unification and extensibility in WordPress 6.6.

\n\n\n\n

July 23, 2024, at 15:00 UTC Developer Hours: Do you really need a custom block? Let’s explore alternatives. 

\n\n\n\n

Plugins, Themes, and Tools for #nocode site builders and owners

\n\n\n\n

Isabel Brison showed us in a Hallway Hangout how to work with the Grid block and what will be in WordPress 6.6. After answering questions, Brison also showed us what she is working on in a Gutenberg Experiment. Learn more via the post Recap Hallway Hangout: Exploring Grid Layouts.

\n\n\n\n

You can also try things out via this Playground instance. The experiment is already enabled.

\n\n\n\n
\n
\n
Find summary, transcript shared resources via the Recap post\n\n\n\n

Anne McCarthy published videos on YouTube around WordPress 6.6. for content creators and site builders.

\n\n\n\n\n\n\n
\n
\n
\n
\n
\n\n\n
\n\n\n\n

Bud Kraus selected for you the 6 Hot Changes Coming to WordPress 6.6 on the Hostinger Blog. He highlights Pattern overrides, the Grid block, Sections Styles, Data views, Pattern management for classic themes and negative margins. Kraus provides screenshots and instructions on how to use the features.

\n\n\n\n
\n\n\n\n

You might have waited for the video of WordCamp Europe’s edition of the Speed Build Challenge live on stage. Jamie Marsland published the actual Speed Build challenge and cut in from the Matt’s Summer Update and the Q & A after. Epic Showdown: Who will win WordCamp Europe’s First-Ever WordPress Speed Build? with Jessica Lyschik and Rich Tabor.

\n\n\n\n
\n\n\n\n

Stephanie Pi just announced WooCommerce 9.0: Our most accessible checkout and much more. It comes with an improved check-out experience, the next iteration of Product blocks, new REST-API endpoints for the refunds and much more. Actually, WooCommerce 9.0.1 came out a few days later, fixing what caused a fatal error on installations.

\n\n\n\n\"\"\n\n\n\n
\n\n\n\n

Carlo Daniele, blogger at Kinsta, has all the pertinent information about WordPress 6.6 in his post What’s new in WordPress 6.6: Pattern overrides, Block Bindings API, Data Views, new design tools, and much more! You’ll find short explanations, screenshots, and code examples on how to implement some new features into your projects.

\n\n\n\n

Theme Development for Full Site Editing and Blocks

\n\n\n\n

One of my favorite plugins lately is the Create Block Theme plugin. The team working on it just released version 2.3 

\n\n\n\n\n\n\n\n
\n\n\n\n

 “Keeping up with Gutenberg – Index 2024” 
A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023

\n\n\n\n
\n\n\n\n

Nick Diego collected 15 ways to curate the WordPress editing experience and explained each of them in his latest post for the WordPress Developer Blog. Diego covered all possible ways from disabling parts of the design tools, Block directory or Pattern directory to Openverse. Also, how to unregister core block styles and variations or formatting options for RichText blocks. If you build bespoke themes for client projects, some of this might be quite useful to make the block editor a streamlined experience for the client’s content creators, and stay true to branding and design requirements.

\n\n\n\n

Building Blocks and Tools for the Block editor.

\n\n\n\n

Armando J. Perez-Carreno had a two-part conversation with Seth Rubenstein from the Pew Research Center, on how he and his team use the Interactivity API for their website. Rubenstein demonstrated the use of facets and the Interactivity API in creating dynamic and interactive blocks, as well as the concept of ‘atomic’ blocks.

\n\n\n\n\n\n\n\n
\n\n\n\n

Joel Olawanle, technical writer at Kinsta, set out to help developers Preparing for React 19: a guide for WordPress 6.6 users.

\n\n\n\n
\n\n\n\n

Magdalena Paciorek gave a talk on Building custom post types with blocks at WordCamp Europe. The recording made it to WordPress TV for your perusal. In this session, she took a look at how to create bespoke WordPress websites that make use of custom post types directly in the site editor. Paciorek also explored how to build templates with blocks and examined different ways to extend the editor, including the use of block filters, block formats, custom block styles, block patterns, inner blocks, block locking, interactivity API, building our own blocks, and more.

\n\n\n\n \n
\n \n \n \n \n\n\n

Need a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.

\n\n\n\n

Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience

\n\n\n\n

\"GitHub

\n\n\n\n

Questions? Suggestions? Ideas?
Don’t hesitate to send them via email or
send me a message on WordPress Slack or Twitter @bph.

\n\n\n\n
\n\n\n\n

For questions to be answered on the Gutenberg Changelog,
send them to changelog@gutenbergtimes.com

\n\n\n\n
\n\n\n\n

Featured Image: Hong Kong Harbor photo by Chris Clarke, found in the WordPress Photos space.

\n\n\n\n
\n\n\n\n

Don’t want to miss the next Weekend Edition?

\n\n\n

We hate spam, too, and won’t give your email address to anyone
except Mailchimp to send out our Weekend Edition

Thanks for subscribing.
\n\n\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jul 2024 04:20:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"HeroPress: An Essay From Japan, Interviews From Italy, Photos From Romania!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://heropress.com/an-essay-from-japan-interviews-from-italy-photos-from-romania/#utm_source=rss&utm_medium=rss&utm_campaign=an-essay-from-japan-interviews-from-italy-photos-from-romania\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12318:\"\"Colorful

\n\n\n
\n\n
\n\"Jesse\n
\n\n\n\n
\n

This week’s banner image is in memory of Jesse Petersen who left us on this date in 2017. Godspeed Jesse.

\n
\n\n
\n\n\n

\n\n\n
\n\n
\n

HeroPress At WordCamp Europe 2024

\n\n\n\n\"WCEU\n\n\n\n

Well, WordCamp came and went. We had a wonderful time, and like always met some people I’ve known for years, but never expected to get to meet in real life.

\n\n\n\n

We did 4 interviews, check out these amazing people:

\n\n\n
\n\n
\n\"Karolina\n
\n\n\n\n
\n

Karolína Vyskočilová

\n\n\n\n

Karolina is from Prague and has been active in the WordPress community for many years. Despite that fact, I had never heard of her, which is one of the main points of these interviews. Find all the new people!

\n\n\n\n

Here’s the audio from our talk.

\n\n\n\n\n
\n\n
\n\n
\n\n
\n\"Aida\n
\n\n\n\n
\n

Aida Correa-Jackson

\n\n\n\n

Aida is from Florida, but grew up in Brooklyn New York. She works hard on Kids Camp, and I won’t spoil the rest of it for you.

\n\n\n\n

Here’s the audio from our talk.

\n\n\n\n\n
\n\n
\n\n
\n\n
\n\"\"\n
\n\n\n\n
\n

Josephine (Rahissa) Ngo Nonog and Herman Ngembu

\n\n\n\n

Rahissa and Herman came to Italy from Cameroon and someone suggested they try WordCamp!

\n\n\n\n

Here’s the audio from 4.

\n\n\n\nJosephine (Rahissa) Ngo Nonog and Herman Ngembu Interview\n
\n\n
\n\n
\n\n
\n\"Thabo\n
\n\n\n\n
\n

Thabo Tswana

\n\n\n\n

Thabo is from Zimbabwe originally, but since doing an Essay has had the means to move to South Africa!

\n\n\n\n

Here’s the audio from our talk.

\n\n\n\n\n
\n\n
\n\n
\n\n\n

\n\n\n
\n\n
\n

HeroPress.comA welcoming community that embraces authenticity – 本物らしさを受け入れる温かいコミュニティ

\n\n\n\n\n\n\"Ben\n\n\n\n

Ben Evans had a love for teaching that he was able to leverage in the WordPress community when the pandemic hit.

\n\n\n\n

I had opportunities to be part of educational projects within Automattic. I coached Japanese support agents, created internal training materials, and developed a new onboarding program for new employees. These experiences rekindled my love for education.

\n\n\n\n

Ben’s essay is available on HeroPress.com.

\n
\n\n
\n\n\n

\n\n\n
\n\n
\n

WPPhotos.Info

\n\n\n\n\n\n\"Kid\n\n\n\n

This week’s WPPhotos Info is called “Yellow helmet from bird-eye view“.

\n\n\n\n

This photo was taken by Hapiuc Robert on an iPhone 15, wide camera. In the photo is his daughter riding her bike. He used to be a professional photographer and he takes advantage of every opportunity to get a good photograph.

\n\n\n\n

The photo it’s an instant photo, he just takes out the phone, plane it above her and press the shutter button a couple of times. 

\n\n\n\n

His taught was that her helmet will look amazing a bird eye view, and it does! The photo was taken around the house on a gravel road.

\n\n\n\n

Read more of the story at WPhttps://wpphotos.info/yellow-helmet-from-bird-eye-view/Photos.info!

\n
\n\n
\n\n\n

The banner at the top of this post is a CC0 licensed photo by Ericka Barboza from the WordPress Photo Directory.

\n\n\n\n\n\n

That’s it for this week! If you’d like to get this post in your email every week, make sure you sign up!

\n

The post An Essay From Japan, Interviews From Italy, Photos From Romania! appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jul 2024 21:51:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Do The Woo Community: How Much Woo Can One Cram in a Short Podcast with ChatGPT?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=5572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/how-much-woo-can-one-cram-in-a-short-podcast-with-chatgpt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3526:\"

A bit of fun today, or maybe not. I asked ChatGPT to Give me a shorter script of a podcast where I mention WooCommerce or Woo, short for WooCommerce as many times as I can. Well, if you know me, and my personality, I am a basically a mellow guy. So I took this one step further seeing that ChatGPT obviously doesn’t know me well and will deliver a monotone version of the results.

\n\n\n\n
\n\n\n\n

[Intro Music]

\n\n\n\n

Host: Welcome, Woo enthusiasts, to another exciting episode of WooWonderland, where we dive deep into the magical world of WooCommerce. I’m your host, [Your Name], and today’s episode is going to be an exhilarating journey through the enchanting landscape of Woo-commerce. Yes, we love saying Woo!

\n\n\n\n

[Transition Music]

\n\n\n\n

Host: Woo, woo, woo! Before we jump into the heart of today’s discussion, let’s take a moment to appreciate the incredible community that surrounds WooCommerce. Woo, you guys are amazing! Whether you’re a seasoned Woo expert or just starting your Woo journey, there’s always something new and exciting happening in the world of Woo.

\n\n\n\n

[Woo Chanting]

\n\n\n\n

Host: Now, let’s talk about the latest Woo updates because, you know, staying current with Woo-commerce is crucial for all you Woo enthusiasts out there. The Woo team has been working tirelessly to enhance the Woo experience, and guess what? The latest Woo update is nothing short of spectacular. Woo!

\n\n\n\n

[Applause]

\n\n\n\n

Host: Speaking of updates, have you ever wondered how other businesses are utilizing Woo-commerce to elevate their online presence? Well, wonder no more because we have some incredible Woo-commerce success stories lined up for you today. These stories showcase the versatility and power of Woo. Woo-hoo!

\n\n\n\n

[Background Cheers]

\n\n\n\n

Host: Now, let’s Woo our way into the realm of e-commerce trends. Woo-commerce is not just a platform; it’s a trendsetter! From headless commerce to mobile commerce, Woo-commerce is at the forefront of shaping the future of online businesses. Woo, it’s like the trendiest kid on the e-commerce block.

\n\n\n\n

[Transition Music]

\n\n\n\n

Host: And here’s a pro tip for all you Woo enthusiasts out there: if you want to optimize your Woo-commerce store for success, pay close attention. Speed up your Woo site, master the art of SEO, enhance the user experience — because a well-optimized Woo store is a happy Woo store. Woo-hoo!

\n\n\n\n

[Background Cheers]

\n\n\n\n

Host: Now, let’s take a moment to celebrate the Woo experts in our community. Being a Woo expert is like having a VIP pass to the coolest e-commerce party in town. If you’re not part of the Woo expert program, what are you waiting for? Join the Woo party and let the Woo-magic unfold!

\n\n\n\n

[Transition Music]

\n\n\n\n

Host: As we near the end of this Woo-tastic episode, I want to thank all our Woo fans for tuning in. Remember, whether you’re a Woo novice or a seasoned Woo master, there’s always something Woo-nderful to discover in the world of Woo-commerce.

\n\n\n\n

[Closing Music]

\n\n\n\n

Host: That’s a wrap for today’s WooWonderland episode. Until next time, keep woo-ing and stay enchanted by the magic of Woo-commerce. Woo you later!

\n\n\n\n

[Music Fades Out]

\n\n\n\n

Well, now you can see the reason why I shared this in text vs. audio. LOL

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Do The Woo Community: Building Community Without the Noise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=4750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://dothewoo.io/building-community-without-the-noise/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8328:\"

When I first launched this site Do the Woo, I had written a post about this. I wanted to pull a bit from that before I bring you to-date.

\n\n\n\n

My first thoughts on community and noise

\n\n\n\n

Dated October 20, 2020

\n\n\n\n

Tomorrow comes the official launch of this new site. And let me tell you, it’s been an amazing journey of learning and understanding myself as well as the audience I will be speaking to.

\n\n\n\n

One interesting aspect of this is the main goal, connecting the Woo builder community. I talked about this on a previous post, but I would like to dive into the concept of connecting. And conversation.

\n\n\n\n

I was asked about groups for Do the Woo

\n\n\n\n

What brought the idea of Facebook groups to mind was something that happened as I have been chatting with various people about my new site. When I talk about connections, conversation and community, a few times I was asked,

\n\n\n\n

Are you creating a Slack Channel? Starting a Facebook group? Perhaps a forum? Where are you growing your community and letting them have a conversation?

\n\n\n\n

When we go into or lurk in community chats, whether it’s a Facebook group, regular chatter on any social platform or even Slack, often we end up in the middle of a massive amount of noise. There is a lot going on. Conversations going left and right. Sometimes with a bit of anxiety, bitterness, and yes, anger.

\n\n\n\n

Now I’m not saying that nothing good comes out of these conversations. But that isn’t the only way to connect and grow a community.

\n\n\n\n

It can start with this, the art of listening. Remember when that was part of connecting? Taking the time to listen to someone else share their insights and perspectives. Getting a better understanding of that person, and often, the community they are representing. In fact, get three people together for a good conversation and I can guarantee that you will get a lot more out of it vs. endless streams and threads of online chatter.

\n\n\n\n

Let’s take it a step further, though: personal connection. Learning about someone and then reaching out to them. Or perhaps, even having a connector that will help to introduce you to others in the community.

\n\n\n\n

Yes, that’s it. I am the connector.

\n\n\n\n

Whether it’s via a podcast conversation or a post interview, I am connecting you to a new face. Or it might even be me connecting you personally with someone else.

\n\n\n\n

I get enough of that noise, or what you might consider chatter amongst dozens of people via social and other platforms. And yes, I enjoy that. But with Do the Woo, I am cutting through that noise while bringing the Woo builder community together.

\n\n\n\n

So in the end, when I do conversations, they are one-on-one. A Zoom chat. A DM on Slack. Email and a variety of other ways. The point is, again, no matter how or where you do it, listen.

\n\n\n\n

Now it’s today

\n\n\n\n

So I was hoping as you read that you hung onto the fact that I wrote this over three years ago.

\n\n\n\n

Since then, it has since resonated with me and, to be honest, I think it has always been a part of how I have built my own communities. The fact is we all do it in some way. For Woo builders, while keeping it on the business side of things, it may be a community of customers or clients. It may also be a community within a business you work for, or perhaps, colleagues of yours.

\n\n\n\n

You may also build communities around you brand or business on your site, on social, on Slack, you name it.

\n\n\n\n

There are community experts out there that will give you advice. There are also social media consultants that will do the same, specifically for social communities. The thing is that one size doesn’t fit all. And often that is what you will discover over and over when seeking advice on building your own community.

\n\n\n\n

I have been building community long before I got into the WordPress space in 2006. With our other business, there were ways that we built our community, and some of this was long before we did it online. I don’t proclaim to be an expert on community building, but I can share my own experiences that have worked for me. No promises here that I will deliver the perfect piece of advice for your needs, but I am hoping this will give you a bit of a different perspective on community building and something to ponder on.

\n\n\n\n

A community does not need a bunch of noise

\n\n\n\n

Now before I get into this part, understand that this is how it works for me, and in these last few years with Do the Woo, it has proven right for me. And by no means am I saying it’s the right way, or the only way.

\n\n\n\n

I just feel that a lot of people never think about other options when building community. They tend to “jump on the bandwagon” of engagement and active conversation as the only way to build all communities.

\n\n\n\n

Engage, or die

\n\n\n\n

Community and social media experts say you must engage. Or else why do it? Your community will not thrive without this engagement. It often is literally rammed down your throat. At the same time, engagement isn’t always clearly defined, and seen as this constant need to reply, comment and add your own opinion, advice or simply be part of the conversation, no matter what.

\n\n\n\n

In fact, I have seen social media experts take “engagement” to a new and disturbing level. They constantly drop into conversations with replies like “nice”, “that’s great”, “cool” and “yeah”. If that is considered engagement, well, count me out. In fact, shouldn’t engagement also mean bringing value to a conversation. Not simple, meaningless replies that help you as they build up your metrics in your social media engagements.

\n\n\n\n

Everyone has an opinion

\n\n\n\n

This is the beauty of the human race. We all have an opinion and can freely express it. But on the other hand, at times, it’s nothing but added noise. How often do you see a thread of a conversation and it appears that most of the comments are left by people who never read what others have said. And alarmingly, more people appear to never have read the original comment.

\n\n\n\n

As a result, it comes across as being all about “you”. You and what your opinion. It’s like a freaking room of people just shouting out what they are thinking, and ignoring everyone else. Nothing gets resolved and more times than not, it can turn sideways and end up being a never-ending debate or argument, instead of a discussion.

\n\n\n\n

Now with both engagement and conversations, it’s not cut and dry. And neither of them are something that you should consider totally dismissing. In fact, depending on the goal of your own community, you may just ignore the advice I have given you so far.

\n\n\n\n

With that all said, I simply bring these up to give you another thought to ponder on as you build your own community.

\n\n\n\n

Where is this all going

\n\n\n\n

This has turned into quite the long post and if you are still with me, I’m amazed. But hey, it also means you are listening, or perhaps, reading.

\n\n\n\n

Do the Woo now has 14 co-hosts and more coming on board. On top of that I am constantly having people come in and host their own show, more of a one-off opportunity. And who knows what is next.

\n\n\n\n

The fact is that each time you hear a show on Do the Woo, and you don’t hear me, well, that’s because I was listening. Behind the scenes, taking notes, and enjoying the conversations. Sure there is what you might consider noise in our community, but it’s softer, more viable and easy to focus on. There is a time and place for lots of noise in many communities, and that is where it will thrive and stay. But for now, I’m in my happy place.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Do The Woo Community: The Perfect Marriage of Content and Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=5385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/the-perfect-marriage-of-content-and-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2303:\"

I typically don’t spend a lot of time in the past, but every once in awhile I become reflective. As I move into the next phase here at Do the Woo, well, that is when it happens.

\n\n\n\n

Content and Community, a combo that hit me hard

\n\n\n\n

If you have been following my journey, you know that, since diving into WordPress 16 years ago, community and content have played a key role in what I do.

\n\n\n\n

But when I set this site aside, BobWP in October of 2020 and turned my focus on Do the Woo, it was a transition that grew not only from the previous months of 2020, but all the years before that.

\n\n\n\n

An interesting thing happened back in 2020.

\n\n\n\n

It can best be described as two-pronged: community and content.

\n\n\n\n

As we all know, in-person connections went down the toilet during COVID. Although I had not been traveling as much over the years prior to COVID, still, I found myself reaching out to more people online. More one-to-one conversations. More digital meetups. More forms of smaller online events. But, to be honest, I probably connected more with the community that than I have in any of the previous years in the space.

\n\n\n\n

During that same year I found myself burning out on content creation around blog post tutorials. I have done these for years and I just couldn’t poke one more out at the keyboard.

\n\n\n\n

So I decided to focus on more community-focused content, such as my podcasts and virtual meetings. It became a natural marriage of content and community.

\n\n\n\n

Between now and then

\n\n\n\n

So on reflection, this was one of the best moves I have made in my WordPress career. I continued on building the community at Do the Woo. Online connections grew, and then when IRL events started back up, well, they blossomed. That tie between content and commiunity have grown to be such a huge part of Do the Woo, and everything I do these days. And now on to 2024, the biggest year yet for Do the Woo.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Do The Woo Community: 16 Years Later, the WordPress Origin Story by BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=3325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://dothewoo.io/16-years-later-my-wordpress-story/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4535:\"

As I celebrate my own birthday today, many more than 20, I am reflecting on the years WordPress has been there for me. Oddly, I’m not sure where to begin except the beginning. And if I was to write a post to publish on the 20th anniversary of WordPress, it’s gotta be done here on BobWP.

\n\n\n\n

Also, there lies the fact that I just returned from WordCamp Lisboa where I gave a talk on 20 Years of WordPress community. So it’s a bit on my mind.

\n\n\n\n

George Clooney was named People’s sexiest man alive and I discovered WordPress

\n\n\n\n

These two events have nothing more in common than it was the same year, 2016. I can’t say I think George deserved it, but I had other things on my mind. In fact two things.

\n\n\n\n

First this was the year I became a bit intrigued with blogging. Nothing that had me gasping at the thought of writing posts, but simply a curiosity. At the same time I was trying to step into the world of web design as we had been running a marketing and design company for 13 years. And as much as building a site thrilled me, which was equal to having my hand smashed in a door, I figured there had to be a better way than html and flash.

\n\n\n\n

Time drifted by. Judy had started a blog on Typepad and didn’t give a crap where it was. She just wanted to write. As I eased into the next year, WordPress slipped into my consciousness more and more. It seemed apparent that this thing called WordPress was going to become part of my life one way or another. Seriously though, I didn’t have a clue to what extent.

\n\n\n\n

For the next few years, up to 2010, bit and pieces fell together. I found a theme on a fairly new site called iThemes. The concept of these seemed to be luring me into creating a site for our business that didn’t look like shit. And that’s exactly what WordPress and the Corporate theme from iThemes did for me. Without any freaking code!

\n\n\n\n

The BobWP brand rises out of the ruins of ancient web design

\n\n\n\n

Now I am avoiding going through my 16 years of WordPress history, simply for the reason that I cannot afford to lose you through my years of pivots, twists and turns. It may make you dizzy and I don’t want you vomiting before I wrap this up.

\n\n\n\n

But 2010 was the pivotal moment in my WordPress Story. Why? Well, I had been doing some blogging workshops the two years prior to that year. I was getting my feel for where I need to go with WordPress. I was starting to explore the community more and more from that day in 2006. And I liked what I saw.

\n\n\n\n

So the time came to make the transition from our marketing and design firm, Cat’s Eye Marketing, to something that would let me do my WordPressy thing, whatever that meant and wherever it led.

\n\n\n\n

I got rid of all our our “print” clients or the last few that we were hanging onto. Mentally I told myself I’m going all in on WordPress. Design, training and whatever else would come my way. And it was time to rebrand. Not the business, per se, but myself. I was going to be the brand. So after some contemplation, possible consumption of alcohol and severe mumbling to myself, I came up with BobWP.

\n\n\n\n

Mmmmmmm. It was short and sweet. And the domain was available, go figure. But would people get it? Would someone that doesn’t know what I do, and doesn’t know WordPress find it to be puzzling? Would people say my business is Bobwup?

\n\n\n\n

Honestly, those concerns and questions did not weigh heavily on me. Nor did the fact that I was tying myself into a personal brand, that, well, would likely die with me. I bought the domain, and made it happen.

\n\n\n\n

And you may know the rest, the rest is history.

\n\n\n\n

I’m a WordPresser at heart

\n\n\n\n

I really do love the community. And at this point I’m here to stay. Right now I’m doing what motivates me the most. Connecting people. Raising voices. And meetings some of the coolest people I have ever known, both in these last 16 years and moving forward.

\n\n\n\n

So as much as I find it kind of weird singing Happy Birthday to my dashboard, my computer or any part of the software, or thinking that WordPress could be my grandchild, I will say this.

\n\n\n\n

Happy 20th Anniversary, WordPress Community

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Do The Woo Community: Are We in WordPress Community Version 3.0?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=4975\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/are-we-in-wordpress-community-version-3-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3740:\"

I was recently on Jeff’s podcast over at WPMainline. A good part of the conversation was about the GoDaddy acquisition of Pagely. We also chatted about community and how some frustrations have led to great people moving on.

\n\n\n\n

But with the acquisitions, blocks, community disruption, etc. etc. etc., a thought occurred to me. We focus on the versions of WordPress, but what about community?

\n\n\n\n

Three Versions Ago

\n\n\n\n

I like to think of it this way.

\n\n\n\n

WordPress Community Version 1.0

\n\n\n\n

This is when it all started. WordPress moved on from being a sparkle in Matt’s eye to something on the web.

\n\n\n\n

WordPress Community Version 2.0

\n\n\n\n

I’m not sure exactly when this came out, but am looking at the 2007 – 2010 time frame. Why? This is when I started using WordPress. Ha. Well, that isn’t the reason. This was the time period a lot of the veterans in the space started up businesses. Or entered the space themselves.

\n\n\n\n

But more importantly I think around 2010 WordPress really started to gain traction. Why do I feel this way. From experience and having talked to others, this we a sweet spot. Where the rubber hit the highway. And again, from conversations with others, this seemed to be a ripe time to really dive into the space.

\n\n\n\n

And lastly, what followed in that time, I can guess that the community started kicking up a few notches.

\n\n\n\n

WordPress Community Version 3.0

\n\n\n\n

This one happened in the last couple of years, or maybe when 5.0 came out for WordPress. This is when the stuff hit the fan. More rapid innovation and more rustling in the community. Acquisitions are on the journey to become a norm. Rumblings were hot and heavy. And the community, well, started feeling different. Depending on who you are and what you perceive, those feelings where either really good, kind of sucky or a mix of everything between.

\n\n\n\n

Now rest assure, this is something that came to me as I was driving back from the grocery store at 7:30 am while having just listened to Cory from Post Status talk to Josh from Pagely about the acquisition.

\n\n\n\n

I suppose I could go on to fill a lot of versions of the community between those versions. That would be fun, but obviously time-consuming.

\n\n\n\n

All I know is that I am curious now about version 4.0.

\n\n\n\n

Update/Sidenote:

\n\n\n\n

I had the chance to go on the Post Status podcast and take a deep-dive with David Bisset on this topic.

\n\n\n\n

And here is a poll he took on Twitter with some interesting results and comments as well.

\n\n\n\n
\n

#WordPress folks: based on @BobWP post here what WP generation do you feel you belong to?https://t.co/bjNynPvjL6

— David Bisset (@dimensionmedia) December 31, 2021
\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: #126 – Aaron Jorbin on Navigating WordPress Major and Minor Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=156753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/podcast/126-aaron-jorbin-on-navigating-wordpress-major-and-minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44100:\"Transcript
\n

[00:00:19] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.

\n\n\n\n

Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, how WordPress gets updated.

\n\n\n\n

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.

\n\n\n\n

If you have a topic that you’d like us to feature in the podcast while I’m keen to hear from you and hopefully get you, or your idea featured on the show. Head to wptavern.com/contact/jukebox .

\n\n\n\n

And use the form there.

\n\n\n\n

So on the podcast today, we have Aaron Jorbin. Aaron has led teams responsible for some of the largest and most prominent WordPress sites in the world, including Rolling Stone, Variety, WIRED, The New Yorker and The White House. He’s also a WordPress Core committer who focuses on improving developer happiness, and making the internet usable by everyone.

\n\n\n\n

He’s been an integral part of the WordPress community since 2010, and today Aaron opens up about the crucial importance of major and minor WordPress releases, and the need for user trust, which forms the backbone for features like auto updates that enhanced WordPress security.

\n\n\n\n

We get into the process behind WordPress releases, discussing how major and minor releases a planned and executed. Aaron explains the dynamics of the Core Committer community, a group of around a hundred dedicated individuals, about 50 of whom are currently active, whose decisions and hard work keep WordPress robust up to date and secure. The commitment to transparency, minimal egos, and the ability to handle criticism are mentioned as key elements for maintaining trust inside this community within a community.

\n\n\n\n

We talk about how communication and decision-making take place mostly in public forums, ensuring openness and collaboration. The conversation also touches on the ebb and flow of volunteer and sponsored contributors. The challenges of coordinating across global time zones, and the need for asynchronous decision-making.

\n\n\n\n

Aaron explains what it takes to move from a small contributor to a key player in the WordPress ecosystem, emphasizing the burden of responsibility that comes with making changes affecting millions of non-technical users. Whether you’re a developer tester or enthusiastic user, Aaron encourages contributions in various forms, from sharing ideas to testing and providing feedback.

\n\n\n\n

If you’ve ever wondered how WordPress is maintained and updated, this episode is for you.

\n\n\n\n

If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.

\n\n\n\n

And so without further delay, I bring you Aaron Jorbin.

\n\n\n\n

I am joined on the podcast today by Aaron Jorbin. Hello Aaron.

\n\n\n\n

[00:03:42] Aaron Jorbin: Hello Nathan.

\n\n\n\n

[00:03:43] Nathan Wrigley: This is going to be a really interesting episode, and I confess, dear listener, that this is an episode that I basically know almost nothing about. So everything that comes out of Aaron’s mouth is going to be schooling me in a process that I know nothing about.

\n\n\n\n

But it is probably the most important process. Without the process that we’re going to discuss today, the entire enterprise of WordPress doesn’t exist, because we’re going to be talking about the way that WordPress is released, goes from one version to another.

\n\n\n\n

Before we get into the meat of the podcast though, Aaron, can I just offer you the opportunity to tell us a little bit about yourself, who you are, where you come from, where you are at the moment, because that’s kind of interesting, and what your role in the WordPress community is, please.

\n\n\n\n

[00:04:26] Aaron Jorbin: So I am Aaron Jorbin. I have been a Core contributor since 2010, and have been involved in WordPress since about a year or two before that. I went to a WordPress meetup and got sucked into the community, got lucky. And it was right before WordCamp Portland 2009, which was sold out in like three hours. And so I had not gotten a ticket, and there was a raffle for tickets. And so I was able to win the raffle and get a ticket, and get to go to a WordCamp, and start meeting the people that I had known from IRC in real life, and got brought in then.

\n\n\n\n

And my role, I am one of the Core committers, so I’m one of the one hundred or so people that can make changes to WordPress Core itself. And for the last year, I’ve been specifically focusing on the minor releases of WordPress, so the maintenance and security releases.

\n\n\n\n

And these are ones that are much smaller in scope, these aren’t bringing in new features, but in my opinion, some of the more important ones. They’re the ones that are auto updated by default.

\n\n\n\n

And so the changes that we make in these releases go to every site. And it is a terrifying moment when you start rolling them out, and you just have to cross your fingers that everything is going to go smooth. And so we’ve put a lot of processes in place to help them go as smooth as they possibly can.

\n\n\n\n

That has been my main focus, but I’ve also worked a lot on the build tools of WordPress, and on the more low down systems. I haven’t done a lot with many user facing features. I think the last user facing feature that I had a heavy hand in was the ability to log out of other, where you were logged in elsewhere. And we did user testing for that at the final WordCamp San Francisco, so I think that was 2014.

\n\n\n\n

[00:06:29] Nathan Wrigley: Honestly, what a fascinating story. Can I just ask though, if we go back to 2010, I think that was the year that you said you began your WordPress journey. So it’s a long time, you’ve been doing this software now for 14 years. What was the path of escalation that took you from, I’m brand new to WordPress, to Core Committer?

\n\n\n\n

Because it feels like, if you’re into the software of WordPress, Core Committer is, that’s like where the road ends. There’s not really too many places to go beyond there. You know, you’ve got the capacity to improve WordPress. You could destroy it if you so wish to. So how did that path happen? And I’m guessing it was a sort of slow, incremental community journey, but I’d love to hear that.

\n\n\n\n

[00:07:07] Aaron Jorbin: Yeah, so my first code contribution was, so Jen Milo, who was at the time the UX lead of WordPress. She published a blog post about a few small UX changes she would like to see in WordPress Core. And I was like, well, I’ve got some extra time on my hands. I’m going to try to work on one of these.

\n\n\n\n

And I sat down for a couple of days, and worked on the initial patch for it, and went back and forth with Andrew Nacin, who was a new committer at that time, and we came up with a solution. This was during the 3.0 cycle, and it was for the ability for you to see, if you attempted to change the admin email in WordPress, it sends an email that you need to confirm, but there was no notice whatsoever that there was a pending change. So it was just adding a notice that there was a pending change, so you could know that someone had tried to change it.

\n\n\n\n

And so, worked on that, and that got accepted. I was very excited. I ran home to my then girlfriend, and told her, oh my God, oh my God, you’re not going to understand any of this, because she was not a techie. This is what I did. My code is now going to help power almost 20% of the internet. That also shows how old this was.

\n\n\n\n

From there it was, well, now I’ve seen this process, now I’ve been involved in this process, what can I do to continue being involved in this process? And so I was working on a few small enhancements, or bug fixes, every release. And did that for, probably about three years before I got a job at Condé Nast, the magazine publisher. And part of my role there was to really help the company used WordPress better.

\n\n\n\n

And so that gave me a lot of freedom and time, and I found one of the best uses of that time was to help make WordPress itself better. If it’s better for Condé Nast, it’s probably going to be better for everyone. And at the time, one of the challenges, it was right as the Git mirrors were added for WordPress. And I was like, okay well, now we have patches that are coming in through Git, coming in through SVN, coming in against the old Core repo, versus against the modern develop repo.

\n\n\n\n

And so I worked on a tool called Grunt Patch WordPress, that made it easy for you to apply patches from anywhere. And you could just enter a ticket number, it would list all of the patches, and it would apply it automatically, no matter how it had been created. And working on that, I got involved more in the build tools, and was asked during the 4.1 cycle, if I would be willing to become a committer, and if I was willing to help maintain WordPress.

\n\n\n\n

And it was a huge honour, and a huge burden that I would be willing to take on. My friend Daniel Bachhuber gave a talk a number of years ago, my condolences, you are now the maintainer of an open source software project. And in many ways, like you are taking on a great weight. Your changes are going to affect other people, and you are going to be responsible for making these changes.

\n\n\n\n

It is still an honour that the community and other committers trust me enough to stay in this role, and that I have been able to make a number of changes, and hopefully make WordPress better in the process.

\n\n\n\n

[00:10:41] Nathan Wrigley: It is such an interesting tale that. And really, I think the word that’s coming out of it for me was one that you just said, and it was trust. It feels like this whole process, from 2010 until the moment you were offered the Core Commiter status, it feels like it’s a work of building up trust, of doing things in a way which is fully transparent. People can see what you’re doing. You’ve done something important. Things worked, I guess, as well. And over time, people just begin to say, oh okay, yeah, Aaron, oh yeah, his name’s come up a little bit. And then eventually, that moment where you get the ability to alter WordPress Core.

\n\n\n\n

But also, I guess the journey between 2010, okay, it was 20% of the internet. It was still big. But it’s like going from 20 to 43, let’s say about there at the moment. That’s a big jump. To be approaching half of the internet is incredible. And you illustrated, or you alluded to the fact that you sometimes probably feel the burden of that a little bit. You commit something, and millions of people are going to feel the effect of that. And millions of them will be utterly non-technical. And so they will not know when something goes wrong. They will not understand where to go and seek resolution to that, potentially.

\n\n\n\n

And so that must add to the burden even more because, you know, if something goes wrong at my local shop, I just take it back and get another one. If something goes wrong with a website and I’m non-technical, then, yeah, that’s really interesting. So trust is what I’m imagining is the sort of essence of what you’re doing.

\n\n\n\n

[00:12:14] Aaron Jorbin: Yes. So ultimately, user trust matters. I think it was Andrew Nacin who first said to me that, what makes WordPress work as well as it does, is the trust the users place in the software. The fact that users trust WordPress to auto update. Without auto updates, WordPress would be less secure. Without the ability to have a bug fix, or a security bug fix go out nearly instantaneously, it would be weeks before many people logged into WordPress. Potentially, you know, some people will set up a site, and set it and forget it. And they would get hacked if it wasn’t for auto updates. And so having that user trust really is a requirement for WordPress to be as successful as it is.

\n\n\n\n

[00:13:05] Nathan Wrigley: So there’s the trust from the community, but also presumably there must be a fairly high level of trust between you Core Commiters. And I think you said about the number 100, something like that. Have I got that right? Is it roughly around there?

\n\n\n\n

[00:13:17] Aaron Jorbin: It is about a hundred people that have committed over the course of the 21 years that WordPress has been involved. I think there’s about 50 active at the moment in some way, shape, or form.

\n\n\n\n

[00:13:28] Nathan Wrigley: But a hundred broadly speaking, over the course of WordPress, and maybe 50 at the moment. I guess the trust between all of you must be fairly high. And I presume you must have back channels. Well, of course you do. But I’m really just leading you down the garden path of, tell us what these are.

\n\n\n\n

How do you communicate? How do you maintain that trust? Is the trust, dare I ask it, is the trust ever taken away, and somebody has to be removed from that role? So yeah, let’s just get into that. How do you communicate? How do you ensure that trust is kept going? What are the ways that you build all of that up?

\n\n\n\n

[00:14:03] Aaron Jorbin: First off, there’s very little back channel. There’s very little that is not discussed in the open, related to WordPress Core. Security is about the only thing that does not get discussed openly. Otherwise, there might be some conversations, especially when things are just not known. When people have, what I would refer to as a very half-baked idea. You might back channel, and have a quick side discussion with one or two other people, to try to make that idea a little bit better, so that you don’t feel like you’re going to embarrass yourself by sharing the idea.

\n\n\n\n

Other than that, it is all in public. It is in Slack, it is on Trac tickets , it is on GitHub issues, it is on pull requests. That discussion is happening in public, and is open for anyone to really contribute their thoughts and their ideas.

\n\n\n\n

And where the trust amongst us comes in, is the fact that I think, generally, there is very little ego involved in the people that are committers. We don’t feel bad if another person tells us our idea was wrong, or our idea isn’t the right solution.

\n\n\n\n

It is okay for someone to tell me that my code is, bad or that my code doesn’t solve the problem. That’s not an insult to me personally. I think that all of the committers, there’s that idea that we are all going to be okay. We’re not going to insult each other. It’s not an instance of, what idiot made that decision? That’s not the type of thing that would ever be said amongst committers. It’s, okay, what information was had that guided that decision? How can we improve that information?

\n\n\n\n

[00:15:48] Nathan Wrigley: Does the Core Commiter community, you mentioned that it was, over time it’s been a hundred, and at the moment it’s 50. Does it ebb and flow a little bit? In other words, are there people who just take a step back, maybe come back in six months time or something? Or are many of those people in some way able to commit to Core on a more or less permanent basis because, I don’t know, maybe they’re sponsored, or seconded by their company or something like that?

\n\n\n\n

[00:16:08] Aaron Jorbin: Yeah so, I mean, I would say most of the people that are active are given support in some way, shape, or form. So myself, I have GitHub sponsors that, right now, are covering a portion of my life expenses. But others are paid full-time, whether it be by a hosting company, by a product company. And so most of the people that are active are supported, but not all of them. There are a number of committers that are still doing this on a very volunteer basis.

\n\n\n\n

And people’s activity does ebb and flow. And so, I think a good example of this is myself. So I was very active, especially during the 4.1 to about 4.9 timeframe. But then I took on a different role, and didn’t have as much time. And so I stepped back from necessarily doing as many active commits, and more was there to help be in meetings, and provide some historical context, or to work on a couple of small things here or there.

\n\n\n\n

And then after I left my most recent job, I was like, I’m taking a break. I stopped looking at computer screens for nearly six months. It was incredible. But decided that, ultimately, I like WordPress. I like contributing to what I view as a very important mission to democratise publishing. I think that, even if I don’t necessarily agree with everything everyone has to say online, I think they have a right to share it and a right to say it.

\n\n\n\n

I want to help people do that. I want to help, whether it be a small business that just wants to get word out about its hours, to a large media company that wants to do journalism, to politicians who I may or may not agree with, wanting to get elected. I think that everyone has a right to share their beliefs online, and WordPress helps unlock that, and I like working on that.

\n\n\n\n

[00:18:07] Nathan Wrigley: Nice. I think, if we were to poll every single person that’s used WordPress ever, which should be a difficult thing to do, but let’s imagine that we could. I’m imagining that the vast majority of those people would not necessarily have technical expertise or any interest in the project. They’re just using it, it’s functional to them. They may not even know that it’s called WordPress. They log into their website, and they do their thing. They create their content, and they click publish, and what have you.

\n\n\n\n

But yet It just magically updates itself from time to time, whether that’s at the click of a button, or something, a little bit more automated. It just sort of happens in the background. And also, I would imagine that the listeners to this podcast, even though it’s very likely that they’re really quite crazily into WordPress, there’ll be this curtain between what they experience, and what Core is doing. How all those decisions are made, and how those changes get pushed.

\n\n\n\n

Now, they may have noticed, obviously, that there are minor releases. So we go from 6.5, to 6.5.1, to 6.5.2, and then there are more major releases, 6.5 to 6.6, or 7 at some point, you know. But the major releases kind of have dates in the calendar, stretching right out into the future. So we try to get those dates for the whole year, and you can look those up online, and may provide that in the show notes. But you can see, in theory, they’re provided for. We’ve got a north star. We know that on this date we should be shipping the next version of WordPress.

\n\n\n\n

But in between those major ones, we get these little ones which come around, like today. Little ones just happen, might happen in a week, might be two weeks, there might be a few weeks that go between them. How are those decisions made, and could we break it into the two parts? Could we do the major first, and then the minor afterwards? Because I think the major is more, how to describe it, there’s more thought goes into it on a long term basis.

\n\n\n\n

There’s more north star of that, and the minor ones feel like sometimes it’s reactive instead of proactive, because of security and so on. So let’s do the major releases. How is it decided what features go in, what we’re aiming for, what we want to ship?

\n\n\n\n

[00:20:05] Aaron Jorbin: So, I mean ultimately it’s decided what is going in by what is ready to go in, for a major release, and what people want to work on. Whether that is individuals that have a improvement that they really want to drive forward, whether it’s a company that decides that they want to donate, or devote, resources to working on maybe a larger feature that they think that will benefit their users, or hopefully benefit all users.

\n\n\n\n

The decisions of what is ready to go in is basically a decision of the committers as a whole. And it’s often based on a consensus. And it’s not necessarily that everyone agrees, it’s that no one disagrees. So we will work in Slack, there will often be people that are guiding it. There are individuals that are wholly focused on just looking at the backlog of requests, and every idea that ever has been proposed. And saying like, okay well, this is a common theme, and this is a way to solve that problem. And we’ll be working towards that.

\n\n\n\n

And so those major releases will often be set, generally by the project leadership, by Josepha and by Matt. And the dates might flux. Oftentimes we’re looking at trying to find a date that works for everyone in the world can be hard. There are holidays nearly everywhere, or nearly every day in some countries, and so trying to minimise the impact of those releases. And so not doing a release on a major Christian holiday, or a major Muslim holiday, is generally best possible solution.

\n\n\n\n

For the minor releases, like you said, there’s kind of the reactive ones, in which case, those would generally be decided sometimes hours ahead of time. In the case of 6.4.1 two weeks ahead of time in other cases. So the recent 6.5.3 there was about one month of process.

\n\n\n\n

And basically what it was was, it started with, some discussions in Slack of, okay, I think we’re going to want a maintenance release. Let’s try to put together a group of people that can lead it. And then, okay, amongst that group, let’s discuss possible dates. Let’s look at calendars. Let’s look at our personal calendars to make sure that we will be available. Let’s look at the holiday calendars to make sure that we’re not scheduling it during a bank holiday, or a religious holiday. And let’s try to do our best to make sure that people will be available for that release.

\n\n\n\n

As far as what goes into the minor releases, it’s a lot of times like what bugs are known, what bugs are people reporting, what things can we fix in that timeframe? And so, a way that people can get involved is, there will generally be a post on Make Core about the release, and if you don’t see one, there’s always the weekly Dev Chat agendas, where you can comment on there. And commenting about a bug of, I think that this bug needs to be fixed in this.

\n\n\n\n

We keep the scope rather tight, and that we try to focus the bug fixes solely on recently introduced bugs, rather than longer standing bugs, but anything can be discussed. If someone wants to try to make the case for it, they can try to make the case for it. The idea that, in the presence of new rationale, a good maintainer changes their mind often. And so even if the answer is initially no, that doesn’t mean the answer is no forever, and adding new information, adding data can really change minds a lot of times.

\n\n\n\n

[00:23:53] Nathan Wrigley: You talked about a consensus there, and in fact, I think the implication of what you said was that, broadly speaking, the consensus is often there. There’s often broad consensus amongst you Core Committers about what needs to go in. In a way that kind of seems surprising, because you’d imagine that with 50 minds staring at a problem, there’s going to be 50 different solutions, and a lot of arguing and tussling.

\n\n\n\n

But, again, I suppose that goes back to the trust thing that we talked about earlier, and maybe something different to trust, maybe it’s accommodation, or the ability to defer to somebody politely, as opposed to just wanting to railroad them.

\n\n\n\n

And I feel maybe that in the corporate world, that whole governance model would break down reasonably quickly. Is that what you’re saying? That the 50 of you, or however many are in the, air quotes, room at the time, you really do have that? There is a consensus of almost everything that goes in. That’s remarkable.

\n\n\n\n

[00:24:46] Aaron Jorbin: I would say we get to consensus. There is not always one to begin with. There is absolutely disagreements that happen, and disagreements that take place. And I would say that there are very few changes that aren’t without some sort of, often minor, disagreement. Of whether it be, I think this line needs more documentation, or I don’t like the variable name used here, ultimately nitpicky things.

\n\n\n\n

All the way up to major, I don’t think that this is something that should be in Core disagreements. And you will have discussions, and sometimes that discussion will peter out, and not necessarily get to a quick resolution. Oftentimes though it will get to a resolution.

\n\n\n\n

And another saying that I often use to guide me is, no is temporary, but yes is forever. Saying that code is not ready for WordPress isn’t saying that this code is never going in WordPress, or this feature is never going in WordPress.

\n\n\n\n

There’s very few things I can think of that I would be like, this should never go into WordPress. But once it is in WordPress, it is the responsibility of all maintainers, all of the committers to maintain it, and to make it as best as it possibly can. Once it’s released from WordPress, because there will be features that are added that might get removed.

\n\n\n\n

And so I think the font library is a good example of this. This was originally targeted for, I think, 6.3, and wasn’t quite ready. And then 6.4, it got very close, but then ultimately was pulled back. And then 6.5, after a lot of disagreement that people probably saw publicly amongst many committers, we did find solutions in a way to ship that, in a way that I think ultimately has been beneficial for the users of WordPress.

\n\n\n\n

[00:26:39] Nathan Wrigley: Is the release lead for each release, so that, let’s say, for example, 6.5 or 6.6, has a release lead. Is the release lead ultimately responsible for the go, no go decision? In other words, if the 50 of you are, yeah, you can’t quite get that consensus that would be lovely, then it falls on the shoulders of an individual, and if you follow the project, you’ll know that that individual changes from time to time.

\n\n\n\n

[00:27:05] Aaron Jorbin: Yeah. So, I mean ultimately it is Matt’s decision. And I for one, think that Matt has very good product sense, and WordPress is largely successful because of Matt. And I think that there are very few cases where I can think of where a problem has needed to be escalated to Matt to make a decision. Ultimately, you know, it’s often there will be a decision that gets made amongst the people that are most active, and working on it closely. And it’s not a highly conflicted situation. It’s very rare that the release lead needs to decide between two camps, if you will.

\n\n\n\n

[00:27:50] Nathan Wrigley: I think sometimes the impression, out in the wider world, probably not in the community of WordPressers who follow the project really, really closely, but I do wonder sometimes if there is an impression that decisions, like any hierarchy, there must be somebody at the top making all these decisions and what have you. So that’s really nice to hear. That’s nice to hear that you think that’s a fair and equitable way of doing it.

\n\n\n\n

However, I wonder how you feel about the, I can’t think of a better word, so I’m going to use the word chaos. The open source nature of the project can at times be fairly chaotic, because everybody gets a voice, everybody can put time into things, everybody can push their own agenda. I guess in a more corporate structure, it would be top down, whereas we’ve got a much flatter structure in WordPress. Everybody gets their go. Does it sometimes feel a little bit like that? And I’m not asking you to throw any names out, or throw anybody under a bus. But, does it occasionally feel, oh, can we just make the decision? Can we just do this, or this, which one?

\n\n\n\n

[00:28:45] Aaron Jorbin: I think chaos actually is a great term for it because it often is, and especially when working around the clock. There are people contributing in nearly every time zone. And I think you would struggle to find a time of day where someone isn’t working on WordPress.

\n\n\n\n

Luckily there’s very few decisions that need to get made at a snap of a hat. It is almost always a case where the decisions can be made asynchronously, where the discussion can continue possibly over the course of multiple days, or weeks. And the chaos works. And I know that a lot of people struggle with the chaos, and with understanding, well, how can I get involved? Who’s the person in charge that I need to talk to? Everyone is in charge, so you talk to everyone.

\n\n\n\n

[00:29:38] Nathan Wrigley: Yeah, it’s not like if you’re in the corporate world where you just whip out the company Rolodex, for want of a better word, and you discover that, oh okay, they’re in charge of that department, that’s them. It’s a little bit more fine grain and nuanced, and things change all the time, and somebody’s gone on holiday. I love that then. So there is a kind of chaotic element to it, which I think you embrace, I guess. This is just the way it works, and it’s probably got massive upsides, as well as some interesting downsides as well.

\n\n\n\n

In terms of the project, it feels like, since the dawn of the internet, so whenever that was, Tim Berners Lee, 35 years or whatever. Open source, at the beginning of the internet, was a real crucial underpinning for all sorts of things. The servers that we use, the CMSs that we use, and so open source projects just popped up everywhere. But then it feels, more recently, that competitive, market-based, commercial CMSs have come along, with probably a corporate governance structure. So not as transparent, but maybe more top down. So perhaps easier to manage in that way.

\n\n\n\n

Do you have any feelings, or misgivings about open source in the near future, because of the competitive landscape that a CMS finds itself in now?

\n\n\n\n

[00:30:50] Aaron Jorbin: I think that ultimately open source always wins. I think that you are better off betting on open source. I saw a tweet the other day about someone that has a shop on Shopify, and they woke up one morning and Shopify had turned them off. And they were like, well, our target was to make $25 million this year, but now it might be zero, because this decision by this company was to turn us off.

\n\n\n\n

And thankfully with WordPress, you don’t have to deal with that. WordPress cannot turn a site off. WordPress cannot decide that a specific website is no longer going to be allowed to use WordPress. WordPress has the benefit of the GPL, GNU public license. And in that there are the four freedoms, and one of those is the freedom to run the software in any way you choose.

\n\n\n\n

So that freedom, I think, ultimately is what gives open source its power, and its sustainability. WordPress itself is a fork of another project. I am never upset if someone says, well, I’m going to fork WordPress to do this, it’s like, okay. If your software is going to be better, that’s awesome. Open source wins.

\n\n\n\n

I am not someone that’s ever been a big Drupal user, but I love Drupal. Drupal’s open source software. I don’t view Drupal as the enemy of WordPress. I think that, if a site wants to use Drupal because that’s the best open source software, or the best software it can find, awesome.

\n\n\n\n

WordPress has been lucky to, you know, at various times, collaborate with people in the Drupal community. A number of years ago, I was running the WordPress meetup in Washington DC, and we organised what we refer to as the open source barbecue. And so it was the WordPress meetup, the PHP meetup, the Android meetup, and the jQuery meetup. And we just threw a barbecue for 200 people to come and celebrate open source, and eat barbecue.

\n\n\n\n

[00:32:54] Nathan Wrigley: If we were just concentrating on the features, so not the ethics of owning the technology, who owns it, who gets to shut you down or not. Do you think that it’s easy for an open source project, of the breadth, and scale, and depth, and enormity of WordPress, to keep up with the features that the proprietary CMSs ship? Because they know their users, and because they don’t have to make decisions in committee.

\n\n\n\n

Well, they probably do but, you know, the committees are probably much smaller, and managed from the top down. And they can ship features like this, and like that. They don’t need to necessarily worry. It’s a difficult question to encapsulate, but do you understand where I’m going with that? They can ship features perhaps more quickly than WordPress can.

\n\n\n\n

[00:33:33] Aaron Jorbin: Absolutely. But I don’t think it is the ability to ship features quickly that leads to success. I think it’s the ability to ship the right features, and provide the right experience for users. And I think that experience includes the ability for them to decide to move. If you are not happy with your WordPress host, you can move hosts. If you are not happy with the agency that you are using, you can move agencies. If you are using a closed source CMS, your ability to move is a lot harder.

\n\n\n\n

You get locked in, and ultimately that is harder for you. It might mean that you get features quicker. It might mean that you get up and running quicker, but at what cost? Everything has a benefit, everything has a cost. And I think that the benefits of open source just drastically outweigh the costs of using it. The fact that you are going to deal with volunteers running your software project in many cases.

\n\n\n\n

There’s the old XKCD article, which has the tiny twig of holding up the software is one random guy in Omaha, Nebraska. And as much as possible, I think one of the benefits of WordPress is that there’s very few things where it’s one twig being held up by a single person. There are very few parts of the code base that multiple committers aren’t familiar with. And the beauty of how it’s been developed is we can look back in many cases, and understand why changes were made.

\n\n\n\n

You’ll see in, if you ever look at a WordPress commit, there’s often be a long section. There will be a one sentence description, and then there might be a paragraph or two explaining what the change is. And then there’s also links to tickets, and often very important, the props of who worked on it along the way.

\n\n\n\n

And so you can see, okay, well, these 15 people contributed to this. Oh, 12 of them aren’t active anymore, but there’s 3 of them that are. Maybe they remember, or I can look at the tickets that are referenced, and I can find the discussion that took place leading up to it. And that ticket, maybe that links to an IRC conversation from 15 years ago. We have the logs of that conversation, and can look back at what was discussed, and how did we get to this solution.

\n\n\n\n

[00:36:03] Nathan Wrigley: I think history shows that people seem to like open source. You only have to look at the numbers, and the enormity of a lot of open source projects to realise that it definitely tends towards winning. I don’t know quite how to phrase that but, does that make sense? The graph tends towards open source on the whole.

\n\n\n\n

Okay so, Aaron, given all of this, if somebody’s listening to this and they think, actually, I’d like to get into that, I’d be curious to see what this is like, dip my feet. Nobody’s suggesting that you have to show up and stay there for the rest of your life but, how do people begin this journey? Where are the best places to go?

\n\n\n\n

[00:36:36] Aaron Jorbin: So if you want to contribute to WordPress Core, and I hope that everyone does at some point in their life, the best way to get started is to join the new contributor chats, which take place biweekly in WordPress Slack. And so if you go to make.wordpress.org/chat, you can join the WordPress Slack. If you go to make.wordpress.org/core, you can see the Core discussions, and you can see the meetings that are taking place.

\n\n\n\n

Get involved. Find a issue that is bothering you, or that you think is going to make WordPress better, and add your thoughts. Think about like, if someone isn’t thinking about this, what is going to get them to think about this? Add context, add information. Even if you are not someone that can write code, maybe you can quickly sketch out an idea, take a picture of that and upload it.

\n\n\n\n

Maybe you can share some data or share some stats from your company of, hey, this change took place and it’s actually caused a 10% drop for us in user signups. That is like, okay, well, that’s a data point that we can look at, and maybe use to come up to a better solution. This change would help speed up our website.

\n\n\n\n

You can also test the changes that other people have proposed. There is the WordPress Playground now, that allows you to very easily test out a change. Just earlier today, there’s a change that was being proposed for 6.6 to remove the revisions panel from the sidebar. And a handful of us were like, I don’t think that’s quite right, here’s some alternate ideas. And then someone coded one up. A couple people looked at it and we’re like, that’s not the right way, how about this other way? And it was coded up, and I tested it and just was like, all right, here’s what I see. And it just took a couple of clicks of my mouse. It wasn’t a hard process to test and share a little bit of feedback for the project.

\n\n\n\n

[00:38:41] Nathan Wrigley: So it’s not all about committing code. There are many more ways that you could help Core. So it may be that you identify problems, or test possible things that could go in, and just give your opinions. There’s loads of different ways that you can help in this initiative. And I will make sure that the, bits and pieces that Aaron has mentioned today all make it into the show notes. If you go to wptavern.com/podcast, and search for this episode, you’ll be able to find the show notes all attached there. It only remains for me, Aaron, to ask, if anybody is interested in just connecting with you personally, do you have a favorite place online where you send people?

\n\n\n\n

[00:39:16] Aaron Jorbin: My WordPress site is my favorite place, which is at aaron.jorb.in. I’m also on a number of social media networks, generally with the username of Aaron Jorbin. A handful of them I think I use just Jorbin. Yeah, I would love to chat with people. If people see me at a WordCamp, please come up and talk to me. I can be a bit of an introvert at those, and so I might not approach people, but would love to chat with as many people as I can.

\n\n\n\n

Something I used to do, that I’m going to try to get back into is, one lunch during the WordCamp, I’d sit down at a random table and just ask people, so how do you use WordPress? And you never know who you’re going to meet, and what they’re going to have to share if you do that.

\n\n\n\n

[00:39:58] Nathan Wrigley: Yeah, that’s nice. And by the way, I’m incredibly jealous of your domain name. That’s just a stroke of luck that there’s a whole top level domain with your final two letters of your name in there. That’s lovely. I’ll add that into the show notes as well. But, Aaron Jorbin, thank you so much for chatting to me today. A real pleasure, thank you.

\n\n\n\n

[00:40:14] Aaron Jorbin: Thank you so much for having me.

\n
\n\n\n\n

On the podcast today we have Aaron Jorbin.

\n\n\n\n

Aaron has led teams responsible for some of the largest and most prominent WordPress sites in the world including Rolling Stone, Variety, WIRED, The New Yorker, and The White House. He is also a WordPress Core Committer who focuses on improving developer happiness and making the internet usable by everyone.

\n\n\n\n

He’s been an integral part of the WordPress community since 2010, and today Aaron opens up about the crucial importance of major and minor WordPress releases, and the need for user trust, which forms the backbone for features like auto updates that enhance WordPress security.

\n\n\n\n

We get into the process behind WordPress releases, discussing how major and minor updates are planned and executed. Aaron explains the dynamics of the Core Committer community, a group of around 100 dedicated individuals, about 50 of whom are currently active, whose decisions and hard work keep WordPress robust, up to date and secure. The commitment to transparency, minimal egos, and the ability to handle criticism are mentioned as key elements for maintaining trust inside this community within a community.

\n\n\n\n

We talk about how communication and decision-making take place mostly in public forums, ensuring openness and collaboration. The conversation also touches on the ebb and flow of volunteer and sponsored contributors, the challenges of coordinating across global time zones, and the need for asynchronous decision making.

\n\n\n\n

Aaron explains what it takes to move from a small contributor to a key player in the WordPress ecosystem, emphasising the burden of responsibility that comes with making changes affecting millions of non-technical users. Whether you’re a developer, tester, or enthusiastic user, Aaron encourages contributions in various forms, from sharing ideas to testing and providing feedback.

\n\n\n\n

If you’ve ever wondered how WordPress is maintained and updated, this episode is for you.

\n\n\n\n

Useful links

\n\n\n\n

Condé Nast

\n\n\n\n

Grunt Patch WordPress

\n\n\n\n

Previous WordPress releases

\n\n\n\n

Drupal

\n\n\n\n

WordPress DC meetup

\n\n\n\n

Dependency cartoon from xkcd

\n\n\n\n

WordPress Slack

\n\n\n\n

Make WordPress Core

\n\n\n\n

WordPress Playground

\n\n\n\n

Aaron’s website

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Akismet: What is reCAPTCHA? How Does It Work?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284031\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://akismet.com/blog/what-is-recaptcha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28876:\"

There are few things in this world as annoying, and pervasive, as spam. You probably get spam phone calls, spam texts, and spam emails. You’ve won a prize. You’ve broken a copyright law. You’ve placed an order and need to verify your account details. You can make $3,956 a day working from home doing this one cool trick. It sucks up our time and, if we fall for it, can be downright dangerous. 

\n\n\n\n

But there’s also spam on many websites. Comment sections filled with links to less-than-reputable pages designed to phish for sensitive info or initiate a malware download. 

\n\n\n\n

For site owners, spammy comment sections, fake user registrations, and false contact form submissions can add hours of work each week, make your site seem less legitimate, and put visitors and your entire reputation at risk. 

\n\n\n\n

That’s where reCAPTCHA comes in. Owned by Google, reCAPTCHA is a free service that distinguishes real human users from automated bots. But there are pros and cons to implementing reCAPTCHA on your site, so you’ll need to weigh your options carefully in order to find an effective solution. 

\n\n\n

In this post, we’ll take a closer look at reCAPTCHA and how it works. Then, we’ll explore the main drawbacks of reCAPTCHA, and consider a better alternative. Let’s jump right in!

\n\n\n\n\n\n\n

.

\n\n\n

What is reCAPTCHA?

\n\n\n

reCAPTCHA is a free Google service that protects websites from spam. CAPTCHA tests were first introduced in 1997 as an extra layer of security against hackers and bots. 

\n\n\n\n

These tests were deployed primarily on login pages and contact form pages. They generated distorted text and users had to decipher the words to pass the test. Since then, CAPTCHAs have become more complex to keep up with evolving technologies and bots. 

\n\n\n

The advanced nature of CAPTCHA can cause problems for the user experience (UX) since it demands more input from site visitors. In fact, reCAPTCHA (introduced in 2007) presents more complicated challenges like puzzles and image identification, which typically require user interaction.

\n\n\n\"example\n\n\n\n

In 2009, reCAPTCHA was acquired by Google. The original version is no longer available since it was found to be too easy for bots (using algorithms trained in pattern recognition) and too difficult for humans. 

\n\n\n

So now, there are different versions of reCAPTCHA, which we’ll explore later in the post.

\n\n

How does reCAPTCHA work?

\n\n\n

reCAPTCHA uses artificial intelligence (AI) to differentiate between humans and bots. While the traditional CAPTCHA issued tests before allowing visitor access, algorithms trained in pattern recognition could quickly solve these challenges. 

\n\n\n\n

Therefore, reCAPTCHA was introduced. As we discussed, the original version is no longer in use, but there are still two versions available. 

\n\n\n

reCAPTCHA v2 requires users to select images or check the “I’m not a robot” box.

\n\n\n\"example\n\n\n

Meanwhile, reCAPTCHA v3 aims to minimize the disruption to the user experience. Instead of requiring user interaction, it calculates scores based on user behavior. The website administrator can then allow or block access, but they can also issue further v2 tests, if needed, for verification.

\n\n

The latest version of reCAPTCHA (v3) uses a JavaScript API to determine a score between 0 and 1. While a score of 0 is judged to be a bot, a score of 1 is almost always a human user. It uses a concept called “actions” which lets you define steps in your typical user journey.

\n\n\n

This way, the reCAPTCHA technology learns how real users interact with your site so that it’s able to detect bot traffic. In fact, some websites deploy reCAPTCHA across all pages so that the technology has more user activity to work with. 

\n\n\n

Distinction between CAPTCHA and reCAPTCHA

\n\n

You might still be wondering about the difference between CAPTCHA and reCAPTCHA. First off, CAPTCHA is an umbrella term used to describe any website authentication test to separate humans from bots.

\n\n\n

On the other hand, reCAPTCHA is a type of CAPTCHA test owned by Google. Note that there are several types of CAPTCHAs owned by different companies, and reCAPTCHA is just one of many. 

\n\n\n

As we discussed, the original reCAPTCHA test was much more simplistic, primarily relying on word tests disguised with twisted letters. But now, there are different types of reCAPTCHA including images, checkboxes, and tests that require no user input at all.

\n\n

The different types of reCAPTCHA

\n\n

Now, let’s take a look at all the different versions of reCAPTCHA.

\n\n\n

reCAPTCHA v1

\n\n\n

reCAPTCHA v1 isn’t widely used anymore and was discontinued by Google in 2018. But this version of reCAPTCHA came the closest to emulating the traditional CAPTCHA tests that relied on object recognition.

\n\n\n

In this instance, a user would be presented with a pair of words, one of which functioned as a control word and could be understood by a bot. The other word could only be recognized by human users. 

\n\n\n

This CAPTCHA method was developed in the late 1990s and continued to be used throughout the 2010s. It also started using scanned words and photographs to make the tests more challenging, but it has since been replaced with more sophisticated reCAPTCHA tests.

\n\n\n

reCAPTCHA v2

\n\n\n\n

After reCAPTCHA v1 was shut down, it was replaced with reCAPTCHA v2, which currently consists of three versions. 

\n\n\n\n

The first one is the reCAPTCHA v2 for Android, which is an API that can protect Android apps from bot traffic. The API integrates directly into Android apps, and in an attempt to preserve the UX, the API allows low-risk users to pass through easily. When needed, the API will present a challenge to the user to verify that they are human. 

\n\n\n\n

Then there’s the reCAPTCHA v2 that most users are familiar with. This is the “I’m not a robot” checkbox. In this case, all that users have to do is check the box, rather than solve a complex test or problem. 

\n\n\n

As such, it’s considered more user‑friendly than previous methods. Though it sounds simple, Google analyzes various factors like mouse movement and browsing history to detect bot activity.

\n\n\n

Even more sophisticated is the invisible reCAPTCHA badge which requires no user input at all. Similar to the previous method, Google evaluates activities like mouse movement and typing patterns. This version of reCAPTCHA is triggered via a JavaScript API call or when a user clicks on a button. 

\n\n\n\n

It’s still not a perfect solution since sophisticated bots that use AI technology can bypass the reCAPTCHA. And, it isn’t immune to CAPTCHA farms — which are businesses that employ human workers to solve reCAPTCHAs to aid cybercriminals and hackers. 

\n\n\n\n

reCAPTCHA v3

\n\n\n

In further attempts to improve the UX, Google introduced reCAPTCHA v3, which works similarly to the invisible reCAPTCHA badge. This version of reCAPTCHA works in the background, so it’s completely invisible to users and presents no tests.

\n\n

The reCAPTCHA v3 method tracks all requests made by a user on a website, and every request is given a score between 0 and 1. As we discussed earlier, a score close to 0 is likely to be a bot whereas a score closer to 1 is judged as human.

\n\n\n

The interactions monitored by the reCAPTCHA vary between websites. For instance, the administrator can provide examples of normal user interactions so that the reCAPTCHA can pick up on any deviation from the norm. 

\n\n\n

reCAPTCHA v3 is the best version of the technology in terms of efficacy and UX. That said, it’s more difficult to implement since the scores must be defined by the administrator, which can be time‑consuming to set up.

\n\n\n

With this in mind, you might automatically block users who return a score below 0.2. Then, scores between 0.2 and 0.6 may generate a CAPTCHA challenge to verify that the user is human. 

\n\n\n\n

Meanwhile, any score above 0.6 may instantly be granted access. The issue is that a strict scoring system holds the potential to block out legitimate users while a lenient system may allow bots to bypass the reCAPTCHA. 

\n\n\n

Challenges and downsides of reCAPTCHA

\n\n\n

Now that you know the different types of reCAPTCHA, let’s take a look at the main limitations. 

\n\n\n

1. Impact on users with disabilities

\n\n\n

It’s imperative to design web content in a way that’s accessible to people with disabilities. This way, your enterprise site can comply with the Americans with Disabilities Act (ADA) and the Web Content Accessibility Guidelines (WCAG). 

\n\n\n

The problem is that many reCAPTCHA tests are visual and require users to identify images or text. This has been shown to discriminate against users with visual impairments. And since they’re designed to be unreadable by machines, screen readers are unable to interpret them.

\n\n\n

Additionally, audio reCAPTCHA tests alienate users with hearing impairments. Meanwhile, the mathematical equation tests are believed to be more accessible to users with vision impairments, but these can exclude those with cognitive disorders like dyscalculia. 

\n\n\n

2. Annoyance and frustration

\n\n

Many users may find reCAPTCHA annoying. When you expect instant access to a page, and instead you’re required to check a box or complete a task, it’s natural to become frustrated.

\n\n

This can lead to early exits. High bounce rates can send signals to search engines that users don’t find your website valuable. Therefore, it can result in both traffic and revenue loss.

\n\n

3. Data collection and privacy concerns

\n\n

In order to differentiate between bots and humans, reCAPTCHA v3 and the invisible reCAPTCHA badge analyze data like mouse navigation and click patterns. Since this is classified as personal data, this method of reCAPTCHA requires privacy compliance.

\n\n\n

There are plenty of laws and legislations that exist to protect user privacy on the internet. Most notable, perhaps, is the General Data Protection Regulation (GDPR) in the EU, but there’s also the Colorado Privacy Act, the Utah Consumer Privacy Act, the California Consumer Privacy Act, and many more. 

\n\n\n

Therefore, it’s important to gather consent from users if you plan to implement reCAPTCHA. Google recommends a privacy policy that informs users of the data collected, the data shared, and a statement that tells users how the data will be used.

\n\n\n

That said, this is considered the bare minimum in terms of privacy, so it’s useful to have a proper look into what should be included. This is very important since non-compliance can damage your reputation, erode customer trust, and lead to heavy financial penalties. 

\n\n\n

4. reCAPTCHA’s decreasing effectiveness

\n\n\n

Another potential problem with reCAPTCHA is its effectiveness given the emergence of artificial intelligence. In fact, researchers from the University of Columbia created reCAPTCHA attacks that managed to solve 70 percent of all challenges. 

\n\n\n

This shows that reCAPTCHA is no longer as effective as it once was, whether that’s down to AI, CAPTCHA farms, or internal logic. What’s more, reCAPTCHA v3 requires the analysis of user behavior.

\n\n

reCAPTCHA needs a large volume of data to determine normal human interactions and tell them apart from bots. But this technology relies on a client‑side fingerprinting approach, which advanced bots can bypass easily.

\n\n

5. Potential for false positives

\n\n\n

The final drawback to reCAPTCHA is that there is still the potential for false positives, which can block legitimate users from your site. For instance, enterprises that prioritize security may adopt a strict scoring system for reCAPTCHA v3. This makes it harder for users to score 1. 

\n\n\n\n

To give you an example, many administrators grant low scores to users who submit forms very quickly. That said, some human users are naturally quick typers, but going by this system, they may be flagged and denied access to your website. 

\n\n\n\n

Additionally, researchers from the University of Toronto found that reCAPTCHA gives lower scores to users who don’t have a Google account. Therefore, privacy-conscious visitors who use private browsers or VPNs are more likely to be mistaken for bots.  

\n\n\n

Akismet: The better alternative to reCAPTCHA

\n\n

Considering the challenges and drawbacks of reCAPTCHA, you may be cautious about deploying it on your website. Instead, you might prefer an alternative anti‑spam solution that is more inclusive and doesn’t disrupt the UX.

\n\n

Akismet was developed by Automattic (the same team behind WordPress.com) and it’s one of the leading anti‑spam plugins. It protects you against form, comment, and text spam.

\n\n\n\"Akismet\n\n\n

Since 2005, Akismet has removed over 500 billion pieces of spam across 100 million sites. The plugin is powered by machine learning, which explains how Akismet detects spam with a 99.99 percent accuracy rating.

\n\n

Unlike reCAPTCHA, Akismet doesn’t require too much from your visitors. Instead, it operates behind the scenes, so it doesn’t add friction to your UX. This means that users may be more likely to stay on your website, helping you get more conversions and sales.

\n\n

How Akismet works

\n\n

Akismet analyzes every piece of user‑submitted content to prevent a range of online attacks. This analysis takes place in real time, so you can block suspicious activity before it even reaches your site.

\n\n

It’s best to think of Akismet as a filter, where legitimate submissions are allowed to pass through, but spam submissions are denied. This saves you from manually reviewing every submission.

\n\n

As mentioned earlier, Akismet is powered by machine learning algorithms. This enables the plugin to compare the content of submissions against a database of known spam. Plus, it integrates with popular form plugins, so you’re not limited to blog comment spam.

\n\n\n

You’ll also get access to monthly and annual spam charts. This way, you can check your spam accuracy rating, false positives, and more. 

\n\n\n

The Akismet plugin is simple to install on WordPress, but you will need an API key to connect to the Akismet database.

\n\n

Benefits of Akismet over reCAPTCHA

\n\n\n

Now that you know more about Akismet, let’s look at the benefits of using this plugin over reCAPTCHA. 

\n\n\n

1. Improved accessibility

\n\n

As we discussed earlier, one of the limitations of reCAPTCHA is that some versions require users to decipher visual or auditory information. Other versions contain mathematical equations or ask users to complete checkboxes.

\n\n\n

This can exclude those with cognitive, hearing, or visual impairments. Therefore, if you want to keep an accessible website, you’re better off using a CAPTCHA alternative like Akismet. 

\n\n\n\n

Akismet doesn’t require any user interaction. It works silently behind the scenes, so users can submit content without running into any obstacles. 

\n\n\n

2. Enhanced user experience

\n\n\n

All kinds of reCAPTCHA (except v3) add friction to the user experience, as they require individuals to check a box or complete a test. This delays access to a page or resource, which can lead to frustration on the user’s part. 

\n\n\n

Akismet doesn’t interfere with the UX. It operates in the background, so most users aren’t even aware of it. Additionally, the spam data is stored in the cloud, so the plugin doesn’t impact site speed.

\n\n

3. Privacy protection

\n\n\n

While reCAPTCHA can reduce spam submissions, it does so by gathering personal data, which means you have to obtain explicit consent from users. Plus, privacy-conscious users may be perturbed by data collection. 

\n\n\n\n

Akismet also collects personal data, but only that which is needed to carry out spam protection. According to the GDPR, this is classified as a “legitimate interest” use of that data. 

\n\n\n\n

In the plugin settings, you can easily enable a privacy notice that informs users about this. The company never sells personal data gathered through the plugin. You can check out the full privacy policy here

\n\n\n

4. Better spam detection

\n\n

reCAPTCHA is primarily an anti‑spam measure, but the effectiveness of reCAPTCHA has been challenged by advances in AI technology and the growth of CAPTCHA farms.

\n\n

Akismet has a long reputation for detecting spam with very high accuracy. Currently, the plugin boasts an overall accuracy score of 99.99 percent, but you can view the exact spam accuracy score within your Akismet dashboard.

\n\n

5. Reduced false positives

\n\n

Earlier, we mentioned the fact that some versions of reCAPTCHA frequently result in false positives which block legitimate users from websites. This is especially true in the case of reCAPTCHA v3 (where administrators have to define their own rules) and for users who opt for private browsers and VPNs. Not only is this frustrating for users, but it can also result in revenue loss for organizations.

\n\n\n

With Akismet, submissions are analyzed in real time and with incredible accuracy. Additionally, there are systems in place that make it easy for websites to report false positives

\n\n\n\n

When it comes to forms, you can simply remove submissions from the spam list. For comments, all you have to do is check the relevant boxes and use the Bulk actions dropdown menu to select Not spam. 

\n\n\n

Frequently asked questions

\n\n

This guide has answered questions like “what is reCAPTCHA” and “how does reCAPTCHA work”, but you may still be looking for clarification on this technology. We’ll answer some other common questions in the next section.

\n\n

What is the primary purpose of reCAPTCHA?

\n\n\n

The primary purpose of reCAPTCHA is to differentiate human users from bots in order to block spam and other forms of online abuse. It is a type of technology that deploys adaptive challenges like image identification and checkboxes that detect suspicious behavior. 

\n\n\n

How does reCAPTCHA differentiate between a human and a bot?

\n\n\n

Depending on the version of reCAPTCHA, different factors are considered to distinguish between bots and humans. For example, some reCAPTCHA tests track cursor movement, typing patterns, and browser history. 

\n\n\n\n

reCAPTCHA v3 evaluates these factors to generate scores. Scores closer to 0 are judged to be bots while those closer to 1 are considered human. 

\n\n\n

What are the key differences between reCAPTCHA v2 and v3?

\n\n\n

There are some key differences between reCAPTCHA v2 and v3. reCAPTCHA v2 includes three different methods including the Android API, the “I’m not a robot” checkbox, and the invisible reCAPTCHA badge. All of these, except the badge, require user interaction. 

\n\n\n\n

reCAPTCHA v3 doesn’t require user input. Instead, it monitors certain factors like mouse movement and typing patterns to return a score between 0 and 1, which helps systems detect bot traffic. 

\n\n\n

Is reCAPTCHA completely effective against bots and automated attacks?

\n\n

reCAPTCHA is an anti‑spam service that attempts to block bots and prevent automated attacks like distributed denial of service (DDoS) attacks. The problem is that several researchers have questioned the effectiveness of reCAPTCHA. For instance, researchers from the University of Columbia launched low‑risk bot attacks that solved over 70 percent of all challenges.

\n\n

How does reCAPTCHA impact the overall user experience on websites?

\n\n

Most versions of reCAPTCHA require users to solve mathematical problems, decipher images and text, or simply check a box. While this may not sound too problematic, it adds friction to the user experience.

\n\n\n

It delays users from accessing the desired page or resource, which can be frustrating. In turn, this can lead to early exits — which affect bounce rates, traffic volume, revenue, and more. 

\n\n\n

Can reCAPTCHA be bypassed or tricked by sophisticated bots?

\n\n\n

There are ways for cybercriminals and bots to bypass reCAPTCHA tests. To do this, all they have to do is raise the trust score by mimicking normal human behavior on a web browser. 

\n\n\n\n

They can achieve this effect by using a resistant TLS fingerprint. Plus, hackers can execute JavaScript using browser automation tools, and rotate JavaScript fingerprint details. 

\n\n\n

What are the implications of reCAPTCHA for user privacy?

\n\n\n

Since reCAPTCHA gathers personal data about the user’s browser and device, certain states and countries require companies to get user consent. In particular, the GDPR ensures that visitors know how websites use, process, and store their information. 

\n\n\n\n

Therefore, you’ll need to obtain explicit consent. It’s also important to display a privacy policy on your site. Otherwise, you may encounter hefty financial penalties. 

\n\n\n

Are there any alternatives to reCAPTCHA that offer similar or better functionalities?

\n\n

Although reCAPTCHA is capable of blocking some spam, it can interfere with the UX and discriminate against those with disabilities. Therefore, you might prefer a more user‑friendly alternative, like Akismet.

\n\n\n

Akismet works in the background of your site, so it requires no user interaction. It also filters spam with an impressive accuracy rating of 99.99 percent, which means it rarely produces false positives. 

\n\n\n

How accurate is Akismet at stopping spam?

\n\n

Akismet filters comment, form, and text spam with a 99.99 percent accuracy rate. Plus, it analyzes submissions in real time to maximize threat protection. And there are systems in place to report false positives, which makes Akismet much more effective than reCAPTCHA.

\n\n

How many sites use Akismet?

\n\n

Akismet is installed on over 100 million websites, and the plugin has blocked over 500 billion spam submissions. Better yet, it’s trusted by plenty of enterprise brands like Microsoft, ConvertKit, Bluehost, and WordPress.com.

\n\n

Are there any case studies of companies that use Akismet?

\n\n\n

If you want to know how Akismet has helped real brands, you can check out some case studies. 

\n\n\n\n

For instance, ConvertKit implemented Akismet to filter out spam and automate spam prevention. Smitten Kitchen automated spam detection in the comments section of recipes, which has helped prevent the presence of affiliate links and irrelevant promotions. 

\n\n\n

Where can I learn more about Akismet?

\n\n\n

If you want to learn more about the service, you can find a lot of free resources. Akismet also has a dedicated support page to help you set up and use the plugin. And the Akismet blog is frequently updated with useful articles. 

\n\n\n

Akismet: The best spam solution for your website

\n\n

Spam is a concern for any site administrator, since it can make your site appear less trustworthy and lead to cyberattacks. While reCAPTCHA is one solution for preventing spam, it may not be the best option in terms of user experience.

\n\n

reCAPTCHA v3 runs in the background of your site, but it can still be frustrating for visitors. Additionally, it can exclude those with disabilities and incorrectly block legitimate visitors. Therefore, you might prefer a better alternative, like Akismet.

\n\n

With a 99.99 percent accuracy rating, Akismet is excellent at blocking comment, form, and text spam. It also analyzes submissions in real time, and it doesn’t interfere with the UX. Get started with the Akismet today.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Recap of Do the Woo 4.0 Launch and WordPress dot com Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84450\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/recap-of-do-the-woo-4-0-launch-and-wordpress-dot-com-post/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1839:\"

As you know, during the week of WordCamp Europe 2024 last month, June 10 – 15, we led up to our huge launch of 4.0 at the event. A lot of content was pushed out, plus a so many conversations at WCEU about the launch. If you happened to miss any of it, here are the links to the episodes.

\n\n\n\n\n\n\n\n

Also, BobWP published a guest post on WordPress.com about the launch and partnership with WordPress.com, Woo and Jetpack.

\n\n\n\n

WordPress.com Partner Spotlight: Do the Woo 4.0

\n\n\n\n

And if you missed our press release, check that out here.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2024 08:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"HeroPress: A welcoming community that embraces authenticity – 本物らしさを受け入れる温かいコミュニティ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=7139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"https://heropress.com/essays/a-welcoming-community-that-embraces-authenticity/#utm_source=rss&utm_medium=rss&utm_campaign=a-welcoming-community-that-embraces-authenticity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23262:\"\"Pull\nHere is Ben reading his own story aloud.\n\n\n\n\n\n

この記事は日本語でも読む事が出来ます。

\n\n\n\n

My interactions with tech growing up

\n\n\n\n

The first time I remember interacting with tech was on my parents’ Macintosh computer when I started primary school. I loved drawing with MacPaint and found it much cooler than my Etch A Sketch.

\n\n\n\n

Then, my parents got a Windows 95 computer and we were connected to the internet. My parents would check for important calls before unhooking the telephone to plug in the computer. When Google search came out, my family would sit around the screen, amazed at the “dozens” of search results. We even played a game to see whose name got the most results. I won by a long shot because my middle name Luke (Japanese: ルカ) appears in the word “digital camera” (デジタルカメラ).

\n\n\n\n
\n

In junior high, I joined the table tennis club but quickly realized sports weren’t my thing.

\n
\n\n\n\n

I switched to the computer club, where I edited my first video, learned about spreadsheets and word processors, and built my first website using a Japanese software called Homepage Builder. I started maintaining a website for my church, self-teaching myself about staging environments and FTP through help docs and online manuals.

\n\n\n\n

In senior high, I started looking at the HTML code produced by Homepage Builder. I realized I didn’t have to use the drag-and-drop editor to make edits and taught myself basic HTML and CSS. That’s when I created my first game, an HTML game where players clicked on doors to navigate a maze. I remember someone “hacked” my game by figuring out the URL logic and jumping to the goal. That was my introduction to cyber security and encryption.

\n\n\n\n

How information ethics opened my eyes to the diversity in the world

\n\n\n\n

In university, I studied information science, which pulled me deeper into the tech world. I continued to master’s and doctorate programs, and started teaching tech classes at three universities. I taught in both Japanese and English to both undergraduate and postgraduate students. Subjects included programming basics (C, Java), informatics, and image processing.

\n\n\n\n

But my most favorite subject was information ethics, which highlighted how different cultures have varying ethical values in tech.

\n\n\n\n
\n

For instance, some communities pirate software out of necessity, some share login credentials to bypass censorship, while other communities consider both these practices unethical.

\n
\n\n\n\n

Teaching this course really opened my eyes to global diversity. It taught me the importance of open dialogue, empathetic listening, and creative thinking.

\n\n\n\n

How I met WordPress

\n\n\n\n

I first heard about WordPress in my university lab. A senior student returning from overseas said it was all the hype in the west, so we moved our lab’s website to WordPress. I didn’t fully understand what WordPress was then, but I decided to ride the hype and move my church websites to WordPress too.

\n\n\n\n

Since making the switch in 2014, WordPress has become my Content Management System (CMS) of choice. I tried a brief stint with Wix, but it just confirmed my loyalty to WordPress. And after joining Automattic, I discovered the community behind the software and my love for WordPress has grown even more.

\n\n\n\n

How I joined Automattic and the WordPress community

\n\n\n\n

At one point, I installed the VideoPress plugin on one of my sites and needed support with a subscription mix-up. The agent resolved my issue in one email and signed off as a “Happiness Engineer,” which made me smile. Years later, I saw a job opening for Happiness Engineers at Automattic and remembered that interaction. I volunteered on the WordPress.com support forums for a couple months building up my support skills before getting accepted into Automattic in 2019.

\n\n\n\n

Soon after joining, I learned that WordPress is more than just a CMS. It’s a community built on open-source principles. I didn’t wait long to attend my local WordPress Meetups later that year, and was amazed at the selflessness and dedication of the participants. At those Meetups, I learned the WordPress ecosystem extends beyond the community that creates it.

\n\n\n\n
\n

WordPress is composed of the people who use it – the developers, designers, analysts, hobbyists, hosts, marketers, etc.

\n
\n\n\n\n

It is a common bond that brings people together from different walks of life to a safe space of diversity and acceptance. It was the first time I had interacted with people quite like that.

\n\n\n\n

My journey in the WordPress Training Team

\n\n\n\n

In 2020, the pandemic canceled in-person events, but I had opportunities to be part of educational projects within Automattic. I coached Japanese support agents, created internal training materials, and developed a new onboarding program for new employees. These experiences rekindled my love for education.

\n\n\n\n

It was around that time that WordPress launched its educational site, Learn WordPress. I was selected for an internal position at Automattic to become a full time contributor to the Learn WordPress initiative, and joined the WordPress project’s Training Team in June 2022. I started in the team by understanding the team’s values, priorities, and challenges. Over the next six months, I worked on improving team processes and documentation. At the end of 2022, I was honored to be nominated as a team rep, since which I’ve led projects like migrating from Trello to GitHub and building an onboarding program. These efforts have increased team member engagement and activity, which in turn is contributing to traffic and engagement increases on the Learn WordPress site, too.

\n\n\n
\n\n
\n\"Ben\n
\n\n\n\n
\n\"Ben\n
\n\n\n\n
\n\"Ben\n
\n\n
\n\n\n

WordPress – a safe space to be authentic

\n\n\n\n

Reflecting on my tech journey, the moments I felt most energized were when I contributed to creating a safe space of diversity and acceptance. Teaching information ethics laid the foundation, customer support as a Happiness Engineer let me practice this in 1:1 interactions, onboarding new employees allowed me to create these spaces for larger groups, and contributing to the WordPress Training Team extended this to a global community. These were moments when I felt most authentic.

\n\n\n\n

Building a safe space where one can be authentic isn’t a one-time project; it’s formed through humble and curious interactions. Every conversation can either build or destroy safety. I remember the excitement of my first WordPress Meetup, where I felt accepted for who I am. My hope is that everyone who interacts with the WordPress community experiences that same acceptance. I look forward to continuing contributing to this safe space – WordPress – so that both I and those around me can continue to be our authentic selves.

\n\n\n
\n\n
\n

Ben’s Work Environment

\n\n\n\n

We asked Ben for a view into his development life and this is what he sent!

\n\n\n
\n \"Ben\n
\n\n\n\n\n

HeroPress would like to thank Draw Attention for their donation of the plugin to make this interactive image!

\n
\n\n
\n\n\n\n\n

\n\n\n\n
\n\n\n\n

本物らしさを受け入れる温かいコミュニティ

\n\n\n\nベンさんが以下の記事を読んでいるのを聞くことができます。\n\n\n\n\n\n

幼少期の IT 技術との触れ合い

\n\n\n\n

私が初めて IT 技術と触れ合ったのは、小学校に入学したころ、親のマッキントッシュ・コンピューターを通してでした。MacPaint でのお絵描きが大好きで、それまで遊んでいた Etch A Sketch よりもはるかにかっこいいと感じました。

\n\n\n\n

その後、親が Windows 95 コンピューターを購入し、インターネットに接続しました。両親は重要な電話がくる予定がないかを確認してから電話線を外し、コンピューターを接続していました。Google 検索が登場したとき、家族で画面の周りに集まり、「数十件」もの検索結果に驚いていました。私たちは、誰の名前が最も多くの検索結果を引き出すかを競うゲームもしました。私のミドルネーム「ルカ」が「デジタルカメラ」に含まれているため、私が圧倒的に勝ちました。

\n\n\n\n
\n

中学では卓球部に入りましたが、スポーツが自分に合わないとすぐに気付きました。

\n
\n\n\n\n

そこでコンピュータークラブに転部し、初めてのビデオ編集、スプレッドシートやワードプロセッサの学習、そしてホームページビルダーという日本のソフトウェアを使った初めてのウェブサイト作成を経験しました。その頃から教会のウェブサイトの管理を始め、ステージング環境や FTP についてヘルプドキュメントやオンラインマニュアルを読みながら独学で学びました。

\n\n\n\n

高校では、ホームページビルダーが生成する HTML コードを見始め、ドラッグ&ドロップエディタを使わずにサイトを編集できることに気付き、基本的な HTML と CSS も独学で習得しました。初めてのゲームを作成したのもその頃です。プレイヤーがドアをクリックして迷路を進む HTML ゲームでしたが、誰かが URL の論理を解読し、ゴールにいきなり飛ぶ「ハック」をしたことを覚えています。これが私のサイバーセキュリティと暗号化の世界への初めての導入でした。

\n\n\n\n

情報倫理を通して多様性に目が開かれる

\n\n\n\n

大学では情報科学を学び、IT 技術の世界にさらに深く入り込みました。修士課程と博士課程に進み、三つの大学で情報系の授業を教え始めました。日本語と英語の両方で、学部生と大学院生にプログラミングの基本(C、Java)、情報学、画像処理などを教えました。

\n\n\n\n

しかし、最も好きだった科目は情報倫理でした。これは、様々な文化が IT 技術に対して異なる倫理的価値観を持っていることを強調するものでした。

\n\n\n\n
\n

例えば、あるコミュニティは必要に迫られてソフトウェアを海賊版で使用し、あるコミュニティは検閲を回避するためにログイン情報を共有し、他のコミュニティはこれらの行為を非倫理的と見なします。

\n
\n\n\n\n

この科目を教えることで、世界の多様性に目が開かれました。オープンな対話、共感的な聞き方、そして創造的な思考の重要性を強く感じました。

\n\n\n\n

WordPressとの出会い

\n\n\n\n

大学の研究室で初めて WordPress について聞きました。海外から帰国した先輩が、西洋ではこれが大人気だと言って、研究室の Web サイトを WordPress に移行しました。その時は WordPress が何であるか完全には理解していませんでしたが、流行に乗って自分が管理していた教会のウェブサイトも WordPress に移行しました。

\n\n\n\n

2014年に移行して以来、私がサイトを作るときのコンテンツ管理システム(CMS)の選択肢は WordPress 一択になりました。Wix を試したこともありましたが、WordPress への忠誠を再確認するだけでした。その後 Automattic に入社し、ソフトウェアの背後にあるコミュニティを発見した時には、WordPress への愛がさらに深まりました。

\n\n\n\n

Automattic と WordPress コミュニティへの参加

\n\n\n\n

ある時、私のサイトに VideoPress プラグインをインストールした際、サブスクリプションの問題でサポートが必要でした。担当者はただ一通のメールで問題を解決し、署名には「ハピネス・エンジニア」と書いていました。それを読んだ時、私は笑顔になりました。数年後、Automattic でハピネス・エンジニアの求人を見かけ、当時のやり取りを思い出しました。私は WordPress.com のサポートフォーラムで数ヶ月ボランティアをしてサポートスキルを磨き、2019年に Automattic に入社しました。

\n\n\n\n

入社して間もなく、WordPress は単なる CMS 以上のものであることを知りました。それはオープンソースの原則に基づくコミュニティだったのです。その年の後半には地元の WordPress ミートアップに参加し、参加者の無私と献身に驚かされました。そのミートアップでは、WordPress がそれを作るコミュニティを超えて広がっていることを学びました。

\n\n\n\n
\n

WordPress は、使用する人々、すなわち開発者、デザイナー、解析者、趣味の人、ホスト、マーケティング担当者などで構成されていました。

\n
\n\n\n\n

それは異なる背景を持つ人々を、多様性と受容性を大切にする安全な場所に結びつける共通の絆です。そのような人々と初めて触れ合った瞬間でした。

\n\n\n\n

WordPress トレーニングチームでの経験

\n\n\n\n

2020年、コロナ禍によって対面イベントが中止される中、Automattic 内で教育プロジェクトに参加する機会がありました。そこで日本のサポートチームを指導し、内部トレーニング資料を作成し、新入社員向けの新しい教育課程を開発しました。これらの経験は私の教育への想いを再燃させました。

\n\n\n\n

その頃、WordPress は教育サイト Learn WordPress を立ち上げました。私は Automattic 内でフルタイムのコントリビューター(貢献者)として Learn WordPress プログラムに参加するために指名され、2022年6月に WordPress プロジェクトのトレーニングチームに加わりました。最初はチームの価値観、優先事項、そして課題を理解することから始めました。次の6ヶ月間で、チームのプロセスとドキュメントを改善するために取り組みました。2022年の終わりにはチーム代表に推薦され、Trello から GitHub へのシステム移行やオンボーディングプログラムの構築などのプロジェクトをリードしました。これらの努力はチームメンバーのエンゲージメントと活動を増加させ、その結果、Learn WordPress サイトへのトラフィックとエンゲージメントの増加にも寄与しています。

\n\n\n
\n\n
\n\"Ben\n
\n\n\n\n
\n\"Ben\n
\n\n\n\n
\n\"Ben\n
\n\n
\n\n\n

WordPress – 自分らしくいられる安全な場所

\n\n\n\n

私の IT 技術との関わりを振り返ると、多様性と受容性を大切にする安全な場所を作ることに貢献していると感じた瞬間が最も活力を感じました。情報倫理の教育はその基盤を築き、ハピネス・エンジニアとしてのカスタマーサポートは1対1のやり取りでこれを実践させてくれました。新入社員の教育では、これをより大きなグループに対して作ることができ、WordPressトレーニングチームへの貢献はこれをグローバルなコミュニティにまで広げました。こういった働きをしている時こそ、自分は最も自分らしいと感じます。

\n\n\n\n

自分らしくいられる安全な場所を作ることは一度きりのプロジェクトではなく、謙虚で好奇心旺盛な人との関わりを通じて形成されます。すべての会話は安全を築くか、破壊するかのどちらかです。私は最初の WordPress ミートアップで感じた、受け入れられる喜びを鮮明に覚えています。私の希望は、WordPress コミュニティと触れ合うすべての人が、その同じ受容性を経験することです。私も周囲の人々も本当の自分であり続けるために、WordPress というこの安全な場所に貢献し続けることを楽しみにしています。

\n

The post A welcoming community that embraces authenticity – 本物らしさを受け入れる温かいコミュニティ appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2024 23:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Ben Evans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.6 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17469\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/07/wordpress-6-6-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10513:\"

WordPress 6.6 RC2 is ready for download and testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, please evaluate RC2 on a test server or a local environment.

\n\n\n\n

Reaching this phase of the release cycle is a worthy achievement. While release candidates are considered ready for release, your testing is still vital to make sure everything in WordPress 6.6 is the best it can be.

\n\n\n\n

You can test WordPress 6.6 RC2 in four ways:

\n\n\n\n
PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the RC2 version (zip) and install it on a WordPress website.
Command LineUse the this WP-CLI command:
wp core update --version=6.6-RC2
WordPress PlaygroundUse the 6.6 RC2 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.
Please test WordPress 6.6 RC2 in one or more of these four ways.\n\n\n\n

The target for the WordPress 6.6 release is July 16, 2024. Get an overview of the 6.6 release cycle, and check the Make WordPress Core blog for 6.6-related posts in the next few weeks for further details.

\n\n\n\n

What’s in WordPress 6.6 RC2?

\n\n\n\n

Thanks to your testing and many other contributors‘ up to now, this release includes more than 19 bug fixes for the Editor and more than 20 tickets for WordPress Core.

\n\n\n\n

Get a recap of WordPress 6.6’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since Beta 3, you can browse the following links:

\n\n\n\n\n\n\n\n

Want to look deeper into the details and technical notes for this release? You might want to make your first stop The WordPress 6.6 Field Guide. Then, check out this list:

\n\n\n\n\n\n\n\n

You can contribute. Here’s how

\n\n\n\n

WordPress is the world’s most popular open source web platform, thanks to a passionate community of people who collaborate on its development in a wide variety of ways. You can help—whether or not you have any technical expertise.

\n\n\n\n

Get involved in testing

\n\n\n\n

Testing for issues is critical to keeping WordPress speedy, stable, and secure. It’s also a vital way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.6. If you’re new to testing, follow this general testing guide for more details on getting set up.

\n\n\n\n

If you encounter an issue, please report it to the Alpha/Beta area of the support forums. If you are comfortable writing a reproducible bug report, you can also report it on WordPress Trac. Before you do either, you may want to check your issue against a list of known bugs.

\n\n\n\n

Curious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

\n\n\n\n

Search for vulnerabilities

\n\n\n\n

From now until the final release candidate of WordPress 6.6 (scheduled for July 9), the financial reward for reporting new, unreleased security vulnerabilities doubles. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.

\n\n\n\n

Update your theme or plugin

\n\n\n\n

If you build themes, plugins, blocks, or patterns, your products play an integral role in extending the functionality and value of WordPress for all users. 

\n\n\n\n

Thanks for continuing to test your products with the WordPress 6.6 beta releases. With RC2, you’ll want to finish your testing and update the “Tested up to” version in your plugin’s readme file to 6.6.

\n\n\n\n

If you find compatibility issues, please post detailed information to the support forum.

\n\n\n\n

Help translate WordPress

\n\n\n\n

Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.

\n\n\n\n

Release the haiku

\n\n\n\n

6.6 draws near.
In two weeks the final’s here.
Test. Test. Then test more.

\n\n\n\n

Props to @juanmaguitar, @meher, @desrosj and @atachibana for peer review.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2024 17:09:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"HeroPress: Voices Of WordCamp Europe: Thabo Tswana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7211\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"https://heropress.com/voices-of-wordcamp-europe-thabo-tswana/#utm_source=rss&utm_medium=rss&utm_campaign=voices-of-wordcamp-europe-thabo-tswana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:884:\"\"\"

When I needed more Africans for HeroPress I went looking and quickly found Thabo Tswana. Since then nearly every African I’ve spoken to about how they got started in WordPress, Thabo’s name comes up. He makes things happen and he helps people grow and advance. He’s one of the people I admire most in WordPress.

\n\n\n\n

I didn’t know he’s be at WordCamp Europe, so I was super excited to get to meet him in person. Here’s our interview.

\n\n\n\nThabo Tswana Interview\n\n\n

The post Voices Of WordCamp Europe: Thabo Tswana appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2024 15:49:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Do The Woo Community: Accessibility Certification with Regine Gessner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84341\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/accessibility-certification-with-regine-gessner/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20218:\"
\n

This show is sponsored by…

\n\n\n\n
\n
\n
\n
\n
\n\"\"\n
\n
\n
\n\n\n\n
\n

Omnisend: Whether it’s for integration into your Woo product, or building sites for clients, Omnisend is the solution for email and SMS marketing with their CRM solution for WooCommerce shops and your own website.

\n
\n
\n\n\n\n
\n
\n
\n
\n\"Hostinger\"\n
\n
\n
\n\n\n\n
\n

Hostinger: As a builder or an agency managing multiple sites, check out Hostinger. Whether you are building a WordPress site or specifically, a Woo store, their infrastructure brings your clients sites speed, uptime and security.

\n
\n
\n
\n
\n\n\n\nEpisode Transcript\n
\n

Anne:
Hello everybody. Welcome to the next episode of All Things WordPress and WooCommerce in regards to accessibility. My name is Anne Bovelett. I’m an accessibility specialist. I have a lot to say about accessibility, and I try to teach anyone who wants to hear it and probably those who don’t want to hear it too. Accessibility is very important. Since we’re talking e-commerce, we’re also talking about revenue. It doesn’t really matter why you make something accessible, as long as you do it. If your web shop is losing revenue by the thousands or millions because you’re not making it accessible, you’d have good reason to do it, right?

\n\n\n\n

I know that came out a bit harsh, but I don’t mean it that way. We’re trying to come from a kind place. One of the things we’ve learned lately is that people are saying, “We don’t know where to go. We don’t know who to turn to. We don’t know who to ask or who to trust.” I can understand that this is a very uneasy situation to be in.

\n\n\n\n

I’m sure that if my co-host Taeke Reijenga could have been here today, he would have started filling us in on a lot of stuff in that regard. Unfortunately, due to personal circumstances, he couldn’t be here today, but he’ll probably be back next episode. So, let’s see how far we get today.

\n\n\n\n

This show is not just about the people that everybody already knows. We love the familiar faces, but it’s also about introducing some people you may not know yet. Today, I’m super excited to introduce Regine Gessner from the IAAP. I’ll ask her to explain what the IAAP is, who she is, what the IAAP is doing, and about an interesting discussion we had in December about certification. Hi Regine, welcome.

\n\n\n\n

Regine:
Hello Anne. Thank you very much for having me here today. I’m very happy to join in. My name is Regine Gessner, and I am working for the IAAP, which stands for the International Association of Accessibility Professionals, an association based in the U.S. The IAAP started 10 years ago and has developed several chapters in different regions. Four years ago, we started the German-speaking chapter, called IAAP DACH, which stands for Deutschland, Austria, and Switzerland. We are in charge of the German-speaking community and are the contact point for these countries.

\n\n\n\n

The IAAP’s mission is to network and exchange ideas. That’s one of our key pillars. Another is certification and advanced training. These are our key points. Since we started here in the German-speaking area, we have more than 350 members, including organizations. When you become a member, you are a member of the global IAAP, but then you will be directed to the region where you are based. Worldwide, IAAP has 6,500 members and about 220 organizations.

\n\n\n\n

So, that’s basically what the IAAP is. My position, since a bit more than a year ago, is to manage everything full-time, as it became too much to handle voluntarily. I am the main key contact for all people interested in membership and certifications. I’m the connection to the global team in the US and coordinate our working groups, board, and some of our tools.

\n\n\n\n

Anne:
Alright, so just for our audience, because we have mentioned certification several times, this is about the certification for specialists in accessibility in several disciplines. These certifications are sometimes a topic of discussion regarding their value and importance. We will get into that later on because this was the basis of our discussion in December.

\n\n\n\n

One of the reasons I asked you to join us today is because we know that in many organizations, regardless of size, it matters that you have people trained to maintain accessibility over time. Accessibility is not a one-off, is it?

\n\n\n\n

Regine:
That’s right. It’s not a one-off; it’s an ongoing process. It’s not something that is done and then over. It’s something you have to start and build up capacity or competence in your company and teams. To implement it is not only technical but also a mindset in the people. That is very important and a key pillar. It must be obvious and natural that thinking about accessibility is part of the company or structure.

\n\n\n\n

Anne:
Let me ask you a controversial question. Do you think companies should make CPAC certification an obligatory certification for everybody working on their digital representation? Would that be a good idea?

\n\n\n\n

Regine:
I would say yes. From my personal view, even as a newcomer in this topic, I did the CPAC certification, and it gave me a basic understanding of what we’re talking about. It covers disability models, types of disabilities, barriers people face in the digital world, what can help them, and what’s important to know when building a website, app, or documents. It’s not a technical certification but a basic knowledge one. So, I would recommend it as a good foundation when building your team.

\n\n\n\n

Anne:
Yeah. I’ve been thinking about this topic long and hard, especially now that we’re talking about it with this podcast. I hear a lot of companies say, “Making things accessible is too expensive.” But what if you integrate this into the core of your business? If it becomes second nature, getting the CPAC certification teaches you a lot about the why. And if you understand the why, it comes more naturally to a person.

\n\n\n\n

This is why I was asking this question. It’s tough because, in an ideal world, you’d want everyone certified. For example, if you own a web shop with a lot of people coding and creating content, you can say, “It’s expensive to remediate or keep fixing things.” But if you have to keep fixing things, it means people are doing things the wrong way. I would love to hear from our audience if they agree with this or why they disagree. Let’s discuss this in the next couple of weeks as people respond.

\n\n\n\n

Another thing I wanted to ask you, the DACH chapter in Germany has about 350 members. While I’m happy there are so many members, I’m also worried because, with the upcoming legislation, it’s sad that the law has to push us to speed up a process we’ve been waiting for the past 20 years.

\n\n\n\n

Regine:
Yes, I agree. In the beginning of 2023, we had about a hundred members, and now we’ve really increased. But for three countries, or even the whole world, having just 6,500 members in IAAP is not much.

\n\n\n\n

Anne:
But there is a great thing. It means there is opportunity for people working in web design, development, content creation, marketing, and communication to learn and expand their services. I’m sure many companies will want to do this and might outsource it. There are pros and cons to that, but let’s say our audience includes web shop owners, developers, designers, and other disciplines. If a web agency starts thinking about accessibility, learning about it, and expanding their services, what would you recommend from an IAAP point of view?

\n\n\n\n

Regine:
If a company has no connection with accessibility yet, they can start by joining the community to network and learn. We offer several tools for our members to get in touch with each other, such as online breakfast meetings and networking events. These connections and exchanges are very valuable. Members can discuss their issues and concerns, and the group can help each other. This is very helpful.

\n\n\n\n

Anne:
This is wonderful and very similar to the WordPress community, where we help each other succeed. It kept me coming back to WordPress in general. People exchange information and support each other. I hear complaints about Slack, and I’m one of them. Can you tell our listeners where they can go on your website to find out how to become a member and if they can talk to someone before becoming a member?

\n\n\n\n

Regine:
It’s simple. They can email contact@iaap-dach.org, which is for the German-speaking region. This will come to me, and I can get in touch. I prefer personal calls to understand better. You don’t necessarily need to be a member to do certifications, but being a member has its benefits.

\n\n\n\n

Anne:
Is the same approach available for the international department if people go to accessibilityassociation.org, or is this specific to the German chapter?

\n\n\n\n

Regine:
We have several chapters, including a Nordic chapter for Denmark, Norway, Finland, Sweden, and Iceland, a UK chapter, and a Mexican chapter. More chapters are in the process of starting. You are always welcome to contact the global colleagues from IAAP.

\n\n\n\n

Anne:
That’s wonderful because we have listeners from all over the world. Investing in accessibility can be costly for some, but it’s essential. Let’s discuss the December DACH region discussion about certification. People sometimes look for shortcuts to show certification without the proper intentions. There are also people with 10-20 years of experience who might question the need for certification. For example, someone who wrote the book on accessibility guidelines might be offered a junior salary because they lack certification.

\n\n\n\n

This is an interesting dialogue because certification is important. If someone gets certified, it means they learned a lot about the topic. There are several certifications, such as CPAC and WAS. Could you explain the prerequisites for the WAS certification?

\n\n\n\n

Regine:
Yes, to start with the basic certification, CPAC, it gives you basic knowledge, but not expertise in digital accessibility. The WAS (Web Accessibility Specialist) certification requires a minimum of three years of documented roles and responsibilities in web accessibility. It’s not just enough to have knowledge of HTML or JavaScript; hands-on experience and knowledge of code elements and assistive technology are needed. This exam is for those with significant experience.

\n\n\n\n

The same applies to the ADS (Accessible Document Specialist) certification. These certifications are valid for three years and need to be renewed or maintained by collecting credential points through training or speaking at conferences. This ensures that knowledge stays current.

\n\n\n\n

Anne:
Accessibility is never a one-off, right?

\n\n\n\n

Regine:
Exactly, it’s an ongoing process.

\n\n\n\n

Anne:
This brings up the importance of accredited courses, like those offered by the Accessibility Collective

\n\n\n\n

. They provide credits for IAAP certification, which helps ensure the courses give you long-term benefits. Companies need to understand where to find the correct information and how to avoid conflicting advice. Referring to the WCAG guidelines and talking to the IAAP are crucial.

\n\n\n\n

Regine:
I agree. The IAAP is not perfect, but we provide a platform, guidelines, and legislation. The discussion on certification is important, and there are many specialists with years of experience. They can use their references and tools to prove their expertise. The IAAP is one channel, but there are many pieces to the puzzle that help us on our way.

\n\n\n\n

Anne:
Yes, altogether we can take the fear out of doing accessibility right. Every time I speak to companies, I emphasize that accessibility is everyone’s task, not just one person’s. Support and teamwork are essential. If someone finds an issue, it’s about helping each other, not pointing fingers.

\n\n\n\n

If someone contacts you about an issue with your web shop, it’s a gift, even if it’s wrapped in anger. Engaging with them can turn them into ambassadors. Ignoring accessibility can mean losing potential customers, and it’s important to take these opportunities to improve.

\n\n\n\n

Regine:
Absolutely, everyone wants access to everything. For example, around 15% of people in Europe have some kind of disability and can’t use everything fully. This potential customer base is missed if your shop isn’t accessible.

\n\n\n\n

Anne:
Yes, there’s so much potential. Ignoring accessibility leaves about 13 trillion dollars on the table globally, which is larger than the Chinese economy. This includes all accessibility, not just digital. Restaurants not accessible to wheelchairs miss not just the person in the wheelchair, but also their friends and family.

\n\n\n\n

Regine:
Exactly, the whole group can’t go there.

\n\n\n\n

Anne:
So, if someone contacts you about an accessibility issue, consider it a valuable opportunity. Improving accessibility benefits everyone. Thank you so much, Regine, for coming on the show today at such short notice. Your insights were invaluable.

\n\n\n\n

Regine:
Thank you very much for having me. It was a pleasure to be here, and I will make sure to provide all necessary links and information for your audience to learn more about us, our certifications, member benefits, and events.

\n\n\n\n

Anne:
Thank you. And thank you to Greyd in Munich for sponsoring this podcast. This has been a different show than usual, but flexibility is important. We’ll talk about WordCamp Europe next month. Thank you, Bob Dunn, and Do the Woo for giving us this platform to discuss digital accessibility, especially in e-commerce. If you have questions or comments, please reach out to us. Thank you and see you next month.

\n
\n\n\n\n\n

In this episode of All Things WordPress and WooCommerce via our series on accessibility, host Anne Bovelett is joined by Regine Gessner from the International Association of Accessibility Professionals (IAAP), as they explore the role of certifications in accessibility, the challenges companies face, and practical steps for integrating accessibility into digital projects.

\n\n\n\n

They also address common misconceptions and the need for ongoing education and community support to ensure web accessibility becomes second nature in digital development.

\n\n\n\n

Highlights

\n\n\n\n

Introduction to Accessibility: Anne Bovelett emphasizes the importance of accessibility in e-commerce and its impact on revenue, stating that accessibility should be integral to digital projects.

\n\n\n\n

Role of IAAP: Regine Gessner introduces the International Association of Accessibility Professionals (IAAP) and its mission to network, exchange ideas, offer certifications, and provide advanced training in accessibility.

\n\n\n\n

Certification Importance: The discussion focuses on the value of certifications like CPAC and WAS in establishing credibility and knowledge in accessibility. Regine explains the prerequisites and renewal process for these certifications.

\n\n\n\n

Challenges in Accessibility: The common challenges companies face in implementing accessibility, such as understanding its importance, integrating it into core business practices, and overcoming the perception of high costs.

\n\n\n\n

Community and Networking: IAAP offers various tools for members to connect and exchange knowledge, including online breakfast meetings and networking events, highlighting the importance of community support.

\n\n\n\n

Legislation and Compliance: Upcoming legislation is mentioned as a driving force for companies to prioritize accessibility, despite it being a long-standing issue.

\n\n\n\n

Practical Steps for Companies: Recommendations for web agencies and companies on starting their accessibility journey, including joining IAAP, networking, and leveraging available resources and tools.

\n\n\n\n

Personal Stories: Regine shares a personal story to illustrate the real-world impact of accessibility issues, emphasizing the need for inclusive digital experiences.

\n\n\n\n

Business Opportunities: Anne and Regine discuss the potential market and revenue opportunities that accessible web design can unlock, highlighting the significant percentage of the population with disabilities.

\n\n\n\n

Links

\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2024 09:51:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Do The Woo Community: A Deep Dive into the Metorik Insights Report for WooCommerce with Bryce Adams\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=84462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://dothewoo.io/a-deep-dive-into-the-metorik-insights-report-for-woocommerce-with-bryce-adams/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50211:\"Episode Transcript\n
\n

Marcus:
Hey everyone. Welcome to another BizChat here on Do the Woo. My name is Marcus Burnett and I’m a community marketer with GoDaddy. I am here today with my wonderful co-host from Barn2 plugins, Katie. Keith, how are you today, Katie?

\n\n\n\n

Katie:
Hey, great, thanks. What about you, Marcus?

\n\n\n\n

Marcus:
Yeah, not doing too bad. We’re spanning all parts of the globe today, so it’s morning for me, afternoon for you, and evening for our guest, but doing pretty good. As usual, we have an excellent guest, and like I said, today we’re spanning all different parts of the globe. Joining us today from the ecommerce Marketing suite of tools at Metorik is founder Bryce Adams. Welcome to the show, Bryce.

\n\n\n\n

Bryce:
Thanks, Marcus. Thanks, Katie. Thanks for having me. Yeah, it’s really cool to be back on a Do the Woo show. I think the last time I did was maybe half a decade ago. I don’t know. I love being able to say half a decade.

\n\n\n\n

Marcus:
Absolutely.

\n\n\n\n

Bryce:
But yeah, it’s cool to be here.

\n\n\n\n

Marcus:
Happy to have you here. Bryce is here to talk about a report he recently published on the State of WooCommerce at Scale. But first, would you please share with folks a little bit about yourself and your company, Metorik?

\n\n\n\n

Bryce:
Sure, yeah. So my name is Bryce and my background in Woo, I guess, started at WooCommerce itself back in 2014. I was there initially in a support role and eventually in a development role. Then Automattic acquired Woo in 2015. So I joined that and that happened pretty quickly, and then left in 2016 to do Metorik. So that’s like eight years ago now. I guess the majority of my career has been spent on it. Metorik is basically an analytics and email automation tool for WooCommerce and for Shopify and maybe more platforms in the future. But primarily we started with WooCommerce back in 2015 and only really added Shopify a few years ago. The majority of the customers we have around the world are WooCommerce stores.

\n\n\n\n

Katie:
So let’s move on to the report then. You’ve recently published an insights report based on the sites which are using Metorik with WooCommerce. Can you tell us a bit about that?

\n\n\n\n

Bryce:
Yeah, for sure. It was something we wanted to do for a really long time. I think even a few years in, as it was starting to approach several thousand stores, I was starting to see trends and patterns. One of the most common feature requests we got was benchmarking and trying to understand how a store compared to other stores, especially in Woo, where it can sometimes feel like we’re all kind of isolated on our own server and our own websites, not necessarily all on one platform. There was a lot of demand for clarity into what was going on. So people were asking for it a while ago, but a project like this is challenging to do well and at the quality level that I wanted.

\n\n\n\n

We couldn’t do it with the few of us that were working together, but the team’s growing recently and we’ve got more resources. Luke, someone who just joined primarily for marketing and design-related stuff, said, “Oh, I reckon I could throw something together if you can get the data.” We were just sitting around the couch here in Melbourne, brainstorming ideas. It’d be cool to see that stat and then on Twitter, I think Katie, we talked about some stats even a couple of months ago, about bundles. I was also talking with Vova from Freemius about different subscription stats. We started to create this foundation to do this at scale, thinking about privacy at the forefront of that. So anonymized samples of all that data and just using averages to try to paint a picture of what was going on. Once we had that list to work from, it started to be pretty fun. We were just going through a list like, okay, let’s try and figure out that metric and that one, and then you’ve got to actually dig through it a lot more to find the interesting parts. But it was a big project.

\n\n\n\n

Katie:
I think it’s really useful for companies like yourself that have access to data of multiple sites to publish that because, as you said a minute ago, WooCommerce sites are all installed on people’s own servers unless you’re using Woo Express or something and people just don’t have those benchmarks. I’ve seen a bit of that going on in the industry. For example, WP Fusion’s year in review reports are really useful from a WordPress perspective because they publish data about the different sites running WP Fusion, which LMS plugins are the most popular and page builders and so on. So it was really nice to see a WooCommerce version of that.

\n\n\n\n

Bryce:
I think the fun thing for me was this was, I mean, I love Woo. It’s where I first started working, my first job really was at Woo, and then it’s all I’ve really ever known. I love it as a platform. I love what it enables, the fact that people can run their own site, control everything, customize everything, but also own everything. That idea of data ownership is so important to me. Woo enables that. Part of doing the report was wanting to validate, even though all these sites are their little islands out there on the internet, the scale that Woo is operating at is massive. I don’t think people realize it. We hear numbers being thrown around, several million Woo stores and things like that, but they don’t really mean anything until you actually see the data behind it and the scale and that validation, the brands that are using it. I don’t think people know how many Woo stores out there are doing millions of dollars a year in revenue. There’s tens of thousands, but yeah, I’m not sure the exact number, but there are so many stores out there that are really pushing the limits of Woo and people don’t know about it. So it’s cool to share.

\n\n\n\n

Marcus:
You said that Luke came in and kind of threw something together, but this is actually really polished and really nice.

\n\n\n\n

Bryce:
Luke is so talented.

\n\n\n\n

Marcus:
Before we get into some of the different pieces of it, I do want to let people know that they can also follow along with us at metorik.com/woocommerce-insights. We’ll leave that link in the show notes, but if people want to look at it while we’re having a discussion here, that’s metorik.com/woocommerce-insights. I ended up writing just a ton of questions basically on every slide, so I don’t know if we’ll get to all of them.

\n\n\n\n

Bryce:
That’s awesome. No, whatever is interesting.

\n\n\n\n

Marcus:
I kind of want to jump in, maybe start from the top and work our way down. One of the first things that you shared in here is that the average age of WooCommerce stores is four years. That kind of lines up with the start of COVID in my head. How do you think COVID changed the landscape of ecommerce or specifically, WooCommerce?

\n\n\n\n

Bryce:
What we saw when COVID happened? Yeah, it’s an interesting perspective when you are coming at it as a SaaS because maybe as a plugin maker, Katie, you would’ve seen at the time an increase in sales as more people were setting up Woo stores. But for us, it wasn’t just an influx of more stores, but what was really interesting was what every store was doing across the line, the scale of the growth during that time. We have some reports we were looking at back then just in terms of being able to run the app and see the scale of order volume and Airbnb and things like that across everyone. It’s like a spike around COVID and just consistently through that whole period, we found that on average every store was doing better. There were definitely a lot of new stores starting, but I found it more interesting to see the existing stores all grow as a result of it.

\n\n\n\n

Of course, that all dropped off, and you can actually, it’s pretty interesting when you look at the higher scale, a five-year period, you see that growth and that decline happen through the actual order volume that’s happening. But in terms of the age, a lot of it comes down to the fact that Woo itself is not that old. The oldest a store could possibly be is probably 10 years, I’m not sure the exact age. Over time, very few stores are going to go from 11 years and still be running after all that time or necessarily be on the same platform. I think four years is actually probably bigger than what I’d expect just because Woo is such a young platform.

\n\n\n\n

Katie:
That makes sense. A slightly more practical question, I was interested to see that you said 32% of stores are tracking their costs and profit as well as their sales. I was interested because I didn’t know it was possible to do via a website analytics tool. Everybody knows you’d use it to get sales data and things like that, which is a lot better than the sales data you get from WooCommerce reports in core, which is very basic obviously. But how does that work, tracking costs and profit, because that data isn’t entered into the WooCommerce admin?

\n\n\n\n

Bryce:
I think that’s actually something that I’d love to see WooCommerce core improve, having the ability to set up a product cost. It should just be built into Woo by default. Shopify has it by default, almost Square does, almost every other ecommerce or commerce platform does because it is something that if you look at like 80/20, 80% plus of stores probably do have a cost that they want to set on a product. It should be core. It’s not, but we decided to offer that as a feature. Before that though, we just integrated directly with the WooCommerce Cost of Goods plugin, which itself Skyverge made, and that’s probably explained why it was so good and it worked really well because for us, we were able to then basically build this whole profit

\n\n\n\n

reporting feature and have all historical costs come in and profit reports come in without stores having to do anything. It was really cool because they’d never even had that. They’d set up a product cost inside of WooCommerce Cost of Goods, and there were some basic reports, but all of a sudden we were able just to bring that data in and kind of cleared it.

\n\n\n\n

It got to a point where we were just telling everyone to go and buy the Cost of Goods plugin. People were like, well, I don’t want to install a new plugin just to have a field on my product page to set the cost. That’s very fair, especially when they don’t need the reports and the other functionality from it. So we decided to build it into the app. Of course, it morphed into something much bigger. We got shipping transaction, extra cost. You can say a lot of people want us to do their monthly salary costs and office expenses. They really want to have a bigger picture of things. We’re not really meant to be an accounting or profit tool in that way, but over time it’s kind of becoming that. People want more and more from there.

\n\n\n\n

One of the other cool things you can do as a SaaS when it comes to this kind of thing is we integrate with Google Ads, TikTok ads, Facebook ads, all these different providers to let people bring in their live advertising costs from those platforms. It starts to be a really cool experience as a user because you’re getting all this data from different places in one location and getting to actually report on it, aggregate it.

\n\n\n\n

Marcus:
What’s keeping the other 70-odd percent or so from doing the same? Is it a knowledge thing about whether they don’t know that that exists or is it an industry thing where it doesn’t make sense for some folks?

\n\n\n\n

Bryce:
I think industry plays a big part. Privacy is another issue. We don’t have it in a way, again, it was just kind of bolted onto the app. It wasn’t what we initially set out to do. We don’t have a way for you to just say, this user can see all the reports, but they can’t see the cost and profit. That’s a common thing that a store owner might want to hide from their team. They want them in there using metrics for the reports. A lot of users have asked us to do that and we’ll probably do that soon. I think that would increase adoption a little bit. But also, we’re not trying to be an app for them to figure out their profit and pay taxes on. We don’t encourage it in that way. When people come to proper reporting, they’re probably looking for that level of detail. They need to incorporate all their costs across the whole thing, salary to everything.

\n\n\n\n

The interesting part on our end starts to be trying to figure out reports based on that. We added these reports to the app a few months ago for doing cohorts, customer cohorts based on when they join by the month they join, week they join, or maybe the first product or first coupon they use. It’s really cool to split your customers up into those cohorts automatically and then see the lifetime profit and profit margin over time, how that changes. Then you start to understand not just at what point a customer has spent enough that they’ve reached a target revenue per customer, but they’ve actually become profitable. You can measure that and be like, by month 14, we know on average that’s where we’ve got enough profit from each customer. I love that part of it more than being an accounting tool.

\n\n\n\n

Katie:
It’s really helping WooCommerce store owners to run their company as a proper business. A lot are more hobbyist sites and it helps to bring them to the next level. Some of them will already be doing that, of course, but a lot of WooCommerce store owners don’t do that kind of thing. This is really making it much more accessible. I’m kind of wishing I use WooCommerce on my own website. I use Easy Digital Downloads and I can’t access any of this because quite sensibly you’ve built this for WooCommerce and Shopify, the two biggest players. I get that.

\n\n\n\n

Bryce:
I have had some requests for EDD, but every single request has come from people I knew in the community who would want it. Then I start to think about how many stores that is and it’s maybe a couple of hundred that I know would pay for it as well. It starts to be a little harder.

\n\n\n\n

Katie:
Yeah, totally agree.

\n\n\n\n

Bryce:
But I’ve always wanted to build it for EDD because all my friends and all my colleagues are using EDD rather than Woo. At the start, it wasn’t like I could really contact too many of my friends running WordPress businesses and say, please use my product because they were using EDD.

\n\n\n\n

Katie:
You mentioned earlier about maybe they should put something in core related to the cost of goods. I was thinking that when I saw your stat about subscriptions, 28% of all the WooCommerce stores that you track use subscriptions. The vast majority of them will be WooCommerce subscriptions to one specific plugin, of course. I know they will never put that in core because they must make so much money from that premium only add-on.

\n\n\n\n

Bryce:
I don’t think they make enough from it to be honest.

\n\n\n\n

Katie:
Because it’s so valuable in recurring revenue.

\n\n\n\n

Bryce:
Exactly. It’s one thing that we’d probably do next year and we want to improve in a report based on the feedback, but also just based on what I think would be interesting is actually saying, while maybe it’s 27% of stores that have subscriptions on, does that actually account for more like 40-50% of the revenue or are those stores by default on average double or triple stores that don’t have subscriptions? We didn’t go into that and I think we’d like to expand on that, but I think that would actually show that while maybe 27-30% are using subscriptions, those stores tend to be much more successful because it’s such a great business model if you can make it work.

\n\n\n\n

Marcus:
Yeah, absolutely. I want to shift gears a tiny little bit and talk about, you have a couple of slides in here about the top themes and plugins in WooCommerce stores. Looking at the top themes and plugins, I see Elementor ranking pretty high in both and Classic Editor at number five in the top plugins.

\n\n\n\n

Bryce:
Not too surprised to see that.

\n\n\n\n

Marcus:
Yeah, native WordPress right now with full site editing isn’t quite ready to handle the majority of WooCommerce stores.

\n\n\n\n

Bryce:
Well, I think that indicates that there’s still a heavy dependence on the Classic Editor for sure. A lot of that might come through other builders that are being used, but also maybe other WooCommerce plugins and stuff that aren’t quite there yet. I know even for us, we’ve been integrating with commerce blocks and stuff for the checkout recently for an update we’ve been working on. I think a lot of the filters that we needed were only added in a WooCommerce version that just came out or is about to come out. That’s certainly fine if things take time and it’s good to take time to get it right, but if we’re an app that’s trying to really stay ahead and move with Woo, we were really only able to integrate with some of those features in a version that’s just coming out now on June 24. It’s going to take time for that shift to happen, maybe longer than anyone’s expecting.

\n\n\n\n

Marcus, while you mentioned that, it makes me think about a part of the report that I found a little surprising and actually came out of a discussion I had recently about PHP versions. I noticed that 7.4 is still at 45% of WooCommerce stores that we’re tracking. I think that’s actually higher than the average across all of WordPress generally. There is that kind of fear when it comes to an ecommerce store. Upgrades come at a very big cost if it messes up. If your site goes down or if something’s incompatible and you have downtime, it’s not just downtime, it’s losing money time. That’s a very valid concern for an ecommerce store.

\n\n\n\n

Marcus:
Yeah, one of the other stats that just screamed off the page at me was that the average number of active plugins is 58 on a WooCommerce store. So compatibility-wise, you have to make sure that all 58 of those are ready to move beyond PHP 7.4 before you upgrade. But also, why so many and what do the annual costs look like? Not all of those plugins are going to be free. I know a lot of WooCommerce plugins cost an annual fee.

\n\n\n\n

Bryce:
Yeah. I think we are always, and I think that comes with a caveat with this report, we’re looking at stores that are willing to pay us, Metorik, as an app, at least $20 a month, and in most cases, $100 plus a month for an app for their WooCommerce store. They aren’t reflective of every WooCommerce store. I think with that means they’re willing to spend for sure at least two, $3,000 a year on their website if they’re willing to pay that much to us as an app for their website. It’s reasonable to think that most of them would have 10, 20 plus active subscriptions, but with that cost comes so much value because a lot of these stores are doing significant numbers and significant volume. If they wanted to have a similar setup, an equivalent setup on another platform like Shopify, they would be looking at a larger annual cost for sure.

\n\n\n\n

Katie:
I enjoyed the section about order milestones. I spent quite a while looking at that and trying to visualize the typical store and how long it takes them to get any significant momentum and so on. It is interesting to see that the majority, 76%, get to a thousand orders and it takes just over a year, whereas it’s a pretty small number that make a hundred thousand orders ever, which is 7.9%, and that takes multiple years. A million orders, which kind of makes sense, is only 1%. It’s interesting to see the

\n\n\n\n

dropoff. It made me wonder how WooCommerce compared with that regard to other platforms that might be more enterprise-tailored or something, whereas lots of WooCommerce stores are more small.

\n\n\n\n

Bryce:
Yeah, that’s a good point. Look, Shopify for sure, I think the number would be a bit quicker, but I don’t know necessarily how many are getting to that scale as well. I think it would be similar, but again, I do think it always comes back to if the store is investing a lot more in their online presence through paying more for the ecommerce platform, through spending more on hosting or developers or marketing costs, any of those things, they’re typically going to be a bigger store. I think WooCommerce by default is a cheaper option, so you do tend to get stores that invest less in marketing at the start. But then that’s what we saw that I found really interesting with this report. You kind of get to that a hundred K, and we didn’t have enough time to really show a good picture between that a hundred and a million, but you scale so much faster at that point because you’ve already got the momentum, you’ve already got the infrastructure set up, and probably more than anything, you’re at a point in the business where you want to invest in marketing and other ways to improve your store.

\n\n\n\n

Katie:
It kind of fits with a theory I’ve been developing about the way that WordPress and WooCommerce are growing more widely. If you look at data on Built With, which I was looking at yesterday, I think I tweeted about it actually, if you look at WordPress and WooCommerce’s growth for the top hundred thousand sites, the top million sites, they’re actually going down a bit. They’re declining, but then if you tick the whole internet box on Built With, they’re going up quite rapidly. So that says to me that the growth is in the smaller websites, and I thought that might fit with your data that the majority have a smaller number of orders as well.

\n\n\n\n

Bryce:
Yeah. I think the tricky thing with all of those numbers that are out there with Built With in different companies that try to track the state of ecommerce across the whole internet is that we just don’t know how many of those sites are actually operating and have at least 20 sales a year. You’ve got to learn a hundred, and I think really the number of stores that is like sub a hundred orders a year is the majority probably. And that’s okay. There’s still so many stores out there that are doing larger numbers, but especially with sites that are just being set up and not running, you can do that basically for free on WooCommerce. We always have to take those numbers with a grain of salt.

\n\n\n\n

Marcus:
Yeah, I was looking at that chart as well. Less than 10% of stores make it to that a hundred thousand plus orders mark within an average time of four years or so to make it to this milestone. Why do you think stores don’t stick it out? The average time to a million plus is like six years. Is it just a patience issue? Do people just need to be in it for the long run? Do people give up too early?

\n\n\n\n

Bryce:
Maybe. Maybe they’ve switched platforms as well. It’s hard to really paint that picture in a report like this, but it’s something that we see tends to happen. Stores get to a certain size and they end up then wanting to try a different platform, become Shopify or something custom. I’ve seen stores go to Magento, and so I think that sometimes can be a reason. But also it’s just really hard to get to that scale. You see people on Shopify, especially because they send out these trophies and things like that to commemorate when you get to certain milestones, they send a physical item. I think you order it through them to merchants and you see people posting on Twitter, but the reality is there aren’t that many stores that are getting a million plus orders. That’s a big volume. If you’re doing a hundred plus average AOV, that’s like a hundred million. So a more realistic average Woo store, I don’t think we published it in it. The number I was seeing was something like off the top of my head, 30, 40,000 orders, something around that bracket. But that’s still massive, especially if an average order is a hundred dollars.

\n\n\n\n

Marcus:
The ones that are switching platforms, what is making them want to do that? What is WooCommerce not doing well at a hundred thousand or a million orders?

\n\n\n\n

Bryce:
That’s probably an episode in itself just because it’s such a big thing to unpack. At that scale, stores are thinking about what matters to them. What I’ve found, it’s not even about reliability, but having someone to depend on. I think Shopify does that well. It’s like a safety net. A merchant running on that, even if their site does go down, it’s like it’s going down with every other Shopify site and that gives them some confidence. Shopify’s reliability recently has been really good. So a lot of it is peace of mind. Merchants don’t want to be technical. They don’t want to get in the weeds that much. They really just want to run their shop and not think about plugin updates or anything.

\n\n\n\n

When I see a lot of WooCommerce agencies now pop up that are focusing on maintenance plans and things like that, that’s really good and a step in the right direction. But it needs to come as well with the reliability or the escape, the reassurance that someone’s got your back if the site goes down and you’re not going to lose your order data and things like that. The cost to a store if their site goes down and they have to restore to a backup and it’s eight hours before, and in that time they had orders, it’s such a big cost that it would almost pay for a subscription for Shopify or something else in a year. If it’s going to solve it by going to one of those platforms, they’re going to do it. There needs to be enough upside for them to stay with Woo.

\n\n\n\n

For a lot of stores, subscriptions are amazing and above, beyond what most subscription platforms that exist for Shopify allow. The cost of running on Woo is low. If you can do that at scale and you can really optimize your site and handle how you tackle downtime, but also have a good backup plan, have a good recovery plan, then you start to save several hundred thousand a year with Woo if you’re a big store and maybe even a million plus if you’re doing tens of millions a year in revenue. Woo has a lot of advantages. It’s just about finding the disadvantages and trying to solve them.

\n\n\n\n

Katie:
Marcus, did you have any questions about the average order stuff or the refunds?

\n\n\n\n

Marcus:
I had one. You have a note on the refund section that physical goods are refunded at lower amounts than software because of the low overhead for software. In general, the outlier here seems to be clothing and footwear. I think I have an idea, but what makes that industry have the highest refund rate?

\n\n\n\n

Bryce:
It’s probably one of the most compelling things you can offer as a business in that industry is free returns and really to almost encourage them and say, order from us as much as you want, and then the few things you don’t want to send it back will include a free return bag because that’s really how those stores start to get higher AOV. I think it’s a symptom of that, but it’s probably by design and it probably does actually increase the AOV for that industry quite a lot more than what it would be without it.

\n\n\n\n

Katie:
I see that online learning has an 85% refund rate, which is kind of scary because it makes me think that people are abusing it potentially.

\n\n\n\n

Bryce:
Oh no, that’s only 85% of the refund amount, not refund rate.

\n\n\n\n

Katie:
Oh, okay. Yeah,

\n\n\n\n

Bryce:
I’d be surprised if they were doing well enough to keep running their shop with that much of a refund rate.

\n\n\n\n

Katie:
Oh, the amounts 1.5%. Yeah, that’s better.

\n\n\n\n

Bryce:
Exactly. The one that we want to highlight with the refund amount was just to show, when a refund does happen, is it a full refund? Is it a partial one? I found that interesting with some consumable ones like food and beverage, the refund amount on average is 56%. That would indicate that a lot of stores are doing partial refunds. Maybe one of the items they’re not happy with is not worth the cost of returning it, while software or online learning, it’s 80-85% because it’s a digital item. You can effectively refund the whole thing without incurring a major cost as a store.

\n\n\n\n

Marcus:
Those are a little harder to partially refund too. Refund a handful of lessons from a course. You’re either refunding the course or you’re not refunding the course.

\n\n\n\n

Bryce:
Exactly. You might as well, if you’re having a credit cost as a software business, just find a solution like that. I’m sure you’ve experienced the thing, both of you, over the years with WooCommerce and WordPress support. Sometimes just to solve it, let them move on, give them a refund rather than try to hold on to 70 or 80% of the money or even 20-30% of the money. Risk covering someone who really has it out for you after that and wouldn’t speak favorably about you.

\n\n\n\n

Katie:
I thought the devices section was interesting. We’ll all have heard many stats way before this report that the majority of online shoppers are using mobile devices. I’ve always kind of ignored that on my own website because we sell WordPress plugins. The vast majority are sitting at their desks on their desktops.

\n\n\n\n

Bryce:
What percent is, in your case?

\n\n\n\n

Katie:
I can’t remember off the top of my head, but it’s like, I don’t know, 70 or 80% or something on desktop, which makes sense. You don’t buy a plugin on your phone, do you? You’re at work.

\n\n\n\n

Bryce:
I hadn’t realized that we had this in the report, I forgot,

\n\n\n\n

but it says it there. Software stores have the most desktop-driven customers with 79% of orders being placed on a desktop device.

\n\n\n\n

Katie:
Which makes sense.

\n\n\n\n

Bryce:
That checks out.

\n\n\n\n

Katie:
For other industries, obviously mobile’s important for my business as well, but it’s more so for things like clothes where people are buying from their sofas and so on. It was interesting seeing that the average order value placed on desktop is significantly higher than people ordering on their mobiles. Even if you are in a mobile-first industry, you do really need to think about those desktop users because even if they’re buying clothes or something that suggests to me that they’re having a serious session of buying clothes, they’re sitting at their computer, got multiple tabs open, it’s a very different experience and they spend more.

\n\n\n\n

Bryce:
That’s a good point. Another common one is if you’re buying an appliance or an electronic product, a lot of those decisions are made at the computer where you can really take the time to research, look at five different tabs and then check out. That’s a kind of trend with a lot of these numbers. A lot of them aren’t as surprising, but the actual level that the number ended up at, in this case, 38 to 62, I didn’t know that until we pulled that. Actually, to be fair, I didn’t realize that the desktop AOV would be that much higher. If you just asked me off the top of my head, I would’ve guessed anecdotally 30-40%, not almost double. I think it just comes down to when you’re doing a high-value order, when you are spending several hundred dollars in a shop, you’re going to probably do it on a computer. Typically they’re going to move to a desktop for those transactions.

\n\n\n\n

Marcus:
Yeah. I also was interested for the same reason in that section. It kind of made me think about my purchasing habits and maybe how important it is for stores to have carts that you can move between mobile and desktop via login or something. I spend a lot of time browsing on my mobile device and I’ll toss things in the cart, but then by the time I’m ready to make a purchase, I might hop over to the computer. I’ve got desktop extensions that help with coupon codes and all of that kind of thing that I can take advantage of that I don’t have on my mobile device. Really a lot of the purchasing, I would guess that I’m not in the minority, that there’s a lot of folks that are browsing on their mobile and then making an actual final purchase on their desktop, especially like you said, with high order value items and orders and stuff. Just being able to, Amazon obviously, right? I’ll toss a bunch of things in an Amazon cart and then, because I’m logged in, I can log back in on the computer and finish that order. The importance of having a system like that, maybe for even smaller stores to be able to jump between devices and keep your cart.

\n\n\n\n

Bryce:
It’s an interesting product idea, really. I think we kind of do that, and a lot of plugins do that in a small way through abandoned cart tracking and being able to send a link that just restores it in one click, which is close. But I’m just thinking about, it’d be quite cool, even just a simple plugin that was just like, send me a link right now just to access this cart on a computer. That would probably have some value rather than being this whole thing to track carts. It can tie into that, but I think just as a core feature, I want to move this cart to a desktop.

\n\n\n\n

Marcus:
Speaking of recovered carts, I also saw in the report that the average order value of recovered carts is about 30% higher than even regular placed orders. The report states it’s because customers tend to add multiple items into their cart before making a decision. Then they get that abandoned cart link and they come back and place the order. What are some good abandoned cart strategies to recover these carts?

\n\n\n\n

Bryce:
Offer an incentive, and I think the incentive should be specific to your store and the situation you’re in. There’s no one size fits all. We kind of lead into this in one of the other pages where we talk about later in the report to do with the AOV of free shipping versus paid shipping orders. Something interesting with that is figuring out where your AOV is. In that case, if we’re looking at the cart report, it’s around 120, which is where the average cart value was when they got placed. Maybe you’d be wanting to incentivize people to spend over 150 and get free shipping or over 150 and get 10% off because at least then you’re increasing your AOV by 40-50% at the cost of a 10-15% discount. I think that’s one way, but otherwise, it’s also about using the moment when you try to recover a cart as a marketing opportunity. It’s not just saying, recover your cart, but maybe you should also add this item based on what you already have in your cart. It ends up being an actual win for the customer because they might discover something that they didn’t know about, and they’re getting a better deal with maybe they’re getting free shipping as well.

\n\n\n\n

Marcus:
I didn’t see in the report numbers on the percentage of stores using abandoned cart recovery versus not using abandoned cart recovery practices. Do you have maybe anecdotal numbers on how many people are actually taking advantage of that?

\n\n\n\n

Bryce:
That’s a good question. Again, in our case, it’s all limited to the scope of Metorik because someone would have to turn on the cart tracking feature. We have then opted to pay extra for our email feature to send an abandoned cart email, which is why we didn’t go too deep into that because it’s just not big enough scale to be too insightful. Of the stores actually adding, anecdotally, it’s like 20-30% of our stores are trying to recover carts, not enough. It’s very common that I’ll meet really successful stores that are doing significant numbers but aren’t really focusing on abandoned cart recovery, but also failed order recovery and really simple actions like that alone will pay for the cost of Metorik or any other plugin or app to do it. You just need to recover several carts and you can recover the cost of the software to do it. It’s worth investing in for almost any business. Again, it depends on the industry and the business and the brand and all those factors. It’s never one size fits all.

\n\n\n\n

Marcus:
Katie, is that something that you guys think about for the plugins? I don’t know how that works with EDD or any of the setup that you guys have. I know that you have demos with InstaWP, and you’re tracking all that stuff too. Is abandoned cart recovery something that you guys talk about?

\n\n\n\n

Katie:
Yeah. I miss Jilt. I know you used to work for that company. That was the best.

\n\n\n\n

Bryce:
Jilt was such a great product.

\n\n\n\n

Katie:
Such a shame. We now use Recapture, which is nowhere near as good as Jilt was, but it kind of does the job. The data isn’t brilliant. It’s pretty basic, but we do recover a lot of carts that way, which as Bryce said, more than pays for Recapture. We also use it for post-purchase emails, like sending a discount code to people a few days after they make a purchase and stuff like that. We do get our money’s worth out of Recapture. There isn’t, for Easy Digital Downloads, a particularly professional abandoned cart solution. I think a lot of mailing list providers like MailChimp and so on integrate with WooCommerce as well as you having your own paid feature, Bryce, as well. Hopefully it’s better for WooCommerce than EDD.

\n\n\n\n

Bryce:
There’s definitely more options for Woo. I don’t think, again, Woo is typically a second-class citizen in a way on every platform. They’ll tend to just do it as an afterthought, so you don’t get maybe enough tracked or accuracy when it comes to carts. A lot of our cart tracking was inspired by Jilt. I think the whole team did such a good job on that product. We took a lot of inspiration from that. Klaviyo and all those apps that do integrate with Woo, MailChimp, they’re going to be thinking about Woo once every few months. It’s not like an active daily thought in how they develop and improve the product. It’s really fun for me to try to prioritize Woo and think, how can I make the best possible product for these merchants that typically aren’t getting anything made for them?

\n\n\n\n

Katie:
On the country and currency section, I thought it was strange that there’s a significantly higher average order value when the customer is not in the store’s default currency. So if it’s a store in the US and they offer in British pounds, then there’d be a higher average order value on average than the US dollars. I can’t think of any reason why. Can you?

\n\n\n\n

Bryce:
Yeah, no, definitely. I think it actually leads into two pages forward where we talk about, or several pages forward where we talk about delivery distances and how people typically spend more when they’re ordering from further away. A lot of it comes down to when you are ordering from a store in a remote area, it’s a bigger deal. You might have to pay more for shipping. It might be something you can do less frequently because of the cost. The average order tends to be higher because of that reason, where they’re trying to maximize that moment where they are making a purchase. It does lead into that idea where stores that offer free shipping end up having a higher AOV, and that can encourage higher spending. If you’re in an international country paying in a different currency, that free shipping could make a difference and make you spend a lot more.

\n\n\n\n

Personally, I do that all the time. Being in Australia, most of the things I’m buying online are from overseas, and I will always spend even double or triple to get free shipping, which isn’t logical in that way, but no one likes

\n\n\n\n

paying for shipping. I don’t want to pay 20 pounds to ship something from the UK. I would much rather just pay 300 pounds and get free shipping, but I get 300 pounds worth of items. It’s a weird thing, but I think a lot of people I spoke to about this report, especially Australian people, but really anyone American ordering from Europe or Europe ordering from America or Asia from anywhere in the world, you want to maximize those purchases to get free shipping, but also it might just not be something you do frequently because you have to wait several weeks for the delivery to come. So you want to spend a bit more instead of something local where you can order several times in a week and it’s not going to be that much of a delay.

\n\n\n\n

Marcus:
I’m an Amazon Prime member, like many folks, at least in the US, probably all over the world, so I’m used to the free shipping. I was going to say, it’s no surprise that free shipping increases the average order value, but also I’m wondering if we’ve all been kind of conditioned to expect free shipping as an option. It shows in the report that about two-thirds of stores are offering it. What advice would you have for the third of stores that are not yet offering free shipping? Is it just a barrier for them?

\n\n\n\n

Bryce:
I don’t remember if we actually had the number of stores that offer free shipping, but I know that 66% of orders did have free shipping, which as a sheer number of orders is significant. But I’m curious, for stores that don’t offer free shipping, is that just a no-brainer that you should offer free shipping? That’ll basically guarantee a higher average order value?

\n\n\n\n

Not necessarily on every order, especially if your shipping costs are high. It’s feasible, but you need to figure out what is your shipping cost. Not just what you’re charging customers, because a lot of stores tend to charge a bit more. What’s your actual cost? What would your cost be if you were able to have double the number of orders because you’re offering free shipping? The cost might come down with that volume. But I would say figure out your cost and then factor that in. If I know my average cost is $9 and my average order is $50, if I could make free shipping over 90 or 80, it’s like I’m getting 30, $40 more revenue at a cost of nine or $10. It typically comes down to that, figuring out where you’re at, but where you want to get to. Free shipping is just a lever to get there. Abandoned cart discounts are another way, multiple different paths, and it depends on the store.

\n\n\n\n

Katie:
That fits quite nicely into the page about delivery distances and where you talk about how far away people are ordering. It looks like the majority of stores are doing proper shipping, and they’re not just delivering pizza places delivering within a few miles. There’s a lot of people delivering, even thousands of kilometers, aren’t there?

\n\n\n\n

Bryce:
Yeah, I think I’m just looking at that report as well. Sure, under a thousand kilometers looks like it’s around 50% of orders. But that’s a significant number of orders that are going a further distance, which is great. That’s what ecommerce is about. It’s about enabling people to buy the items that they normally couldn’t get locally. Being in a pretty remote place like Australia, you really appreciate it. So much stuff I love that I have to get from overseas. In my case, every order is traveling 10,000k or more. That probably brings it up a little bit.

\n\n\n\n

Marcus:
You alone are making up that 3% of orders that travel more than 10,000 kilometers.

\n\n\n\n

Bryce:
In some industries, maybe. I did buy a lot of stuff from the UK recently.

\n\n\n\n

Katie:
I never knew that about Australia.

\n\n\n\n

Bryce:
Of course, we have so many amazing Australian brands and products and companies to buy from, but if you’re into a niche thing, I really love synthesizers. A lot of that’s not coming from Australia or records as well. They’re coming from America, Japan, places like that.

\n\n\n\n

Katie:
I have a similar issue in Spain. Nearly everything is not available from Spain and I need to order it from elsewhere. So then there is that, depending on where you live.

\n\n\n\n

Bryce:
It goes back to that if you are ordering from somewhere domestically in Spain, you don’t need to really maximize that order as much as you are ordering from the states and have to incur shipping. You’d probably want to add a couple more items because you’re not going to make that order from the US every week, but you might do that domestically.

\n\n\n\n

Katie:
Well, thank you so much, Bryce. That’s been really interesting, and I think it’s given us some good perspectives on WooCommerce that we never had access to before. So that’s really helpful. Thank you so much. Before we finish, can you tell us where we can find you online and also where we can read the report in full?

\n\n\n\n

Bryce:
Yeah, of course. For me, I’m on Twitter at BryceAdams. I don’t tweet much, but I’m trying to be better and taking a lot of inspiration from you, Katie, to try to engage more. The report is on Metorik at https://metorik.com/woocommerce-insights. I hope people love it and really let us know your feedback because if there are metrics that people want or would find useful for their business, we want to include those next year. A lot of this was just done on what we thought people would want, but we really do want to build it for not just our customers, but the WooCommerce community. It’d be great to hear more about what numbers would be of value to them.

\n\n\n\n

Katie:
Excellent. Well, thank you so much.

\n
\n\n\n\n\n

In this episode of Woo BizChat, hosts Marcus Burnette and Katie Keith chat with Bryce Adams, founder of Metorik, to discuss his recently published first Metorik Insights Report for WooCommerce.

\n\n\n\n

The deep dive conversation spans a variety of topics, including the average age of WooCommerce stores, the impact of COVID-19 on ecommerce, and the significance of tracking costs and profits.

\n\n\n\n

Bryce shares valuable insights on the challenges and opportunities faced by WooCommerce store owners, shedding light on the trends and patterns observed across thousands of stores using Metorik’s analytics and email automation tools.

\n\n\n\n

Download the Metorik Insights for WooCommerce

\n\n\n\n

Highlights

\n\n\n\n

Bryce discusses the impact of COVID-19 on ecommerce, noting significant growth in existing stores during the pandemic.

\n\n\n\n

The need for better integration of cost and profit tracking features in WooCommerce core is highlighted.

\n\n\n\n

Prevalence of Elementor and Classic Editor among top themes and plugins in WooCommerce stores is discussed.

\n\n\n\n

Continued reliance on PHP 7.4 in many WooCommerce stores is noted.

\n\n\n\n

Successful WooCommerce stores often have numerous active plugins and subscriptions, leading to higher costs.

\n\n\n\n

Order milestones are explored, revealing why only a small percentage of stores reach a million orders.

\n\n\n\n

Strategies for abandoned cart recovery are covered, including offering incentives and using recovery attempts as marketing opportunities.

\n\n\n\n

Recovered carts typically have higher average order values, emphasizing the importance of effective recovery strategies.

\n\n\n\n

The role of free shipping in boosting average order values is examined.

\n\n\n\n

The impact of delivery distances on ecommerce purchasing behavior is discussed, with insights into how customers maximize their purchases.

\n\n\n\n

Links

\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2024 08:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"HeroPress: Voices Of WordCamp Europe: Josephine (Rahissa) Ngo Nonog and Herman Ngembu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7182\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://heropress.com/voices-of-wordcamp-europe-josephine-rahissa-ngo-nonog-and-herman-ngembu/#utm_source=rss&utm_medium=rss&utm_campaign=voices-of-wordcamp-europe-josephine-rahissa-ngo-nonog-and-herman-ngembu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:836:\"\"\"

\n\n\n\n

A big goal of mine was to meet people for the first time. Rahissa and Herman fit the bill. I saw them across the room and simply asked if I could interview them.

\n\n\n\n

They came to Italy from Cameroon as students and someone said they should try WordCamp. I’ll let the interview tell the rest of their story.

\n\n\n\nJosephine (Rahissa) Ngo Nonog and Herman Ngembu Interview\n\n\n

The post Voices Of WordCamp Europe: Josephine (Rahissa) Ngo Nonog and Herman Ngembu appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2024 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Press Release: Do the Woo 4.0 Launches at WordCamp Europe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=7063\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/press-release-do-the-woo-4-0-launches-at-wordcamp-europe/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5714:\"

For Immediate Release

\n\n\n\n

Do the Woo 4.0 Official Launch: Elevating Voices in the WordPress Community

\n\n\n\n

WordCamp Europe, June 9, 2024 — We are thrilled to announce the official launch of Do the Woo 4.0, marking a significant milestone in our journey to build a vibrant community for WordPress and WooCommerce builders and businesses. This launch coincides with the first day of WordCamp Europe.

\n\n\n\n

Since 2018, Do the Woo has evolved through continuously, growing both in content and community engagement. The decision to move Do the Woo to its own site in late 2022 was the first major step for the future. As we entered 2023, our mission began to extend beyond WooCommerce to encompass the broader WordPress ecosystem. The idea was simple: elevate voices and create a podcast by the community, for the community.

\n\n\n\n

At the beginning of 2023, planning for the new started and in October, we solidified our efforts, with the goal of showcasing the diverse range of the Do the Woo podcast channel with our shows. With significant support from WordPress.com, this vision became a reality, culminating in a redesigned site that went live in March. 

\n\n\n\n

This week, we start our prelaunch. The official launch will be on June 13, 2024, when we will proudly unveil the fully developed Do the Woo 4.0.

\n\n\n\n

Key Features of Do the Woo 4.0

\n\n\n\n

Comprehensive Podcast Lineup: 

\n\n\n\n

With the official launch, we now have a total of 12 shows and 26 hosts, including our latest addition focused on enterprise WordPress and open-source software (OSS). Each show has its own dedicated page, allowing listeners to learn about the series, explore past episodes, and subscribe to their favorite content.

\n\n\n\n

Enhanced User Experience: 

\n\n\n\n

Our top priority was to provide an easy way for listeners to subscribe to the shows they want. They can subscribe to individual shows or opt for the full Do the Woo feed if they want to stay updated on all content.

\n\n\n\n

Global Community Representation: 

\n\n\n\n

The About page features a dynamic map showcasing our hosts, sponsors, and guests from around the world. This interactive feature highlights the global reach and diverse backgrounds of our contributors.

\n\n\n\n

Support for Hosts

\n\n\n\n

We’ve introduced a new support option on our site, allowing listeners to support specific shows and their volunteer hosts. This initiative aims to sustain the high-quality content produced by our dedicated team and support them in their travels and contributions to the community.

\n\n\n\n

Special Acknowledgments

\n\n\n\n

Partners: 

\n\n\n\n

We extend our heartfelt thanks to WordPress.com, WooCommerce, and Jetpack for their unwavering belief in our community and the incredible support they have provided.

\n\n\n\n

Sponsors: 

\n\n\n\n

Do the Woo’s existence and growth are made possible by our sponsors. We express our deepest gratitude to our current sponsors: Airwallex, Avalara, Cloudways, GoDaddy, Hostinger, Omnisend, and Weglot. Their commitment to our community is invaluable.

\n\n\n\n

Podcast episodes for the launch week scheduled to go out

\n\n\n\n

June 10: Do the Woo 4.0, This Week at WordCamp Europe

\n\n\n\n

June 11: A New Show, Scaling Enterprise, WordPress and OSS

\n\n\n\n

June 12: A Pre-Launch Chat with Jay Walsh at WooCommerce

\n\n\n\n

June 13: Thinking About Our Launch on WCEU Contributor Day

\n\n\n\n

June 14: Do the Woo Podcast Channel 4.0 Official Launch

\n\n\n\n

June 15: Learn About All the Shows on the Do the Woo Podcast Channel

\n\n\n\n

Join Us

\n\n\n\n

We invite you to explore the new Do the Woo 4.0 at DotheWoo.io. Whether you are a developer, a business owner, or simply a WordPress enthusiast, there is something for everyone. Take a moment to browse through the site, subscribe to your favorite shows, and consider supporting our hosts.

\n\n\n\n

For more information, to be featured on a podcast, or to discuss sponsorship opportunities, please contact BobWP directly. We have exciting plans ahead and look forward to sharing them with you.

\n\n\n\n

Contact:

\n\n\n\n

BobWP

\n\n\n\n

Email: info@dothewoo.io

\n\n\n\n

Website: https://dothewoo.io

\n\n\n\n

Thank you for being part of our community and for your continued support. We can’t wait to see where this journey takes us next.

\n\n\n\n

###

\n\n\n\n

End of Press Release

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 30 Jun 2024 09:30:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"bbPress: bbPress 2.6.11 is out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=240802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://bbpress.org/blog/2024/06/bbpress-2-6-11-is-out/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1322:\"

bbPress 2.6.11 is a minor release that fixes 13 relatively small bugs reported over the past few years.

\n\n\n\n

Most notably, it improves HTML output escaping in the topic & reply forms (nothing serious, just some entities showing up where they should not), prevents a bunch of different debug notices from filling up error logs, and also updates some code to avoid deprecated notices from testing with the latest version(s) of WordPress itself.

\n\n\n\n

All of these fixes have already been merged up into the 2.7 development branch.

\n\n\n\n

If you’re paying really close attention, you may be wondering “hey John, what happened to 2.6.10?”

\n\n\n\n

Well… I botched it. It’s been a while, ok? \"🤦‍♂️\" And 2.6.11 is good to go.

\n\n\n\n

Huge thanks to Eusebiu, Kevin, and (as always) Robin W for being super fast with their feedback and just generally awesome!

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 17:58:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"Gutenberg Times: 796 Block themes, alternatives to custom block dev, game’s a changing for custom fields — Weekend Edition 297\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=29017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://gutenbergtimes.com/796-block-themes-games-a-changing-for-custom-fields-more-dev-notes-weekend-edition-297/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21458:\"

Hi there,

\n\n\n\n

I love the excitement of a major WordPress release! All the new features and update coming to WordPress. The theme building becomes easier and easier to provide great design solutions for content creators and site builders.

\n\n\n\n

You’ll find lots of information in these editions and I also highlight a few upcoming events, two virtual one in-person. And recordings of previous events, so you can catch up on Developer Hours and Hallway Hangouts.

\n\n\n\n

Yours, 💕
Birgit

\n\n\n\n

In this week’s This Week in WordPress #299 “We have all the Birgit’s and Remkus”. It again was a fun show and great to catch up with Birgit Olzem, Remkus de Vries and Nathan Wrigley on WordCamp Europe, and the upcoming WordPress 6.6 release.

\n\n\n\n\"\"\n\n\n\n
\n\n\n\n

If you want to learn more about my non-WordPress self, Bud Kraus and I chatted on the Seriously, Bud? Podcast episode

\n\n\n\n
\n
Table of Contents
    \n
    \n\n\n\n

    Developing Gutenberg and WordPress

    \n\n\n\n

    Upcoming Events

    \n\n\n\n

    July 9th, 2024, 15:00 UTC – Developer Hours: Editor unification and extensibility in WordPress 6.6.

    \n\n\n\n

    In this Developer Hours session, Nick Diego and Ryan Welcherwill explore how these updates can streamline your development process and enhance extensibility like never before. You will learn how to:

    \n\n\n\n\n\n\n\n\"\"\n\n\n\n
    \n\n\n\n

    WordCamp Canada will take place between July 11 and 13, 2024 Ottawa, ON Canada and they published their fabulous schedule. If you can join them in person, here are a few block related talks to attend. They will also be recorded and will make their way to WordPressTV and YouTube.

    \n\n\n\n\n\n\n\n
    \n\n\n\n

    July 23, 2024, at 15:00 UTC Developer Hours: Do you really need a custom block? Let’s explore alternatives. Nick Diego and JuanMa Garrido will discuss the following scenarios

    \n\n\n\n\n\n\n\n\"\"\n\n\n\n

    WordPress 6.6

    \n\n\n\n

    This week, the release squad unleashed WordPress 6.6 RC 1. It’s now high time to test your themes, plugins, and sites for compatibility. If you want to explore what is new in WordPress 6.6, one way is outlined in the post to Help test WordPress 6.6.

    \n\n\n\n
    \n\n\n\n

    Devnotes have been published together with the WordPress 6.6 Field Guide

    \n\n\n\n\n\n\n\n\"Draft\n\n\n\n
    \n\n\n\n

    Anne McCarthy also posted the Source of Truth on WordPress 6.6 features. It again is a great source to learn about every feature that is coming to a WordPress instance near you on July 16, 2024, tag for theme authors, plugin authors, end users, and enterprise.

    \n\n\n\n

    🎙️ Latest episode: Gutenberg Changelog #103 – Create Block Theme Plugin, WordPress 6.6, Gutenberg 18.7, and Updates from the Training Team  with Nadia Maya Ardiani

    \n\n\n\n
    \n\n\n\n

    In his Design Share #58 (Jun 3-Jun 14), Joen Asmussen shared the work by the WordPress design team in the previous two weeks, among them

    \n\n\n\n\n\n\n\n

    In Design Share 59 (Jun 17-Jun 28), Asmussen highlighted:

    \n\n\n\n\n\n\n\n

    Asmussen also lists helpful links to Figma Design Library, GitHub tracking issues and issues that need design work and feedback. Check in if you’d like to contribute with feedback and PRs.

    \n\n\n\n\"\"Mockup of possible screen to add Custom Fields in a very early exploration\n\n\n\n
    \n\n\n\n

     “Keeping up with Gutenberg – Index 2024” 
    A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023

    \n\n\n\n

    Plugins, Themes, and Tools for #nocode site builders and owners

    \n\n\n\n

    Did you know that there are now almost 800 block themes available in the WordPress Theme Directory? 796 is today’s number. The most themes were built by the designers at Automattic: 183 themes, of which the latest two are Sunderland and Otis. The designs from all theme designers become more and more interesting, for all kinds of use cases. If you haven’t done it recently, get our favorite beverage and start a browsing tour. You might be amazed what the Theme directory has to offer, especially after the refresh of the design and the new preview screens for patterns and style variations.

    \n\n\n\n\"\"\n\n\n\n
    \n\n\n\n

    Bud Kraus explored the Block editor’s Command Palette and takes you along for the tour in his post Using the WordPress Command Palette to Work With Faster and Smarter. He commented on X: “Even after writing this for Hostinger I still hardly use it. Maybe I am waiting for a more mature tool that we should see once the entire WP Admin gets overhauled.” What do you think?

    \n\n\n\n
    \n\n\n\n

    Jamie Marsland summarized the most important features in his video: WordPress 6.6 – Huge Changes Coming Soon!

    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \n\n\n\n

    WPBeginner‘s editorial staff posted What’s Coming in WordPress 6.6 (Features and Screenshots) as a quick overview what will make it into the new version.

    \n\n\n\n

    Theme Development for Full Site Editing and Blocks

    \n\n\n\n

    Justin Tadlock and Nick Diego shared What’s new for theme developers in WordPress 6.6 in this week’s Developer Hours. The recording is available on YouTube and Presentation resources were shared in this Google Doc. “WordPress 6.6 will be released on July 16, 2024, bringing many exciting new features for theme developers. In this session, we explore how these updates can enhance your themes and streamline your development processes. Key highlights include:

    \n\n\n\n\n\n\n\n
    \n
    \n
    \n\n\n\n
    \n\n\n\n

    Last week I already shared the short video by Beatrix Fialho, now you can follow the whole discussion via the Recap Hallway Hangout: Theme Building with Playground, Create-block-theme plugin, and GitHub with shared resources, step-by-step instructions, a recording of the full discussion and the transcript.

    \n\n\n\n
    \n\n\n\n

    Carolina Nymark, core contributor and keeper of fullsiteediting.com updated lessons on her site to include the most recent changes in WordPress.

    \n\n\n\n\n\n\n\n

    Building Blocks and Tools for the Block editor.

    \n\n\n\n

    Bernie Reiter published a Proposal: Block Variation Aliases for WordPress 6.7 and request feedback on a new method to add Block variations specific class names in front end and database. It will have technical ramification regarding backwards compatibility.

    \n\n\n\n
    \n\n\n\n

    Brian Coords just released a video on WordPress 6.6 is changing the game for Custom Fields in which he walks you through the power of block binding and locking down templates for editing. Later on, he also shows you how to Block Bindings with a block variation. Coords also provides example code.

    \n\n\n\n

    Need a plugin .zip from Gutenberg’s master branch?
    Gutenberg Times provides daily build for testing and review.

    \n\n\n\n

    Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience

    \n\n\n\n

    \"GitHub

    \n\n\n\n

    Questions? Suggestions? Ideas?
    Don’t hesitate to send them via email or
    send me a message on WordPress Slack or Twitter @bph.

    \n\n\n\n
    \n\n\n\n

    For questions to be answered on the Gutenberg Changelog,
    send them to changelog@gutenbergtimes.com

    \n\n\n\n
    \n\n\n\n

    Featured Image:

    \n\n\n\n
    \n\n\n\n

    Don’t want to miss the next Weekend Edition?

    \n\n\n

    We hate spam, too, and won’t give your email address to anyone
    except Mailchimp to send out our Weekend Edition

    Thanks for subscribing.
    \n\n\n
    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 16:54:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Do The Woo Community: Tips for the Single WordPress Plugin Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=7127\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/tips-for-the-single-wordpress-plugin-builder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3646:\"

    In a recent episode on Do the Woo, Mark Westguard from WS Form talked about his journey and what it means to run a successful plugin shop single-handedly.

    \n\n\n\n

    Here are 12 tips taken from that episode.

    \n\n\n\n

    Community Involvement

    \n\n\n\n

    Engage with the WordPress community by attending events like WordCamps, and consider sponsoring these events to build a network and gain support from other developers and users.

    \n\n\n\n

    Documentation

    \n\n\n\n

    Develop a comprehensive knowledge base for your plugin. Write articles for frequently asked questions to reduce support requests and provide instant answers to users.

    \n\n\n\n

    Customer-Driven Development

    \n\n\n\n

    Focus on customer feedback to guide the development of new features. Use a feature request page where users can submit and vote on new ideas.

    \n\n\n\n

    Support Automation

    \n\n\n\n

    Automate support as much as possible. Use tools to recommend knowledge base articles based on user queries and streamline the support process.

    \n\n\n\n

    Efficient Time Management

    \n\n\n\n

    Prioritize tasks by balancing between reactive updates (e.g., API changes) and proactive development of new features based on customer demand and potential business impact.

    \n\n\n\n

    Collaborate with Third Parties

    \n\n\n\n

    Work with third-party developers and services to extend the functionality of your plugin. This helps in managing integrations and keeping your plugin up-to-date.

    \n\n\n\n

    Profitability Focus

    \n\n\n\n

    Maintain a high level of profitability by being cautious about hiring. Consider hiring only when the workload becomes unmanageable and impacts personal life significantly.

    \n\n\n\n

    Multi-Function Roles

    \n\n\n\n

    When hiring, look for individuals who can handle multiple roles, including support, development, and representation at events, to maximize efficiency and reduce costs.

    \n\n\n\n

    Self-Service Tools

    \n\n\n\n

    Develop tools that allow users to solve their problems without contacting support. This includes automated responses and a robust support form that guides users to the right resources.

    \n\n\n\n

    Selective Feature Development

    \n\n\n\n

    Not all feature requests should be built. Focus on those that benefit a broader audience and align with your plugins primary use cases. Niche or highly specific requests can often be handled through custom code or third-party services.

    \n\n\n\n

    Marketing and Visibility

    \n\n\n\n

    Actively market your plugin by demonstrating its capabilities and forming relationships within the WordPress community. Participate in podcasts, write articles, and engage on social media.

    \n\n\n\n

    Balance Work and Personal Life

    \n\n\n\n

    Ensure your work does not negatively impact your personal life. Be mindful of your working hours and make adjustments when necessary to maintain a healthy work-life balance.

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: 12 Public Relation Tips for WordPress and WooCommerce Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6707\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/12-public-relation-tips-for-wordpress-and-woocommerce-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3590:\"

    In a recent Woo BizChat, hosts Emma and Adam talked about the benefits of PR for WordPress specific businesses. Adam is a PR specialist that is founder of Cirrus Influence.

    \n\n\n\n\n\n\n\n

    Listen to the full episode here: Adding Public Relations to Your WordPress or Woo Biz Stack

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: 10 Ways to Boost Your WordPress Affiliate Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6726\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://dothewoo.io/10-ways-to-boost-your-wordpress-affiliate-program/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3224:\"

    Creating and running an affiliate program for your WordPress products or services can be overwhelming and challenging. Alex Standiford is asking everyone to rethink affiliate programs. Here are 10 ideas that may spark something new in your affiliate program.

    \n\n\n\n
      \n
    1. Consider Diverse Performance-Based Programs: Look beyond traditional affiliate models and consider partnerships that offer payouts based on specific performance metrics, such as driving traffic, customer satisfaction, or content engagement, in addition to sales.
    2. \n\n\n\n
    3. Focus on Quality Over Quantity: Rather than targeting a large number of affiliates, aim to work closely with a smaller group of committed affiliates who are aligned with your brand and have the potential for significant conversions.
    4. \n\n\n\n
    5. Develop Personalized Partnerships: Foster stronger relationships with affiliates by providing personalized support, workflow insights, and one-on-one consultations to maximize their success.
    6. \n\n\n\n
    7. Explore Profit Margin-based Payouts: Determine payout percentages based on your profit margins, ensuring that the compensation aligns with the value brought in by affiliates.
    8. \n\n\n\n
    9. Emphasize Collaboration Among Affiliates: Allow for multiple affiliates to earn credit for the same sale, encouraging collaboration and teamwork among the affiliates rather than fostering competition.
    10. \n\n\n\n
    11. Evaluate the Long-term Commitment of Affiliates: Understand the level of commitment required for your products or services, especially for items with significant user loyalty, such as recurring payment services, and consider tailored affiliate approaches for each category.
    12. \n\n\n\n
    13. Avoid Over-reliance on Volume-based Traffic: Challenge the effectiveness of purely volume-based traffic and explore more nuanced and sustainable strategies to create a more targeted and engaged audience.
    14. \n\n\n\n
    15. Encourage Allyship and Teamwork Among Affiliates: Foster an environment where affiliates can work together as allies, leveraging each other’s strengths to attract and convert traffic, encouraging specialized roles and collaboration for improved performance.
    16. \n\n\n\n
    17. Consider Tailored Affiliate Programs: Explore the possibility of customizing affiliate programs to match specific niches, addressing the limitations of generic affiliate approaches and contributing to improved partnership outcomes.
    18. \n\n\n\n
    19. Prioritize In-depth Support and Education: Provide comprehensive resources, insights, and dedicated support to affiliates, setting up workflows to guide them through effective strategies and enable overall success.
    20. \n
    \n\n\n\n

    You can learn about Alex’s WordPress plugin SirenAffilates.com and / or listen to the full episode on Do the Woo: Reimagining Affiliate Programs for Your Woo Biz with Alex Standiford

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: 12 Email Marketing Tips for WooCommerce and WordPress Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6246\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/12-email-marketing-tips-for-woocommerce-and-wordpress-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6257:\"

    In a podcast episode of Woo BizChat we had email marketing expert Greg Zakowicz from Omnisend chatting with Emma and Adam. Although it’s recommended that you listen to the full episode, Email Marketing for Woo and WordPress Builders and Businesses with Greg Zakowicz , here are 12 tips to help with your WordPress or WooCommerce business, whether you create products or provide services.

    \n\n\n\n

    Embrace Automation

    \n\n\n\n

    Greg emphasizes the effectiveness of automated emails, revealing that 41% of all email marketing orders sent by Omnisend customers came from automated messages. Automation allows you to send targeted and relevant messages based on the user’s behavior, making it a powerful tool for increasing engagement and conversions.

    \n\n\n\n

    Focus on High-Intent Automated Messages

    \n\n\n\n

    Greg highlights specific automated messages that drive results, including welcome messages, browse abandonment, and cart abandonment emails. These messages are high-intent and directly tied to user behavior, making them more likely to lead to conversions.

    \n\n\n\n

    Utilize Social Proof in Subject Lines

    \n\n\n\n

    Greg suggests that subject lines featuring social proof, such as top-rated products or five-star reviews, can capture attention. Incorporating elements that highlight the quality and popularity of your products or services can make your emails more appealing to recipients.

    \n\n\n\n

    Experiment with Emojis in Subject Lines

    \n\n\n\n

    Despite not being a new concept, Greg emphasizes the continued effectiveness of using emojis in subject lines. Emojis can help break up the visual monotony, especially on mobile devices, making your emails stand out in crowded inboxes.

    \n\n\n\n

    Optimize for Mobile and Visual Appeal

    \n\n\n\n

    Greg discusses the importance of visual elements, white space, and breaking up text to make emails visually appealing. Since many users access emails on their mobile devices, optimizing for mobile responsiveness and creating visually engaging content can enhance the overall user experience.

    \n\n\n\n

    Clean Inactive Contacts Regularly

    \n\n\n\n

    Greg emphasizes the importance of cleaning inactive contacts from your email list to maintain deliverability and engagement rates. Sending emails to inactive contacts can negatively impact your sender reputation and result in lower inbox placement. Regularly clean your list, preferably twice a year, to remove subscribers who haven’t engaged in a significant period.

    \n\n\n\n

    Understand and Monitor Email Deliverability Requirements

    \n\n\n\n

    Stay informed about email deliverability requirements, such as authentication protocols like DKIM, DMARC, and SPF. Greg mentions that Google and Yahoo have implemented new deliverability requirements, and compliance with these standards is crucial for proving your legitimacy as a sender and avoiding potential deliverability issues.

    \n\n\n\n

    Benchmark Against Yourself, Not Just Industry Averages

    \n\n\n\n

    While industry benchmarks can provide useful insights, Greg advises marketers to primarily benchmark against their own performance. Focus on improving your open rates and click-through rates over time rather than comparing yourself solely to industry averages, as different list-cleaning practices can significantly impact these benchmarks.

    \n\n\n\n

    Leverage Competitive Differentiators in Email Templates

    \n\n\n\n

    When creating email templates, highlight competitive differentiators such as free shipping, fast delivery, and customer service policies. Templatize this information to make it highly visible in your emails, catering to the specific intent of users who are looking for such value propositions when deciding whether to engage with your email content.

    \n\n\n\n

    Templatize Social Proof and Value Propositions

    \n\n\n\n

    Incorporate social proof, customer testimonials, and value propositions into your email templates. Whether it’s showcasing five-star reviews, testimonials about great customer service, or emphasizing hassle-free returns, templatizing this content can build confidence and address potential obstacles to conversion, ultimately increasing click-through rates.

    \n\n\n\n

    Implement Automated Retargeting Sequences

    \n\n\n\n

    Greg emphasizes the importance of setting up automated retargeting sequences based on user behavior. Whether it’s a browse abandonment or cart abandonment, these automated sequences can significantly improve the chances of reengaging with users who have shown interest in your products. By strategically utilizing automation, you can “feed the wolf” over time, increasing the likelihood of recapturing customers at a lower cost compared to other retargeting methods.

    \n\n\n\n

    Use AI Tools for Subject Line Generation

    \n\n\n\n

    Greg recommends using AI tools, such as the subject line generator provided by Omnisend, to overcome creative blocks when crafting email subject lines. AI-powered tools can offer a fresh perspective and propose creative subject lines that may not have been considered. This can be particularly useful in ensuring that your subject lines stand out and capture the attention of your audience, contributing to higher email open rates

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Do The Woo Community: Marketing WordPress Products\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/wordpress-product-marketing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2248:\"

    In a recent Emerging Tech episode David Lockie had the chance to talk about a lot of WordPress with Noel Tock plus catch up on what he is doing. This is the final thought coming from Noel, and I would recommend checking out the entire conversation: Learn WordPress Product Marketing Deeply with Noel Tock.

    \n\n\n\n

    On Noel’s Mind

    \n\n\n\n

    I’d say what I talked about now is probably the thing that bugs me the most or lives rent free in my mind is that amazing effort and energy that everyone puts into WordPress, but then is trying to fit through a pipe that’s way too small in terms of product marketing is never really displayed in its full glory to the rest of the market in a very specialized way.

    \n\n\n\n

    And it’s a struggle to you start thinking, are you delusional because you’re talking to an enterprise client when they say WordPress doesn’t do this, doesn’t do that. And you’re sitting there thinking, am I just like a WordPress advocate or do I actually know what I’m talking about?

    \n\n\n\n

    So I think in many ways, when Matt, years ago, 2015, what was it 2015 when he said learn JavaScript deeply, I think now it’s learn marketing deeply. That’s what I think should be WordPress’s mission for the next two years because we are in a time when we’ve gone boom bust and we have an opportunity to seize right now as companies are looking at down rounds and they’re laying off staff.

    \n\n\n\n

    One of the first places they cut is R&D and innovation, and we have an opportunity to catch up on that ground. Not that we have to necessarily build a lot of stuff at all. I don’t even think we have to build that stuff, but I think we have to just do a much better job of product marketing at three, four or five levels of niches. And to me, it doesn’t mean that those couple niches define what WordPress is. There are just merely abstractions and narratives that sit on top of the WordPress we know today. It’s not trying to change what WordPress is.

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Do The Woo Community: A WordPress Project Funding Solution and Where it Starts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6181\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/a-wordpress-project-funding-solution-and-where-it-starts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2682:\"

    In a deep discussion around supporting essential projects in the WordPress space Tom Willmot and Joost de Valk explored the issues around the topic. Specifically how does this get solved?

    \n\n\n\n

    As they described a particular project that you can learn more about in the full episode, it led into many paths that led to the need for change. For contributors keeping up all of these essential projects and in reality, are like saying “Hey, y’all pay up for what I’m doing for you here for free.”

    \n\n\n\n

    Joost opened it up with this thought it it went further into who should really be stepping up.

    \n\n\n\n

    In a perfect world….

    \n\n\n\n

    Joost: But it also opens up a wider discussion about how do we support the tools that we use that are not like the tools that end users may be using, but the tools that we use to build those. It’s this whole ecosystem. And are we even aware of the fact that we’re using this code? Well, I think it’s a problematic thing, and I have my opinions on how we should solve this in an ideal world. Unfortunately, I’m not the one who gets to decide that.

    \n\n\n\n

    So in my ideal world, we would have a WordPress app store where WordPress plugins, the plugin repository would not just be for free plugins, but would also be for commercial plugins. And we take a percentage of sales there and put that money to work on stuff like this and lots of other things. I think that would make WordPress better for everyone. We could how we want plugins to sell their things, and we couldn’t enforce all the proper legalities there that are needed, and we could fund the companies and the projects that we need that we all need to, well, to sustain our work.

    \n\n\n\n

    And there is so much more…

    \n\n\n\n

    Well, that was the perfect world for Joost. But Tom and Joost went on to talk about other ways of funding these projects and who should be stepping up. Of course, it’s not even that simple.

    \n\n\n\n

    Listen to the full episode Funding WordPress Projects with Tom Willmot and Joost de Valk here. 

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Do The Woo Community: Starter WooCommerce Performance Tips for Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6174\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://dothewoo.io/starter-woocommerce-performance-tips-for-developers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10033:\"

    In a Woo DevChat, I asked Sabrina Zeidan and Uros Tasic to give their insights into WooCommerce performance. One suggestion that Sabrina made was that they come up a a few step for a developer who is not performance expert but they notice or they feel like you feel like the website is acting slow.

    \n\n\n\n

    They don’t know whether it’s fronted or backend. It was fine a month ago and now it’s acting weirdly.

    \n\n\n\n

    Using a Query Monitor

    \n\n\n\n

    The first thing I would recommend is so easy. So this is not a developer tool, but it’s easy if you can add a plugin that is a query monitor. It can show you if there is some error on the site or if there are some slow queries to the database. So again, I know that there are developers going to say you can see slow queries, MySQL queries on the server. So that is advanced thing, the simplest thing, add a plugin and track, not the best thing, but you can see there if there are some issues.

    \n\n\n\n

    Checking the Logs

    \n\n\n\n

    If a query monitor doesn’t reveal anything or important, then I would suggest now depending on your hosting and server provider, you can check logs.

    \n\n\n\n

    Let’s say for the people that are not experienced, there are two types of logs. One is the error log and another one is access log. So if you don’t know when something is happening or what kind of are pages causing it in access log, you can see that. For example, in the last hour you got 1000 views of specific page on the website that has a newsletter and some feed or something and then you can assume that something on that page is creating a problem and continue from there. In that case you can create test page with only one block or with only feed to see if that is going to behave slowly and then you can eliminate one by one. This is if the page is making a problem. Then you can see also if there is some current jobs or W-P-C-L-I commands and then you can address those.

    \n\n\n\n

    For example, in multiple cases if you have a big database doing a backup, it can slow down the site because the database will be locked and then the site cannot do anything. So again, you can move backups, but you can see those details in the access login error log of the website. Again you cannot see everything there.

    \n\n\n\n

    Using More Advanced Tools

    \n\n\n\n

    If you want to go more advanced and I want to be actively doing on performance, there are tools that I would recommend that you can use New Relic, you can use Xdebug or you can use Blackfire. All those three tools are testing your code performance. You can record the whole page and then it’ll tell you exactly how many queries, what function is called, how many times the function is called, which file is, and how it’s behaving in the background for you.

    \n\n\n\n

    From there you can then pick saying, okay, this plugin is taking five seconds to load on this specific page to I really need this plugin or can this be changed? Can I introduce some caching plugin, can I? But those are a little bit more advanced tools but I would spend some time to get familiar with those similar tools.

    \n\n\n\n

    So just once more, this is Blackfire, New Relic and Xdebug. Some of them are free, some of them have a paid plan. So again, you don’t need all three but you can start with at least one. And then again, if you want to test the front end and just the Google Page speed, you can use Lighthouse or Google speed may have some suggestion.

    \n\n\n\n

    To sum it up, first one is query monitor, easy, and there are good things about it. It’s pretty user friendly. You can just see what’s happening and if something is red, you know that strong. So it’s easy to find the bottlenecks.

    \n\n\n\n

    The second one would be check the logs on the server, both access and error logs and then PHP errors or something like that.And the third one is use one of the tools like Blackfire, New Relic or Xdebug and again you’ll find issues with plugins but then this is awareness I’m talking about. But yes, what would your steps be?

    \n\n\n\n

    Sabrina’s perspective as a performance engineer

    \n\n\n\n

    I will share the steps when I’m hired to work on a websites, but steps that someone who is not performance expert but just a developer can take to identify what’s happening and if something is happening because this is the beginning of the process. So let’s say you just notice something is off. I would recommend to start with narrowing down the problem if it might be overwhelming for the person who is not used to a lot of performance information.

    \n\n\n\n

    Google search console

    \n\n\n\n

    I would recommend to first identify if the problem exists and if so where it does exist. I would recommend to go first thing to Google search console and check your core web vitals data and see if there are any issues there. Google Search console is place where in page size there is a small thing where you have core web vitals assessment. This is real field data from your website, but it comes from the bigger source of information and the more detailed report can be found in Google search console.

    \n\n\n\n

    There is a tab there called core vitals. You can go there and check if your website is passing core vitals assessment. If the website is passing core web vitals assessment, especially on LCP and first input delay, which will soon be replaced with INP interactive to the next paint. So if it passing on this two, it means that real users don’t have problems with speed on your website on front end, but if at the same time you have the feeling that something is off, something is loading slowly, I would try to differentiate probably if it’s happening only when you locked in, if it’s happening for locked in users and it’s not happening for locked out users and then you will have the answer.

    \n\n\n\n

    If it’s not happening for locked out users, there are no issues with core web vitals, then this issue most likely will be connected with something on backend that is cached or mitigated by something on front end for locked off users. Okay, this is already a lot of information for us. We already know that we should be looking in the backend because it’s happening in the backend and from this point I would recommend install query, monitor and looking there. But again, when you install query monitor, there is a huge amount of information there. If you don’t know where you are looking at, it’s easy to get lost. And some websites have a lot of issues. This happens to my clients a lot. They see that the website have a lot of issues, there are errors, there are slow queries, there are a lot of sales and scripts loading.

    \n\n\n\n

    There are so many issues I would recommend to pinpoint what is the most easy thing to fix and the most easy things to fix are usually basic ones, First it’s PHP version. It would be so easy to, it’s really, really easy to fix. You just upgrade server to a higher PHP version test there. If all plugins play well with it, you keep it going.

    \n\n\n\n

    Memory limits

    \n\n\n\n

    Now the thing that is often overlooked, there is a theme that we have in WordPress that is called Ability memory limit and by default it’s set to 40 megabytes and I see a lot of cases when this default number hasn’t been changed. For years the site was surviving somehow, but now it’s not because 40 megabytes, it’s very, very low number.

    \n\n\n\n

    But it happens often. I see that they are upgrading their hosting, they’re paying for say two gigabytes of RAM on their hosting, but there is a limit set in their WordPress to 40 gigabytes. So they never use what they’re paying for. By the way query monitor is showing that thing. So if memory limit is set to the default to 40 megabytes, you’ll see that in query monitor. That would be another very easiest thing to fix. This is something that you should be able to fix yourself and if after that the problem doesn’t disappear, that that is a sign there is a problem that this is a sign you should seek for help.

    \n\n\n\n

    Misleading object caching

    \n\n\n\n

    Object caching can be a very good idea and query monitor might be showing that as well. What it shows you sometimes can be misleading. In query monitor it says object caching plugin is not in use and it’s a little bit misleading because you should check numbers next to this line seeing so many hits and so many cached and if you have from 100%, you have 95% cashed, that’s fine. It means query caching is working. It’s just you’re not using the plugin to manage it, but it is working. There is nothing to worry about. So my recommendation would be try to figure out if it’s frontend or backend by going to core web vitals. Then going as locked in user and trying to figure out if it’s backend or frontend. If it’s backend, it’s still query monitor, look at query basic things like WP memory limits.

    \n\n\n\n

    You can listen to the entire episode WooCommerce Performance Optimization with Sabrina Zeidan and Uros Tasic.

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Do The Woo Community: Navigating High-Traffic Events with WooCommerce as an Agency\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://dothewoo.io/navigating-high-traffic-events-with-woocommerce-as-an-agency/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4090:\"

    Operating a large-scale e-commerce business is no small feat, but when Black Friday through Cyber Monday hits, the challenges intensify, making it a crucial period for businesses like Maksimer. From a conversation on Do the Woo’s DevChat, Nenad Conić talks with hosts Zach and Carl about the strategies and experiences shared by the team at Maksimer as they tackle the unique demands of Black Friday and maintain seamless operations during this high-stakes weekend.

    \n\n\n\n

    Preparing for a high-traffic event

    \n\n\n\n

    Nenad highlights the importance of a two-month preparation period leading up to leading up to an event like Black Friday. Proactive communication with clients becomes paramount during this time, aiming to collaboratively plan and optimize sales campaigns. Emphasis is placed on creating effective landing pages that showcase sale products, allowing targeted optimization without overhauling the entire site. The goal is to enhance the customer experience on specific pages crucial for sales.

    \n\n\n\n

    Challenges and Solutions

    \n\n\n\n

    Despite great planning, there are always last-minute changes from some clients, creating unforeseen challenges. Nenad acknowledges that while it’s challenging to prevent such changes entirely, early communication and preparation remain critical. To address unexpected surges in server resource usage they implement monitoring systems. These systems trigger alerts when server resources approach their limits, enabling quick intervention to prevent site crashes.

    \n\n\n\n

    Navigating the Unknown

    \n\n\n\n

    In the conversation it turns to the unpredictable nature of server warnings, comparing them to a tsunami warning with a narrow window for response. Despite the challenges, having different departments within the company, such as the growth department and eco managers, provides additional support. Eco managers work closely with clients, offering insights and suggestions for handling their websites during high-traffic events.

    \n\n\n\n

    The Entrepreneurial Mindset

    \n\n\n\n

    They talk about the unique mindset of e-commerce store owners, describing them as self-motivated individuals eager to explore new tools and strategies. The challenge lies in balancing their entrepreneurial spirit with practical considerations. The team at Maksimer often receives requests to implement new features, such as affiliate programs, based on success stories from other store owners. Adapting these requests to the specific e-commerce platform and ensuring compatibility becomes an integral part of the collaboration.

    \n\n\n\n

    Building Partnerships

    \n\n\n\n

    An important piece is the partnership dynamic between an agency and store owners in the e-commerce space. Unlike traditional marketing site builds, e-commerce clients actively engage throughout the entire process, understanding that their website directly influences their income stream. The agency’s role extends beyond building websites; they effectively control the client’s income funnel, requiring a collaborative and responsive approach to maintain client satisfaction, especially in crisis situations.

    \n\n\n\n

    High-traffic events in e-commerce demands a combination of meticulous planning, effective communication, and adaptability. The insights shared by the team at Maksimer shed light on the complexities of e-commerce operations and the vital role played by agencies in ensuring a seamless and successful online retail experience, even in the face of unforeseen challenges.

    \n\n\n\n

    You can listen to the full podcast episode, Database Optimization, Monitoring Tools, and Client Communication with Nenad Conić here.

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Do The Woo Community: A Deep Dive into the WordPress and WooCommerce Ecosystem’s Growth Strategies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6115\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://dothewoo.io/a-deep-dive-into-the-wordpress-and-woocommerce-ecosystems-growth-strategies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9052:\"

    In the online business world, WordPress and WooCommerce stand tall as two popular platforms that help businesses flourish. But to truly scale and excel, businesses need more than just the knowledge of these platforms—they need a well-thought-out plan. 

    \n\n\n\n

    This post dives deep into the growth strategies that can be implemented within the WordPress and WooCommerce ecosystems. 

    \n\n\n\n

    Understanding the WordPress and WooCommerce Ecosystem

    \n\n\n\n

    The WordPress and WooCommerce ecosystem is vibrant, involving a wide array of stakeholders that contribute to its rich diversity. 

    \n\n\n\n

    At its core, this ecosystem includes theme and plugin providers, developers, and hosting providers. These entities work hand in hand, each playing a vital role in creating an enabling environment for businesses to thrive.

    \n\n\n\n

    Theme and plugin providers, for instance, offer essential tools that enhance the functionality and aesthetic appeal of WordPress sites, ensuring users enjoy a seamless experience. 

    \n\n\n\n

    Developers, on the other hand, bring in technical expertise, customizing websites to meet specific business needs, while hosting providers offer the requisite infrastructure, ensuring websites are accessible, reliable, and fast.

    \n\n\n\n

    WordPress and Its Market Dominance

    \n\n\n\n

    An understanding of the WordPress and WooCommerce ecosystem wouldn’t be complete without appreciating WordPress’s market dominance. WordPress holds sway over a significant portion of the CMS market, powering over 40% of all websites currently available on the internet.

    \n\n\n\n

    The factors driving its widespread adoption are its flexibility, ease of use, and extensive customization possibilities. WordPress’s open-source nature, combined with its vast community of developers and theme and plugin providers, provides businesses with virtually unlimited potential for customizability.

    \n\n\n\n

    It’s this scalability and versatility that have contributed significantly to WordPress’s sustained market dominance.

    \n\n\n\n

    WooCommerce and Its Place in eCommerce

    \n\n\n\n

    WooCommerce is a dynamic player in the global eCommerce market. It rides on WordPress’s success by providing an intuitive, flexible, and powerful ecommerce platform that businesses of all sizes can leverage to set up online stores.

    \n\n\n\n

    The benefits of WooCommerce are immense. From its seamless integration with WordPress, ease of use, flexibility, and the availability of numerous themes and plugins, WooCommerce offers businesses a customizable platform for setting up online stores.

    \n\n\n\n

    When stacked against other platforms like Shopify, Magento, and BigCommerce, WooCommerce shines for its affordability and adaptability. Shopify and BigCommerce are monthly subscription-based platforms, while Magento can be complex and may require expert developer knowledge. 

    \n\n\n\n

    On the contrary, WooCommerce is free, open-source, and user-friendly, making it a viable contender in the eCommerce space.

    \n\n\n\n

    Identifying Opportunities for Growth

    \n\n\n\n

    In the dynamic WordPress and WooCommerce ecosystem, businesses must continuously identify and seize growth opportunities. A successful scaling strategy involves playing to the platform’s strengths and seeing beyond immediate needs to include future prospects. 

    \n\n\n\n

    Below are growth opportunities that businesses can use:

    \n\n\n\n

    1. Expanding Product Offerings

    \n\n\n\n

    In any business venture, innovation is key. To truly tap into the potential of WooCommerce and WordPress, consider expanding your product offerings. This could be done by developing new plugins or incorporating additional services that complement your current product.

    \n\n\n\n

    Examples could include tools that enhance website functionality, services geared towards improving the user-experience, or partnerships aimed at promoting your product.

    \n\n\n\n

    2. Building Strong Partnerships

    \n\n\n\n

    Behind every successful business, there’s a network of strong partnerships. In the WordPress and WooCommerce ecosystem, fruitful connections can be forged with plugin and theme providers, WordPress agencies, and hosting providers. 

    \n\n\n\n

    Collaborating with these entities on various initiatives can lead to reciprocal benefits and expanded growth opportunities.

    \n\n\n\n

    3. Focusing on Customer Success and Support

    \n\n\n\n

    The backbone of every successful business is its loyal customers. By building a robust customer support system, you’ll foster trust, loyalty, and eventual advocacy. 

    \n\n\n\n

    Prioritize customer success management, which involves understanding your customers’ journey and providing the support they need at every step.

    \n\n\n\n

    4. Investing in Content Marketing and SEO

    \n\n\n\n

    The secret sauce for gaining visibility and attracting customers lies in content marketing and SEO. 

    \n\n\n\n

    Creating valuable, engaging, and SEO-friendly content ensures your business’ visibility to potential customers and argues for your credibility within your industry.

    \n\n\n\n

    5. Adapting to Industry Trends

    \n\n\n\n

    In today’s rapidly changing digital world, staying informed about industry trends and adapting your strategies accordingly, can be a game-changer for your business. 

    \n\n\n\n

    Regular monitoring of industry best practices, competitor activity, and emerging technology trends can keep you on your toes and ready to adapt.

    \n\n\n\n

    Measuring the Success of Growth Strategies

    \n\n\n\n

    Implementing growth strategies without a system to measure their success won’t yield the desired effect. Analytics play a vital role in gauging the effectiveness of strategies and indicate where improvements are needed.

    \n\n\n\n

    Metrics to  Track

    \n\n\n\n

    To quantify your strategy’s success, consider tracking metrics like customer acquisition costs, churn rate, and average revenue per user. 

    \n\n\n\n

    These metrics provide insight into how effectively your strategies are working, where improvements could be made, and whether you’re reaching your desired goals.

    \n\n\n\n

    Adjusting Strategies Based on Data

    \n\n\n\n

    Data is your best ally when it comes to steering the direction of your growth strategies. It adds objectivity to the process, helps you steer clear of bias-based decisions and allows for strategic pivots based on insights drawn from real-life performance. 

    \n\n\n\n

    Continuous analysis and refinement of your strategies based on performance data will help ensure that your growth strategies remain effective and relevant in the long run.

    \n\n\n\n

    Final Words

    \n\n\n\n

    The WordPress and WooCommerce platforms are excellent tools for online business growth. However, simply knowing how to use these tools isn’t enough. 

    \n\n\n\n

    To truly succeed, businesses must have a solid plan. This should involve identifying new opportunities, building partnerships, focusing on customer service, staying updated with industry trends, and making data-driven decisions. 

    \n\n\n\n

    Combining these strategies ensure success not only today but also prepares businesses for the future.

    \n\n\n\n

    This is a guest post from our sponsor and the team at Dotstore

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: Documentation is a Gift to the WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://bobwp.com/?p=6007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/documentation-is-a-gift-to-the-wordpress-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1370:\"

    While we we were recording an episode of The WordPress Way at Do the Woo about The Importance of Product Testing in WordPress, guest Brian Alexander did a quick note in the chat tool we use during a recording, simply saying, “Documentation is a gift to the community.” Host Abha Thakor asked him to elaborate on that.

    \n\n\n\n

    Brian: Yeah, consider someone who is not as familiar with WordPress or is having a problem with their website or is a developer who’s just getting started. All of those different roles benefit from having strong updated documentation. Think of how many forum posts might not have been logged because it was clearly stated how to use a particular feature in the documentation or perhaps uncovering bugs as you said, because that’s all part of it. Validating your documentation in a way you’re testing what your assumptions are and if those assumptions are incorrect, then you’re assuming the wrong thing or there’s a bug in the system.

    \n\n\n\n

    So that definitely becomes a gift to the entire community as a resource that doesn’t require one-on-one time or tying up one person. It’s very inefficient for one person to answer all the questions.

    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2024 10:45:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 17 Jul 2024 19:48:13 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 17 Jul 2024 19:45:45 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'), +(216,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1721288894','no'), +(217,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1721245694','no'), +(218,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1721288894','no'), +(219,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','','no'), +(220,'_site_transient_timeout_wp_remote_block_patterns_3fbfb3846dba361d8b2f89e73874ce2e','1721249628','no'); +INSERT INTO `wp_options` VALUES +(221,'_site_transient_wp_remote_block_patterns_3fbfb3846dba361d8b2f89e73874ce2e','a:44:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:514958;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Intro area with heading and image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1685:\"\n
    \n
    \n\n\n\n
    \n
    \n
    \n

    Uncover a realm of opportunities.

    \n
    \n\n\n\n
    \n

    Exploring life’s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.

    \n\n\n\n\n
    \n
    \n\n\n\n
    \n\n\n\n
    \"\"
    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:4:\"hero\";s:16:\"wpop_description\";s:93:\"Two columns of text, left with a heading and right with a paragraph, with a wide image below.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.5\";s:25:\"wpop_contains_block_types\";s:111:\"core/button,core/buttons,core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"about\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2422:\"\n
    \n
    \n\n\n\n
    \n
    \n
    \n

    Uncover a realm of opportunities.

    \n
    \n\n\n\n
    \n

    Exploring life\'s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.

    \n\n\n\n\n
    \n
    \n\n\n\n
    \n\n\n\n
    \"\"
    \n
    \n\n\n\n
    \n
    \n\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1335:\"\n
    \n
    \n
    \n\n\n\n
    \"\"
    \n\n\n\n
    \n\n\n\n

    Etcetera

    \n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"\n
    \n
    \n
    \n\n\n\n
    \"\"
    \n\n\n\n
    \n\n\n\n

    Etcetera

    \n\n\n\n
    \n
    \n
    \n\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1089:\"\n
    \"\"
    \n
    \n

    bud!

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"\n
    \"\"
    \n
    \n

    bud!

    \n
    \n
    \n\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1743:\"\n
    \"\"
    \n
    \n\n\n\n
    \n

    DJANGO

    \n\n\n\n

    DJANGO

    \n\n\n\n

    DJANGO

    \n\n\n\n

    DJANGO

    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"\n
    \"\"
    \n
    \n\n\n\n
    \n

    DJANGO

    \n\n\n\n

    DJANGO

    \n\n\n\n

    DJANGO

    \n\n\n\n

    DJANGO

    \n
    \n\n\n\n
    \n
    \n\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2187:\"\n
    \n
    \n
    \n

    Let ’em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.

    \n\n\n\n\n
    \n\n\n\n
    \n

    Let
    ‘EM
    Roll

    \n\n\n\n

    Big
    John
    Patton

    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"\n
    \n
    \n
    \n

    Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.

    \n\n\n\n\n
    \n\n\n\n
    \n

    Let
    \'EM
    Roll

    \n\n\n\n

    Big
    John
    Patton

    \n
    \n
    \n
    \n\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2031:\"\n
    \n
    \n\n\n\n
    \n
    \n

    MONK.

    \n
    \n\n\n\n
    \n
    \n

    A new collection

    \n\n\n\n

    Learn More

    \n
    \n
    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"\n
    \n
    \n\n\n\n
    \n
    \n

    MONK.

    \n
    \n\n\n\n
    \n
    \n

    A new collection

    \n\n\n\n

    Learn More →

    \n
    \n
    \n
    \n\n\n\n
    \n
    \n\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2631:\"\n
    \n
    \n
    \n

    Time for an adventure

    \n\n\n\n
    \n\n\n\n

    Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.

    \n\n\n\n
    \n\n\n\n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \"\"
    \n
    \n\n\n\n
    \"\"
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"\n
    \n
    \n
    \n

    Time for an adventure

    \n\n\n\n
    \n\n\n\n

    Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.

    \n\n\n\n
    \n\n\n\n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \"\"
    \n
    \n\n\n\n
    \"\"
    \n
    \n
    \n
    \n\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1744:\"\n
    \"\"
    \n
    \n

    Enjoy

    \n\n\n\n

    20% Off

    \n\n\n\n
    \n\n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"\n
    \"\"
    \n
    \n

    Enjoy

    \n\n\n\n

    20% Off

    \n\n\n\n
    \n\n\n\n\n
    \n
    \n\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1652:\"\n
    \n
    \n

    Embark

    \n\n\n\n

    ON A HIKING

    \n\n\n\n

    adventure and explore the beauty of nature’s best…

    \n\n\n\n

    In the

    \n\n\n\n

    WOODS.

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"\n
    \n
    \n

    Embark

    \n\n\n\n

    ON A HIKING

    \n\n\n\n

    adventure and explore the beauty of nature\'s best…

    \n\n\n\n

    In the

    \n\n\n\n

    WOODS.

    \n
    \n
    \n\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1449:\"\n
    \n
    \n

    ✴︎ Walk

    \n\n\n\n

    In the

    \n\n\n\n

    Park

    \n\n\n\n

    —01.03

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"\n
    \n
    \n

    ✴︎ Walk

    \n\n\n\n

    In the

    \n\n\n\n

    Park

    \n\n\n\n

    —01.03

    \n
    \n
    \n\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2104:\"\n
    \n
    \n
    \"\"
    \n\n\n\n
    \n

    wAndering through the woods

    \n\n\n\n
    \n\n\n\n

    Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.

    \n\n\n\n
    \n\n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"\n
    \n
    \n
    \"\"
    \n\n\n\n
    \n

    wAndering through the woods

    \n\n\n\n
    \n\n\n\n

    Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.

    \n\n\n\n
    \n\n\n\n\n
    \n
    \n
    \n\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1657:\"\n
    \"\"
    \n
    \n

    Take a hike and wAnder through the woods

    \n
    \n\n\n\n
    \n\n\n\n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"\n
    \"\"
    \n
    \n

    Take a hike and wAnder through the woods

    \n
    \n\n\n\n
    \n\n\n\n\n
    \n\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1665:\"\n
    \"\"
    \n
    \n

    Embark on a hiking adventure and explore the beauty of the woods.

    \n
    \n\n\n\n
    \n\n\n\n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"\n
    \"\"
    \n
    \n

    Embark on a hiking adventure and explore the beauty of the woods.

    \n
    \n\n\n\n
    \n\n\n\n\n
    \n\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:955:\"\n
    \n
    \n
    \"\"
    \n\n\n\n
    \"\"
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"\n
    \n
    \n
    \"\"
    \n\n\n\n
    \"\"
    \n
    \n
    \n\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:498:\"\n
    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"\n
    \n
    \n\n
    \n
    \n
    \n

    ✴︎

    \n\n\n
    \n\n\n
    \n
    \n\n\n\n
    \n\n
    \n\n\n\n
    \n\n\n\n
    \n
    \n\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:637:\"\n
    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"\n
    \n
    \n\n
    \n
    \n\n
    \n\n\n
    \n\n
    \n\n\n\n
    \n\n\n\n
    \n
    \n\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4748:\"\n
    \n
    \"\"
    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"\n
    \n
    \"\"
    \n
    \n
    \n\n
    \n\n\n
    \n\n\n\n
    \n
    \n
    \n\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3899:\"\n
    \n
    \n\n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1497:\"\n
    \n
    \n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3580:\"\n
    \n
    \n

    Patterns

    \n\n

    Beautifully designed patterns ready to go with a simple copy/paste

    \n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"\n
    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4189:\"\n
    \n
    \n
    \"Site
    \n\n\n

    Patterns

    \n\n

    Beautifully designed patterns ready to go with a simple copy/paste

    \n
    \n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"\n
    \n
    \n
    \n\n\n
    \n\n
    \n
    \n\n\n
    \n
    \n\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3315:\"\n

    Patterns

    \n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"\n
    \n\n
    \n\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4722:\"\n
    \n
    \n
    \"Site
    \n\n\n\n
    \n\n\n
    \n\n\n\n
    \"\"
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"\n
    \n
    \n
    \n\n\n
    \n
    \n\n\n
    \n\n\n\n
    \"\"
    \n
    \n
    \n
    \n\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3647:\"\n
    \n
    \"Site
    \n\n

    Patterns

    \n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"\n
    \n
    \n\n\n\n
    \n
    \n\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3443:\"\n

    Patterns

    \n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"\n
    \n\n
    \n\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3703:\"\n
    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"\n
    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4246:\"\n
    \n
    \n

    Proudly powered by WordPress

    \n\n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"\n
    \n
    \n

    Proudly powered by WordPress

    \n\n\n\n\n
    \n
    \n\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3105:\"\n
    \n
    \n
    \n

    Search

    \n\n\n
    \n\n\n\n
    \n
    \n

    Social

    \n\n\n\n
    \n

    Facebook

    \n\n\n\n

    Instagram

    \n\n\n\n

    Twitter

    \n
    \n
    \n
    \n
    \n\n\n\n
    \n\n\n\n
    \n\n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"\n
    \n
    \n
    \n

    Search

    \n\n\n
    \n\n\n\n
    \n
    \n

    Social

    \n\n\n\n
    \n

    Facebook

    \n\n\n\n

    Instagram

    \n\n\n\n

    Twitter

    \n
    \n
    \n
    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:882:\"\n
    \n
    \n\n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"\n
    \n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3602:\"\n
    \n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"\n
    \n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3045:\"\n
    \n
    \n
    \n

    Location

    \n\n\n\n

    2020 Lomita Blvd, 
    Torrance, CA 90101
    United States

    \n\n\n\n
    \n
    \n\n\n\n
    \n

    Pages

    \n\n\n\n\n\n
    \n
    \n\n\n\n
    \n

    Follow us

    \n\n\n\n
    \n

    Facebook

    \n\n\n\n

    Instagram

    \n\n\n\n

    Twitter

    \n
    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \n

    Proudly powered by WordPress

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"\n
    \n
    \n
    \n

    Location

    \n\n\n\n

    2020 Lomita Blvd, 
    Torrance, CA 90101
    United States

    \n\n\n\n
    \n
    \n\n\n\n
    \n

    Pages

    \n\n\n\n\n\n
    \n
    \n\n\n\n
    \n

    Follow us

    \n\n\n\n
    \n

    Facebook

    \n\n\n\n

    Instagram

    \n\n\n\n

    Twitter

    \n
    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \n

    Proudly powered by WordPress

    \n
    \n
    \n\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4166:\"\n
    \"Site
    \n\n\n

    Proudly powered by WordPress

    \n\n\n\n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"\n
    \n\n\n

    Proudly powered by WordPress

    \n\n\n\n\n
    \n\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4645:\"\n
    \n

    Patterns

    \n\n\n
    \n

    Proudly powered by WordPress

    \n
    \n\n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"\n
    \n
    \n\n\n
    \n

    Proudly powered by WordPress

    \n
    \n\n\n\n\n
    \n
    \n\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2940:\"\n
    \n

    Patterns

    \n\n\n

    2020 Lomita Blvd, 
    Torrance, CA 90101
    United States

    \n\n\n\n

    Proudly powered by WordPress

    \n\n\n\n
    \n
    \n\n\n\n
    \n
    \n

    Pages

    \n\n\n\n\n\n
    \n
    \n\n\n\n
    \n

    Social

    \n\n\n\n
    \n

    Facebook

    \n\n\n\n

    Instagram

    \n\n\n\n

    Twitter

    \n
    \n\n\n\n
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"\n
    \n
    \n\n\n

    2020 Lomita Blvd, 
    Torrance, CA 90101
    United States

    \n\n\n\n

    Proudly powered by WordPress

    \n\n\n\n
    \n
    \n\n\n\n
    \n
    \n

    Pages

    \n\n\n\n\n\n
    \n
    \n\n\n\n
    \n

    Social

    \n\n\n\n
    \n

    Facebook

    \n\n\n\n

    Instagram

    \n\n\n\n

    Twitter

    \n
    \n\n\n\n
    \n
    \n
    \n
    \n\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1351:\"\n
    \n
    \n
    \"Close-up,
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n\n\n\n
    \"Close-up,
    \n
    \n\n\n\n
    \n
    \"Close-up
    \n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"\n
    \n
    \n
    \"Close-up,
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n\n\n\n
    \"Close-up,
    \n
    \n\n\n\n
    \n
    \"Close-up
    \n\n\n\n
    \n
    \n
    \n\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3578:\"\n
    \n
    \n
    ECOSYSTEM
    \n\n\n\n

    Positive growth.

    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n
    \n

    Nature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.

    \n\n\n\n

    But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.

    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \"The
    \n
    \n\n\n\n
    \n
    \"Wind
    \n
    \n
    \n\n\n\n
    \n
    \n
    \"The
    \n
    \n\n\n\n
    \n
    \n\n\n\n

    Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man’s condition is a solution in hieroglyphic to those inquiries he would put.

    \n
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"\n
    \n
    \n
    ECOSYSTEM
    \n\n\n\n

    Positive growth.

    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n
    \n

    Nature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.

    \n\n\n\n

    But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.

    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \"The
    \n
    \n\n\n\n
    \n
    \"Wind
    \n
    \n
    \n\n\n\n
    \n
    \n
    \"The
    \n
    \n\n\n\n
    \n
    \n\n\n\n

    Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.

    \n
    \n
    \n
    \n
    \n\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2282:\"\n
    \n
    \n\n\n\n
    \n
    \n

    Oceanic Inspiration

    \n
    \n\n\n\n
    \n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n

    Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.

    \n
    \n\n\n\n
    \n

    No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.

    \n
    \n
    \n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"\n
    \n
    \n\n\n\n
    \n
    \n

    Oceanic Inspiration

    \n
    \n\n\n\n
    \n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n

    Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.

    \n
    \n\n\n\n
    \n

    No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.

    \n
    \n
    \n\n\n\n
    \n
    \n\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1484:\"\n
    \n
    \"Close-up
    \n

    What’s the problem?

    \n\n\n\n

    Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.

    \n\n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"\n
    \n
    \"Close-up
    \n

    What\'s the problem?

    \n\n\n\n

    Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.

    \n\n\n\n\n
    \n
    \n\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n
    \n

    Shore with Blue Sea

    \n\n\n\n

    Eleanor Harris (American, 1901-1942)

    \n
    \"A
    \n\n\n\n

    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"\n
    \n

    Shore with Blue Sea

    \n\n\n\n

    Eleanor Harris (American, 1901-1942)

    \n
    \"A
    \n\n\n\n

    \n\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:611:\"\n
    \"Close-up,
    \n

    Open Spaces

    \n\n\n\n

    See case study

    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"\n
    \"Close-up,
    \n

    Open Spaces

    \n\n\n\n

    See case study ↗

    \n
    \n\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1619:\"\n
    \n

    Overseas:
    1500 — 1960

    \n\n\n\n
    \n
    \n

    An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in Floor 2.

    \n\n\n\n
    \n\n
    \n
    \n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"\n
    \n

    Overseas:
    1500 — 1960

    \n\n\n\n
    \n
    \n

    An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in Floor 2.

    \n\n\n\n
    \n\n
    \n
    \n\n\n\n
    \n
    \n
    \n\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1381:\"\n
    \"\"
    \n

    Forest.

    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.

    \n
    \n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"\n
    \"\"
    \n

    Forest.

    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.

    \n
    \n\n\n\n
    \n
    \n
    \n\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n

    We’re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.

    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"\n

    We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.

    \n\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1540:\"\n

    The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.

    \n\n\n\n
    \n
    \n

    They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.

    \n
    \n\n\n\n
    \n

    The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband’s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"\n

    The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.

    \n\n\n\n
    \n
    \n

    They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.

    \n
    \n\n\n\n
    \n

    The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.

    \n
    \n
    \n\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:571:\"\n\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"\n\n\";}}','no'), +(222,'_site_transient_timeout_wp_remote_block_patterns_5bfa12814c45ff33ed7b4e18fe416e85','1721249629','no'), +(223,'_site_transient_wp_remote_block_patterns_5bfa12814c45ff33ed7b4e18fe416e85','a:13:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6666:\"\n

    Patterns

    \n\n

    Beautifully designed patterns ready to go with a simple copy/paste

    \n\n\n
    \n\n\n\n\n\n\n\n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"\n
    \n\n\n\n\n
    \n\n\n\n\n\n\n\n\n
    \n\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:984:\"\n
    \n
    \n\n\n\n

    GET IN TOUCH

    \n\n\n\n

    Schedule a Visit

    \n\n\n\n\n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"\n
    \n
    \n\n\n\n

    GET IN TOUCH

    \n\n\n\n

    Schedule a Visit

    \n\n\n\n\n\n\n\n
    \n
    \n\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3849:\"\n
    \n
    \n

    Single

    \n\n\n\n

    Enrich our growing community.

    \n\n\n\n
    \n\n\n\n
      \n
    • General admission and member discounts for one adult
    • \n\n\n\n
    • One free ticket per special exhibition
    • \n\n\n\n
    • Two single-use guest passes per year
    • \n
    \n\n\n\n\n
    \n\n\n\n
    \n

    Family

    \n\n\n\n

    Support special exhibitions.

    \n\n\n\n
    \n\n\n\n
      \n
    • General admission and member discounts for two adults
    • \n\n\n\n
    • Four free tickets per special exhibition
    • \n\n\n\n
    • Four single-use guest passes per year
    • \n
    \n\n\n\n\n
    \n\n\n\n
    \n

    Patron

    \n\n\n\n

    Take support to the next level.

    \n\n\n\n
    \n\n\n\n
      \n
    • General admission and member discounts for two adults
    • \n\n\n\n
    • Five free tickets per special exhibition
    • \n\n\n\n
    • Six single-use guest passes per year
    • \n
    \n\n\n\n\n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"\n
    \n
    \n

    Single

    \n\n\n\n

    Enrich our growing community.

    \n\n\n\n
    \n\n\n\n
      \n
    • General admission and member discounts for one adult
    • \n\n\n\n
    • One free ticket per special exhibition
    • \n\n\n\n
    • Two single-use guest passes per year
    • \n
    \n\n\n\n\n
    \n\n\n\n
    \n

    Family

    \n\n\n\n

    Support special exhibitions.

    \n\n\n\n
    \n\n\n\n
      \n
    • General admission and member discounts for two adults
    • \n\n\n\n
    • Four free tickets per special exhibition
    • \n\n\n\n
    • Four single-use guest passes per year
    • \n
    \n\n\n\n\n
    \n\n\n\n
    \n

    Patron

    \n\n\n\n

    Take support to the next level.

    \n\n\n\n
    \n\n\n\n
      \n
    • General admission and member discounts for two adults
    • \n\n\n\n
    • Five free tickets per special exhibition
    • \n\n\n\n
    • Six single-use guest passes per year
    • \n
    \n\n\n\n\n
    \n
    \n\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2281:\"\n
    \"\"
    \n
    \n

    Even the bitterest fruit has sugar in it.

    \n\n\n\n

    – Terry a O’Neal

    \n
    \n
    \n\n\n\n
    \"\"
    \n
    \n

    The trees that are slow to grow bear the best fruit.

    \n\n\n\n

    – Molière

    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"\n
    \"\"
    \n
    \n

    Even the bitterest fruit has sugar in it.

    \n\n\n\n

    – Terry a O\'Neal

    \n
    \n
    \n\n\n\n
    \"\"
    \n
    \n

    The trees that are slow to grow bear the best fruit.

    \n\n\n\n

    – Molière

    \n
    \n
    \n\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1744:\"\n
    \n
    \n

    Opening
    Party

    \n\n\n\n

    RSVP

    \n
    \n
    \"\"
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"\n
    \n
    \n

    Opening
    Party

    \n\n\n\n

    RSVP →

    \n
    \n
    \"\"
    \n\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1913:\"\n
    \n
    \n
    \n
    \"\"
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n

    Airplane

    \n\n\n\n

    Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.

    \n
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"\n
    \n
    \n
    \n
    \"\"
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n

    Airplane

    \n\n\n\n

    Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.

    \n
    \n
    \n
    \n
    \n\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3006:\"\n
    \n
    \n
    \n
    \"Beautiful
    \n\n\n\n
    \n

    White Irises

    \n\n\n\n

    Ogawa Kazumasa

    \n
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n
    \n\n\n\n

    Cherry Blossom

    \n\n\n\n

    Ogawa Kazumasa

    \n
    \n\n\n\n
    \"Beautiful
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"\n
    \n
    \n
    \n
    \"Beautiful
    \n\n\n\n
    \n

    White Irises

    \n\n\n\n

    Ogawa Kazumasa

    \n
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n
    \n\n\n\n

    Cherry Blossom

    \n\n\n\n

    Ogawa Kazumasa

    \n
    \n\n\n\n
    \"Beautiful
    \n
    \n
    \n
    \n\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1709:\"\n
    \n
    \n\n\n\n
    \n
    \"Vintage
    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n

    Cupid in Flight
    48” x 48” Giclee print on archival paper.

    \n
    \n
    \n\n\n\n

    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"\n
    \n
    \n\n\n\n
    \n
    \"Vintage
    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n

    Cupid in Flight
    48” x 48” Giclee print on archival paper.

    \n
    \n
    \n\n\n\n

    \n\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1706:\"\n
    \"Image
    \n\n\n\n
    \n
    \n

    Location:
    82 Main St. Brooklyn, NY

    \n
    \n\n\n\n
    \n

    Date:
    October 24, 2021

    \n
    \n\n\n\n\n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"\n
    \"Image
    \n\n\n\n
    \n
    \n

    Location:
    82 Main St. Brooklyn, NY

    \n
    \n\n\n\n
    \n

    Date:
    October 24, 2021

    \n
    \n\n\n\n\n
    \n\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3578:\"\n
    \n
    \n
    ECOSYSTEM
    \n\n\n\n

    Positive growth.

    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n
    \n

    Nature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.

    \n\n\n\n

    But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.

    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \"The
    \n
    \n\n\n\n
    \n
    \"Wind
    \n
    \n
    \n\n\n\n
    \n
    \n
    \"The
    \n
    \n\n\n\n
    \n
    \n\n\n\n

    Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man’s condition is a solution in hieroglyphic to those inquiries he would put.

    \n
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"\n
    \n
    \n
    ECOSYSTEM
    \n\n\n\n

    Positive growth.

    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n
    \n

    Nature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.

    \n\n\n\n

    But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.

    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \"The
    \n
    \n\n\n\n
    \n
    \"Wind
    \n
    \n
    \n\n\n\n
    \n
    \n
    \"The
    \n
    \n\n\n\n
    \n
    \n\n\n\n

    Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.

    \n
    \n
    \n
    \n
    \n\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:611:\"\n
    \"Close-up,
    \n

    Open Spaces

    \n\n\n\n

    See case study

    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"\n
    \"Close-up,
    \n

    Open Spaces

    \n\n\n\n

    See case study ↗

    \n
    \n\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1382:\"\n
    \"\"
    \n

    Forest.

    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.

    \n
    \n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"\n
    \"\"
    \n

    Forest.

    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.

    \n
    \n\n\n\n
    \n
    \n
    \n\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n

    We’re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.

    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"\n

    We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.

    \n\";}}','no'), +(224,'_site_transient_timeout_wp_remote_block_patterns_bb313b9b234d55285039217a92c8dbb5','1721249629','no'), +(225,'_site_transient_wp_remote_block_patterns_bb313b9b234d55285039217a92c8dbb5','a:2:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:422286;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:15:\"Clients Section\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1124:\"\n
    \n
    \n

    We’ve worked with some of the best companies.

    \n\n\n\n
    \n\n\n\n
    \n\n\n\n\n\n\n\n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:48:\"core/group,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:12:\"testimonials\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:3008:\"\n
    \n
    \n

    We’ve worked with some of the best companies.

    \n\n\n\n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n
    \n
    \n
    \n\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:422275;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Three columns of services\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2646:\"\n
    \n
    \n
    \n

    We recognize the role architecture plays in shaping a sustainable future.

    \n
    \n\n\n\n
    \n
    \n
    \n

    Consulting

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n\n\n\n
    \n

    Project Management

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n
    \n\n\n\n
    \n
    \n

    Design

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n\n\n\n
    \n

    Maintenance

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n
    \n
    \n
    \n
    \n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"services\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:3730:\"\n
    \n
    \n
    \n

    We recognize the role architecture plays in shaping a sustainable future.

    \n
    \n\n\n\n
    \n
    \n
    \n

    Consulting

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n\n\n\n
    \n

    Project Management

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n
    \n\n\n\n
    \n
    \n

    Design

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n\n\n\n
    \n

    Maintenance

    \n\n\n\n

    Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces.

    \n
    \n
    \n
    \n
    \n
    \n\";}}','no'), +(226,'_site_transient_timeout_theme_roots','1721249291','no'), +(227,'_site_transient_theme_roots','a:3:{s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'); +/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_postmeta` +-- + +DROP TABLE IF EXISTS `wp_postmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_postmeta` ( + `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `post_id` bigint unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`meta_id`), + KEY `post_id` (`post_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=259 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_postmeta` +-- + +LOCK TABLES `wp_postmeta` WRITE; +/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; +INSERT INTO `wp_postmeta` VALUES +(1,2,'_wp_page_template','default'), +(2,3,'_wp_page_template','default'), +(3,5,'_edit_lock','1721167716:1'), +(4,7,'_wp_attached_file','2024/07/logo.png'), +(5,7,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:156;s:6:\"height\";i:40;s:4:\"file\";s:16:\"2024/07/logo.png\";s:8:\"filesize\";i:1275;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"logo-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(6,7,'_starter_content_theme','astra'), +(9,8,'_customize_changeset_uuid','55488446-35f1-497b-8005-e04a6d2e75c1'), +(10,8,'site-content-layout','plain-container'), +(11,8,'theme-transparent-header-meta','enabled'), +(12,8,'site-sidebar-layout','no-sidebar'), +(13,8,'site-post-title','disabled'), +(14,9,'_edit_lock','1721168344:1'), +(15,10,'_wp_attached_file','2024/07/logo-1.png'), +(16,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:611;s:6:\"height\";i:611;s:4:\"file\";s:18:\"2024/07/logo-1.png\";s:8:\"filesize\";i:195936;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72820;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25109;}s:13:\"ast-logo-size\";a:5:{s:4:\"file\";s:18:\"logo-1-133x133.png\";s:5:\"width\";i:133;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(17,10,'_wp_attachment_image_alt','logo of the charitable association'), +(18,12,'_menu_item_type','post_type'), +(19,12,'_menu_item_menu_item_parent','0'), +(20,12,'_menu_item_object_id','8'), +(21,12,'_menu_item_object','page'), +(22,12,'_menu_item_target',''), +(23,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(24,12,'_menu_item_xfn',''), +(25,12,'_menu_item_url',''), +(66,18,'_menu_item_type','post_type'), +(67,18,'_menu_item_menu_item_parent','0'), +(68,18,'_menu_item_object_id','8'), +(69,18,'_menu_item_object','page'), +(70,18,'_menu_item_target',''), +(71,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(72,18,'_menu_item_xfn',''), +(73,18,'_menu_item_url',''), +(74,19,'_menu_item_type','custom'), +(75,19,'_menu_item_menu_item_parent','0'), +(76,19,'_menu_item_object_id','19'), +(77,19,'_menu_item_object','custom'), +(78,19,'_menu_item_target',''), +(79,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(80,19,'_menu_item_xfn',''), +(81,19,'_menu_item_url','#services'), +(82,20,'_menu_item_type','custom'), +(83,20,'_menu_item_menu_item_parent','0'), +(84,20,'_menu_item_object_id','20'), +(85,20,'_menu_item_object','custom'), +(86,20,'_menu_item_target',''), +(87,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(88,20,'_menu_item_xfn',''), +(89,20,'_menu_item_url','#about'), +(90,21,'_menu_item_type','custom'), +(91,21,'_menu_item_menu_item_parent','0'), +(92,21,'_menu_item_object_id','21'), +(93,21,'_menu_item_object','custom'), +(94,21,'_menu_item_target',''), +(95,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(96,21,'_menu_item_xfn',''), +(97,21,'_menu_item_url','#reviews'), +(98,22,'_menu_item_type','custom'), +(99,22,'_menu_item_menu_item_parent','0'), +(100,22,'_menu_item_object_id','22'), +(101,22,'_menu_item_object','custom'), +(102,22,'_menu_item_target',''), +(103,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(104,22,'_menu_item_xfn',''), +(105,22,'_menu_item_url','#whyus'), +(106,23,'_menu_item_type','custom'), +(107,23,'_menu_item_menu_item_parent','0'), +(108,23,'_menu_item_object_id','23'), +(109,23,'_menu_item_object','custom'), +(110,23,'_menu_item_target',''), +(111,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(112,23,'_menu_item_xfn',''), +(113,23,'_menu_item_url','#contact'), +(114,9,'_wp_trash_meta_status','publish'), +(115,9,'_wp_trash_meta_time','1721168365'), +(116,24,'_wp_trash_meta_status','publish'), +(117,24,'_wp_trash_meta_time','1721168383'), +(118,25,'_edit_lock','1721168654:1'), +(119,25,'_wp_trash_meta_status','publish'), +(120,25,'_wp_trash_meta_time','1721168686'), +(121,26,'_edit_lock','1721168954:1'), +(122,26,'_wp_trash_meta_status','publish'), +(123,26,'_wp_trash_meta_time','1721168960'), +(124,3,'_wp_trash_meta_status','draft'), +(125,3,'_wp_trash_meta_time','1721168998'), +(126,3,'_wp_desired_post_slug','privacy-policy'), +(127,2,'_wp_trash_meta_status','publish'), +(128,2,'_wp_trash_meta_time','1721168998'), +(129,2,'_wp_desired_post_slug','sample-page'), +(130,29,'_edit_lock','1721170728:1'), +(131,31,'_edit_lock','1721170706:1'), +(132,34,'_edit_lock','1721170711:1'), +(133,36,'_edit_lock','1721170724:1'), +(134,38,'_edit_lock','1721170701:1'), +(135,40,'_edit_lock','1721170717:1'), +(136,41,'_wp_attached_file','2024/07/image.png'), +(137,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:316;s:6:\"height\";i:160;s:4:\"file\";s:17:\"2024/07/image.png\";s:8:\"filesize\";i:52257;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"image-300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22291;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(138,42,'_wp_attached_file','2024/07/image-1.png'), +(139,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:486;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2024/07/image-1.png\";s:8:\"filesize\";i:5269;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-1-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1857;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(140,43,'_wp_attached_file','2024/07/image-2.png'), +(141,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:316;s:6:\"height\";i:160;s:4:\"file\";s:19:\"2024/07/image-2.png\";s:8:\"filesize\";i:52257;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-2-300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22291;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(142,44,'_wp_attached_file','2024/07/image-3.png'), +(143,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:323;s:6:\"height\";i:156;s:4:\"file\";s:19:\"2024/07/image-3.png\";s:8:\"filesize\";i:16792;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-3-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(144,45,'_wp_attached_file','2024/07/image-4.png'), +(145,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:19:\"2024/07/image-4.png\";s:8:\"filesize\";i:72220;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(146,46,'_wp_attached_file','2024/07/image-5.png'), +(147,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:19:\"2024/07/image-5.png\";s:8:\"filesize\";i:72220;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(148,47,'_wp_attached_file','2024/07/image-6.png'), +(149,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:486;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2024/07/image-6.png\";s:8:\"filesize\";i:5269;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-6-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1857;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(150,48,'_wp_attached_file','2024/07/image-7.png'), +(151,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:474;s:6:\"height\";i:272;s:4:\"file\";s:19:\"2024/07/image-7.png\";s:8:\"filesize\";i:3824;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-7-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(152,49,'_wp_attached_file','2024/07/image-8.png'), +(153,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:255;s:6:\"height\";i:170;s:4:\"file\";s:19:\"2024/07/image-8.png\";s:8:\"filesize\";i:587;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(154,50,'_wp_attached_file','2024/07/image-9.png'), +(155,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1179;s:6:\"height\";i:424;s:4:\"file\";s:19:\"2024/07/image-9.png\";s:8:\"filesize\";i:379800;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-9-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39602;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"image-9-1024x368.png\";s:5:\"width\";i:1024;s:6:\"height\";i:368;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:304878;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27671;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"image-9-768x276.png\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(156,51,'_wp_attached_file','2024/07/image-10.png'), +(157,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:583;s:6:\"height\";i:142;s:4:\"file\";s:20:\"2024/07/image-10.png\";s:8:\"filesize\";i:39114;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-10-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13809;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image-10-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1522;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(158,52,'_wp_attached_file','2024/07/image-11.png'), +(159,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:613;s:6:\"height\";i:149;s:4:\"file\";s:20:\"2024/07/image-11.png\";s:8:\"filesize\";i:28777;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-11-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image-11-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4758;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(160,53,'_wp_attached_file','2024/07/image-12.png'), +(161,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:549;s:6:\"height\";i:168;s:4:\"file\";s:20:\"2024/07/image-12.png\";s:8:\"filesize\";i:49719;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-12-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16389;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:466;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(162,55,'_edit_lock','1721169786:1'), +(163,57,'_edit_lock','1721170244:1'), +(164,58,'_menu_item_type','post_type'), +(165,58,'_menu_item_menu_item_parent','0'), +(166,58,'_menu_item_object_id','55'), +(167,58,'_menu_item_object','page'), +(168,58,'_menu_item_target',''), +(169,58,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(170,58,'_menu_item_xfn',''), +(171,58,'_menu_item_url',''), +(172,57,'_wp_trash_meta_status','publish'), +(173,57,'_wp_trash_meta_time','1721170250'), +(174,59,'_customize_draft_post_name','home'), +(175,59,'_customize_changeset_uuid','ad161b47-abc0-4a0f-a9a4-9f9c547d1ba7'), +(176,60,'_wp_trash_meta_status','publish'), +(177,60,'_wp_trash_meta_time','1721170550'), +(178,61,'_customize_draft_post_name','about-us'), +(179,61,'_customize_changeset_uuid','3e144002-f334-43b0-be9d-aa5a178bad3a'), +(180,38,'_edit_last','1'), +(181,38,'_wp_page_template','default'), +(182,31,'_edit_last','1'), +(183,31,'_wp_page_template','default'), +(184,34,'_edit_last','1'), +(185,34,'_wp_page_template','default'), +(186,40,'_edit_last','1'), +(187,40,'_wp_page_template','default'), +(188,36,'_edit_last','1'), +(189,36,'_wp_page_template','default'), +(190,29,'_edit_last','1'), +(191,29,'_wp_page_template','default'), +(192,64,'origin','theme'), +(193,70,'origin','theme'), +(194,73,'_edit_lock','1721246563:1'), +(195,74,'_menu_item_type','post_type'), +(196,74,'_menu_item_menu_item_parent','0'), +(197,74,'_menu_item_object_id','73'), +(198,74,'_menu_item_object','page'), +(199,74,'_menu_item_target',''), +(200,74,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(201,74,'_menu_item_xfn',''), +(202,74,'_menu_item_url',''), +(203,76,'_edit_lock','1721246832:1'), +(204,78,'_edit_lock','1721246972:1'), +(205,80,'_edit_lock','1721247231:1'), +(206,82,'_edit_lock','1721247325:1'), +(207,84,'_edit_lock','1721247207:1'), +(208,85,'_edit_lock','1721247221:1'), +(209,86,'_edit_lock','1721247242:1'), +(210,87,'_menu_item_type','post_type'), +(211,87,'_menu_item_menu_item_parent','0'), +(212,87,'_menu_item_object_id','86'), +(213,87,'_menu_item_object','page'), +(214,87,'_menu_item_target',''), +(215,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(216,87,'_menu_item_xfn',''), +(217,87,'_menu_item_url',''), +(218,89,'_edit_lock','1721247277:1'), +(219,91,'_edit_lock','1721247295:1'), +(220,93,'_edit_lock','1721247330:1'), +(221,95,'_edit_lock','1721247344:1'), +(222,96,'_menu_item_type','post_type'), +(223,96,'_menu_item_menu_item_parent','0'), +(224,96,'_menu_item_object_id','95'), +(225,96,'_menu_item_object','page'), +(226,96,'_menu_item_target',''), +(227,96,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(228,96,'_menu_item_xfn',''), +(229,96,'_menu_item_url',''), +(230,98,'_edit_lock','1721247363:1'), +(231,99,'_menu_item_type','post_type'), +(232,99,'_menu_item_menu_item_parent','0'), +(233,99,'_menu_item_object_id','98'), +(234,99,'_menu_item_object','page'), +(235,99,'_menu_item_target',''), +(236,99,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(237,99,'_menu_item_xfn',''), +(238,99,'_menu_item_url',''), +(239,101,'_edit_lock','1721247387:1'), +(240,102,'_menu_item_type','post_type'), +(241,102,'_menu_item_menu_item_parent','0'), +(242,102,'_menu_item_object_id','101'), +(243,102,'_menu_item_object','page'), +(244,102,'_menu_item_target',''), +(245,102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(246,102,'_menu_item_xfn',''), +(247,102,'_menu_item_url',''), +(248,104,'_edit_last','1'), +(249,104,'_wp_page_template','default'), +(250,106,'_menu_item_type','post_type'), +(251,106,'_menu_item_menu_item_parent','0'), +(252,106,'_menu_item_object_id','104'), +(253,106,'_menu_item_object','page'), +(254,106,'_menu_item_target',''), +(255,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), +(256,106,'_menu_item_xfn',''), +(257,106,'_menu_item_url',''), +(258,104,'_edit_lock','1721247804:1'); +/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_posts` +-- + +DROP TABLE IF EXISTS `wp_posts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_posts` ( + `ID` bigint unsigned NOT NULL AUTO_INCREMENT, + `post_author` bigint unsigned NOT NULL DEFAULT '0', + `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', + `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', + `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', + `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_parent` bigint unsigned NOT NULL DEFAULT '0', + `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `menu_order` int NOT NULL DEFAULT '0', + `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', + `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_count` bigint NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `post_name` (`post_name`(191)), + KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), + KEY `post_parent` (`post_parent`), + KEY `post_author` (`post_author`) +) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_posts` +-- + +LOCK TABLES `wp_posts` WRITE; +/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; +INSERT INTO `wp_posts` VALUES +(1,1,'2024-07-16 21:54:43','2024-07-16 21:54:43','\n

    Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

    \n','Hello world!','','publish','open','open','','hello-world','','','2024-07-16 21:54:43','2024-07-16 21:54:43','',0,'http://localhost:8080/?p=1',0,'post','',1), +(2,1,'2024-07-16 21:54:43','2024-07-16 21:54:43','\n

    This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

    \n\n\n\n

    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)

    \n\n\n\n

    ...or something like this:

    \n\n\n\n

    The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

    \n\n\n\n

    As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

    \n','Sample Page','','trash','closed','open','','sample-page__trashed','','','2024-07-16 22:29:58','2024-07-16 22:29:58','',0,'http://localhost:8080/?page_id=2',0,'page','',0), +(3,1,'2024-07-16 21:54:43','2024-07-16 21:54:43','\n

    Who we are

    \n\n\n

    Suggested text: Our website address is: http://localhost:8080.

    \n\n\n

    Comments

    \n\n\n

    Suggested text: When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

    \n\n\n

    An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.

    \n\n\n

    Media

    \n\n\n

    Suggested text: If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.

    \n\n\n

    Cookies

    \n\n\n

    Suggested text: If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.

    \n\n\n

    If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

    \n\n\n

    When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

    \n\n\n

    If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.

    \n\n\n

    Embedded content from other websites

    \n\n\n

    Suggested text: Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.

    \n\n\n

    These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.

    \n\n\n

    Who we share your data with

    \n\n\n

    Suggested text: If you request a password reset, your IP address will be included in the reset email.

    \n\n\n

    How long we retain your data

    \n\n\n

    Suggested text: If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.

    \n\n\n

    For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.

    \n\n\n

    What rights you have over your data

    \n\n\n

    Suggested text: If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.

    \n\n\n

    Where your data is sent

    \n\n\n

    Suggested text: Visitor comments may be checked through an automated spam detection service.

    \n\n','Privacy Policy','','trash','closed','open','','privacy-policy__trashed','','','2024-07-16 22:29:58','2024-07-16 22:29:58','',0,'http://localhost:8080/?page_id=3',0,'page','',0), +(4,1,'2024-07-16 21:56:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-07-16 21:56:15','0000-00-00 00:00:00','',0,'http://localhost:8080/?p=4',0,'post','',0), +(5,1,'2024-07-16 22:10:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-16 22:10:34','0000-00-00 00:00:00','',0,'http://localhost:8080/?p=5',0,'wp_block','',0), +(6,1,'2024-07-16 22:10:35','2024-07-16 22:10:35','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-astra','','','2024-07-16 22:10:35','2024-07-16 22:10:35','',0,'http://localhost:8080/?p=6',0,'wp_global_styles','',0), +(7,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Logo','','inherit','open','closed','','logo-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/wp-content/uploads/2024/07/logo.png',0,'attachment','image/png',0), +(8,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Home','','publish','closed','closed','','home','','','2024-07-17 19:54:06','2024-07-17 19:54:06','',0,'http://localhost:8080/?page_id=8',0,'page','',0), +(9,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 7,\n 8\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:11:03\"\n },\n \"nav_menu[-1]\": {\n \"value\": {\n \"name\": \"Primary\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-1]\": {\n \"value\": {\n \"object_id\": 8,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"post_type\",\n \"title\": \"Home\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-2]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Services\",\n \"url\": \"#services\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-3]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"About\",\n \"url\": \"#about\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-4]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"custom\",\n \"title\": \"Reviews\",\n \"url\": \"#reviews\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-5]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"custom\",\n \"title\": \"Why Us\",\n \"url\": \"#whyus\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-6]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 5,\n \"type\": \"custom\",\n \"title\": \"Contact\",\n \"url\": \"#contact\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"astra::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:11:03\"\n },\n \"nav_menu[-7]\": {\n \"value\": {\n \"name\": \"Primary\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-7]\": {\n \"value\": {\n \"object_id\": 8,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"post_type\",\n \"title\": \"Home\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": -7,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-8]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Services\",\n \"url\": \"#services\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -7,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-9]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"About\",\n \"url\": \"#about\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -7,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-10]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"custom\",\n \"title\": \"Reviews\",\n \"url\": \"#reviews\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -7,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-11]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"custom\",\n \"title\": \"Why Us\",\n \"url\": \"#whyus\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -7,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-12]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 5,\n \"type\": \"custom\",\n \"title\": \"Contact\",\n \"url\": \"#contact\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -7,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"astra::nav_menu_locations[mobile_menu]\": {\n \"starter_content\": true,\n \"value\": -7,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:11:03\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:11:03\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:11:03\"\n },\n \"astra::custom_logo\": {\n \"value\": 10,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:18:58\"\n },\n \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n \"value\": {\n \"desktop\": {\n \"background-color\": \"var(--ast-global-color-0)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"color\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"tablet\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"mobile\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n }\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:16:24\"\n },\n \"astra-settings[content-bg-obj-responsive]\": {\n \"value\": {\n \"desktop\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"tablet\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"mobile\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n }\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:15:24\"\n },\n \"astra-settings[global-color-palette]\": {\n \"value\": {\n \"palette\": [\n \"#4a0d66\",\n \"#0060df\",\n \"#0F172A\",\n \"#454F5E\",\n \"#ededf0\",\n \"#FFFFFF\",\n \"#f0f0f4\",\n \"#0D0614\",\n \"#222222\"\n ],\n \"flag\": false\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:15:24\"\n },\n \"astra-color-palettes\": {\n \"value\": {\n \"currentPalette\": \"palette_3\",\n \"palettes\": {\n \"palette_1\": [\n \"#046bd2\",\n \"#045cb4\",\n \"#1e293b\",\n \"#334155\",\n \"#F0F5FA\",\n \"#FFFFFF\",\n \"#D1D5DB\",\n \"#111111\",\n \"#111111\"\n ],\n \"palette_2\": [\n \"#0067FF\",\n \"#005EE9\",\n \"#0F172A\",\n \"#364151\",\n \"#E7F6FF\",\n \"#FFFFFF\",\n \"#D1DAE5\",\n \"#070614\",\n \"#222222\"\n ],\n \"palette_3\": [\n \"#4a0d66\",\n \"#0060df\",\n \"#0F172A\",\n \"#454F5E\",\n \"#ededf0\",\n \"#FFFFFF\",\n \"#f0f0f4\",\n \"#0D0614\",\n \"#222222\"\n ]\n },\n \"presets\": {\n \"preset_1\": [\n \"#0067FF\",\n \"#005EE9\",\n \"#0F172A\",\n \"#364151\",\n \"#E7F6FF\",\n \"#FFFFFF\",\n \"#D1DAE5\",\n \"#070614\",\n \"#222222\"\n ],\n \"preset_2\": [\n \"#6528F7\",\n \"#5511F8\",\n \"#0F172A\",\n \"#454F5E\",\n \"#F2F0FE\",\n \"#FFFFFF\",\n \"#D8D8F5\",\n \"#0D0614\",\n \"#222222\"\n ],\n \"preset_3\": [\n \"#DD183B\",\n \"#CC1939\",\n \"#0F172A\",\n \"#3A3A3A\",\n \"#FFEDE6\",\n \"#FFFFFF\",\n \"#FFD1BF\",\n \"#140609\",\n \"#222222\"\n ],\n \"preset_4\": [\n \"#54B435\",\n \"#379237\",\n \"#0F172A\",\n \"#2F3B40\",\n \"#EDFBE2\",\n \"#FFFFFF\",\n \"#D5EAD8\",\n \"#0C1406\",\n \"#222222\"\n ],\n \"preset_5\": [\n \"#DCA54A\",\n \"#D09A40\",\n \"#0F172A\",\n \"#4A4A4A\",\n \"#FAF5E5\",\n \"#FFFFFF\",\n \"#F0E6C5\",\n \"#141004\",\n \"#222222\"\n ],\n \"preset_6\": [\n \"#FB5FAB\",\n \"#EA559D\",\n \"#0F172A\",\n \"#454F5E\",\n \"#FCEEF5\",\n \"#FFFFFF\",\n \"#FAD8E9\",\n \"#140610\",\n \"#222222\"\n ],\n \"preset_7\": [\n \"#1B9C85\",\n \"#178E79\",\n \"#0F172A\",\n \"#454F5E\",\n \"#EDF6EE\",\n \"#FFFFFF\",\n \"#D4F3D7\",\n \"#06140C\",\n \"#222222\"\n ],\n \"preset_8\": [\n \"#FD9800\",\n \"#E98C00\",\n \"#0F172A\",\n \"#454F5E\",\n \"#FEF9E1\",\n \"#FFFFFF\",\n \"#F9F0C8\",\n \"#141006\",\n \"#222222\"\n ],\n \"preset_9\": [\n \"#FF6210\",\n \"#F15808\",\n \"#1C0D0A\",\n \"#353535\",\n \"#FEF1E4\",\n \"#FFFFFF\",\n \"#E5D7D1\",\n \"#140B06\",\n \"#222222\"\n ],\n \"preset_10\": [\n \"#737880\",\n \"#65696F\",\n \"#151616\",\n \"#393C40\",\n \"#F6F6F6\",\n \"#FFFFFF\",\n \"#F1F0F0\",\n \"#232529\",\n \"#222222\"\n ]\n },\n \"flag\": false\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:15:24\"\n },\n \"astra-settings[body-font-family]\": {\n \"value\": \"\'Source Sans Pro\', sans-serif\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[body-font-variant]\": {\n \"value\": \"400\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-body]\": {\n \"value\": {\n \"desktop\": 17,\n \"tablet\": 17,\n \"mobile\": 17,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[headings-font-family]\": {\n \"value\": \"\'Montserrat\', sans-serif\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[headings-font-variant]\": {\n \"value\": \"700\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-h1]\": {\n \"value\": {\n \"desktop\": 48,\n \"tablet\": 36,\n \"mobile\": 32,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-h2]\": {\n \"value\": {\n \"desktop\": 40,\n \"tablet\": 30,\n \"mobile\": 26,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-h3]\": {\n \"value\": {\n \"desktop\": 32,\n \"tablet\": 25,\n \"mobile\": 22,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-h4]\": {\n \"value\": {\n \"desktop\": 24,\n \"tablet\": 20,\n \"mobile\": 18,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-h5]\": {\n \"value\": {\n \"desktop\": 20,\n \"tablet\": 17,\n \"mobile\": 15,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[font-size-h6]\": {\n \"value\": {\n \"desktop\": 17,\n \"tablet\": 15,\n \"mobile\": 13,\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-typography-presets\": {\n \"value\": \"typo-preset-04\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:12:24\"\n },\n \"astra-settings[ast-site-content-layout]\": {\n \"value\": \"full-width-container\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:16:24\"\n },\n \"astra-settings[heading-base-color]\": {\n \"value\": \"var(--ast-global-color-4)\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:16:24\"\n },\n \"astra-settings[ast-header-responsive-logo-width]\": {\n \"value\": {\n \"desktop\": 119,\n \"tablet\": \"\",\n \"mobile\": \"\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:18:58\"\n },\n \"astra-settings[logo-title-inline]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:18:58\"\n }\n}','','','trash','closed','closed','','55488446-35f1-497b-8005-e04a6d2e75c1','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=9',0,'customize_changeset','',0), +(10,1,'2024-07-16 22:17:43','2024-07-16 22:17:43','','logo','','inherit','open','closed','','logo','','','2024-07-16 22:18:00','2024-07-16 22:18:00','',0,'http://localhost:8080/wp-content/uploads/2024/07/logo-1.png',0,'attachment','image/png',0), +(11,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','\n
    \n
    \n
    \n

    Your Idea Matters!

    \n\n\n\n

    Pulvinar enim ac tortor nulla facilisi tristique facilisi
    elementum sollicitudin eget lorem.

    \n\n\n\n\n
    \"\"
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n
    \"\"
    \n\n\n\n

    Local Business

    \n\n\n\n

    Lorem ipsum dolor consectetur adipiscing elit eiusmod.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Online Store

    \n\n\n\n

    Lorem ipsum dolor consectetur adipiscing elit eiusmod.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Blogging

    \n\n\n\n

    Lorem ipsum dolor consectetur adipiscing elit eiusmod.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Portfolio

    \n\n\n\n

    Lorem ipsum dolor consectetur adipiscing elit eiusmod.

    \n
    \n
    \n
    \n\n\n\n
    \n

    Our Services

    \n\n\n\n
    \n
    \n
    \"\"
    \n\n\n\n

    Branding Design

    \n\n\n\n

    Sem quis erat nibh id neque tincidunt molestie convallis ut nibh vel, lorem consequat ullamcorper.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Graphic Design

    \n\n\n\n

    Sem quis erat nibh id neque tincidunt molestie convallis ut nibh vel, lorem consequat ullamcorper.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Web Development

    \n\n\n\n

    Sem quis erat nibh id neque tincidunt molestie convallis ut nibh vel, lorem consequat ullamcorper.

    \n
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n

    We help teams build the business of their dreams

    \n\n\n\n

    Et in risus egestas nec vitae odio ac nibh vestibulum volutpat aliquet aenean erat lobortis non.

    \n\n\n\n

    Nibh egestas dictumst cursus est turpis quis tincidunt pulvinar maecenas eget massa vel, ante nam blandit egestas enim id quis sit maecenas id nunc tempus auctor orci, enim imperdiet proin nibh mattis.

    \n
    \n
    \"\"
    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    “The best part is that Astra comes with hundreds of professionally designed templates for just about every industry, makes it super easy for non-techy users to build a website.”

    \n\n\n\n

    Wade Warren

    \n
    \n\n\n\n
    \n

    Why Choose Us

    \n\n\n\n
    \n
    \n
    \"\"
    \n\n\n\n

    Passionate

    \n\n\n\n

    Tempor ullamcorper urna, est, lectus amet sit tempor pretium mi sed morbi cras posuere sit ultrices bibendum augue sit ornare.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Professional

    \n\n\n\n

    Tempor ullamcorper urna, est, lectus amet sit tempor pretium mi sed morbi cras posuere sit ultrices bibendum augue sit ornare.

    \n
    \n\n\n\n
    \n
    \"\"
    \n\n\n\n

    Support

    \n\n\n\n

    Tempor ullamcorper urna, est, lectus amet sit tempor pretium mi sed morbi cras posuere sit ultrices bibendum augue sit ornare.

    \n
    \n
    \n
    \n\n\n\n
    \n

    Get a professional website today!

    \n\n\n\n\n
    \n','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',8,'http://localhost:8080/?p=11',0,'revision','',0), +(12,1,'2024-07-16 22:44:21','2024-07-16 22:19:24',' ','','','publish','closed','closed','','12','','','2024-07-16 22:44:21','2024-07-16 22:44:21','',0,'http://localhost:8080/?p=12',1,'nav_menu_item','',0), +(18,1,'2024-07-16 22:19:24','2024-07-16 22:19:24',' ','','','publish','closed','closed','','18','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=18',0,'nav_menu_item','',0), +(19,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Services','','publish','closed','closed','','services-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=19',1,'nav_menu_item','',0), +(20,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','About','','publish','closed','closed','','about-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=20',2,'nav_menu_item','',0), +(21,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Reviews','','publish','closed','closed','','reviews-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=21',3,'nav_menu_item','',0), +(22,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Why Us','','publish','closed','closed','','why-us-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=22',4,'nav_menu_item','',0), +(23,1,'2024-07-16 22:19:25','2024-07-16 22:19:25','','Contact','','publish','closed','closed','','contact-2','','','2024-07-16 22:19:25','2024-07-16 22:19:25','',0,'http://localhost:8080/?p=23',5,'nav_menu_item','',0), +(24,1,'2024-07-16 22:19:43','2024-07-16 22:19:43','{\n \"astra-settings[ast-header-responsive-logo-width]\": {\n \"value\": {\n \"desktop\": 133,\n \"tablet\": \"\",\n \"mobile\": \"\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:43\"\n }\n}','','','trash','closed','closed','','36b13d0a-3887-445d-95fc-92b7f45127ba','','','2024-07-16 22:19:43','2024-07-16 22:19:43','',0,'http://localhost:8080/?p=24',0,'customize_changeset','',0), +(25,1,'2024-07-16 22:24:46','2024-07-16 22:24:46','{\n \"astra-settings[header-desktop-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_left_center\": [],\n \"above_center\": [\n \"logo\"\n ],\n \"above_right_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [],\n \"primary_left_center\": [],\n \"primary_center\": [\n \"menu-1\"\n ],\n \"primary_right_center\": [],\n \"primary_right\": []\n },\n \"below\": {\n \"below_left\": [],\n \"below_left_center\": [],\n \"below_center\": [],\n \"below_right_center\": [],\n \"below_right\": []\n },\n \"flag\": true\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-preset-style]\": {\n \"value\": \"preset_4\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-mobile-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"search\",\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [\n \"logo\"\n ],\n \"primary_center\": [],\n \"primary_right\": [\n \"mobile-trigger\"\n ]\n },\n \"below\": {\n \"below_left\": [],\n \"below_center\": [],\n \"below_right\": []\n },\n \"flag\": true\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[hba-header-separator]\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-button1-text]\": {\n \"value\": \"Sign up\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-html-1]\": {\n \"value\": \"Log in\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-menu1-submenu-width]\": {\n \"value\": 886,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[button-preset-style]\": {\n \"value\": \"button_03\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[theme-button-padding]\": {\n \"value\": {\n \"desktop\": {\n \"top\": 10,\n \"right\": 20,\n \"bottom\": 10,\n \"left\": 20\n },\n \"tablet\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"mobile\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[theme-button-border-group-border-size]\": {\n \"value\": {\n \"top\": 0,\n \"right\": 0,\n \"bottom\": 0,\n \"left\": 0\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[button-radius-fields]\": {\n \"value\": {\n \"desktop\": {\n \"top\": 30,\n \"right\": 30,\n \"bottom\": 30,\n \"left\": 30\n },\n \"tablet\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"mobile\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[secondary-button-preset-style]\": {\n \"value\": \"button_03\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[secondary-theme-button-padding]\": {\n \"value\": {\n \"desktop\": {\n \"top\": 10,\n \"right\": 20,\n \"bottom\": 10,\n \"left\": 20\n },\n \"tablet\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"mobile\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[secondary-theme-button-border-group-border-size]\": {\n \"value\": {\n \"top\": 0,\n \"right\": 0,\n \"bottom\": 0,\n \"left\": 0\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[secondary-button-radius-fields]\": {\n \"value\": {\n \"desktop\": {\n \"top\": 30,\n \"right\": 30,\n \"bottom\": 30,\n \"left\": 30\n },\n \"tablet\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"mobile\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"desktop-unit\": \"px\",\n \"tablet-unit\": \"px\",\n \"mobile-unit\": \"px\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[site-content-style]\": {\n \"value\": \"boxed\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n \"value\": {\n \"desktop\": {\n \"background-color\": \"var(--ast-global-color-4)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"color\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"tablet\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"mobile\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n }\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[content-bg-obj-responsive]\": {\n \"value\": {\n \"desktop\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"color\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"tablet\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"color\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"mobile\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"background-type\": \"color\",\n \"background-media\": \"\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n }\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n }\n}','','','trash','closed','closed','','f72519d4-d73c-498c-a2ff-4907f9fe57d3','','','2024-07-16 22:24:46','2024-07-16 22:24:46','',0,'http://localhost:8080/?p=25',0,'customize_changeset','',0), +(26,1,'2024-07-16 22:29:20','2024-07-16 22:29:20','{\n \"astra-settings[header-desktop-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_left_center\": [],\n \"above_center\": [\n \"logo\"\n ],\n \"above_right_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [],\n \"primary_left_center\": [],\n \"primary_center\": [\n \"menu-1\"\n ],\n \"primary_right_center\": [],\n \"primary_right\": []\n },\n \"below\": {\n \"below_left\": [],\n \"below_left_center\": [],\n \"below_center\": [],\n \"below_right_center\": [],\n \"below_right\": []\n },\n \"flag\": true\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n },\n \"astra-settings[transparent-header-enable]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:26:12\"\n },\n \"astra-settings[transparent-header-on-devices]\": {\n \"value\": \"mobile\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:26:12\"\n },\n \"astra-settings[header-mobile-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"search\",\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [\n \"logo\"\n ],\n \"primary_center\": [],\n \"primary_right\": [\n \"mobile-trigger\"\n ]\n },\n \"below\": {\n \"below_left\": [],\n \"below_center\": [],\n \"below_right\": []\n },\n \"flag\": false\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:28:12\"\n },\n \"astra-settings[different-transparent-logo]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:27:12\"\n },\n \"astra-settings[title_tagline-visibility-responsive]\": {\n \"value\": {\n \"desktop\": 1,\n \"tablet\": 1,\n \"mobile\": 1\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n },\n \"astra-settings[header-menu1-submenu-width]\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n },\n \"astra-settings[header-menu1-submenu-item-border]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n }\n}','','','trash','closed','closed','','b7e8d8ff-da73-4201-ac79-c15e2c54871c','','','2024-07-16 22:29:20','2024-07-16 22:29:20','',0,'http://localhost:8080/?p=26',0,'customize_changeset','',0), +(27,1,'2024-07-16 22:29:58','2024-07-16 22:29:58','\n

    Who we are

    \n\n\n

    Suggested text: Our website address is: http://localhost:8080.

    \n\n\n

    Comments

    \n\n\n

    Suggested text: When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

    \n\n\n

    An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.

    \n\n\n

    Media

    \n\n\n

    Suggested text: If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.

    \n\n\n

    Cookies

    \n\n\n

    Suggested text: If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.

    \n\n\n

    If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

    \n\n\n

    When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

    \n\n\n

    If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.

    \n\n\n

    Embedded content from other websites

    \n\n\n

    Suggested text: Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.

    \n\n\n

    These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.

    \n\n\n

    Who we share your data with

    \n\n\n

    Suggested text: If you request a password reset, your IP address will be included in the reset email.

    \n\n\n

    How long we retain your data

    \n\n\n

    Suggested text: If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.

    \n\n\n

    For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.

    \n\n\n

    What rights you have over your data

    \n\n\n

    Suggested text: If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.

    \n\n\n

    Where your data is sent

    \n\n\n

    Suggested text: Visitor comments may be checked through an automated spam detection service.

    \n\n','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-07-16 22:29:58','2024-07-16 22:29:58','',3,'http://localhost:8080/?p=27',0,'revision','',0), +(28,1,'2024-07-16 22:29:58','2024-07-16 22:29:58','\n

    This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

    \n\n\n\n

    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)

    \n\n\n\n

    ...or something like this:

    \n\n\n\n

    The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

    \n\n\n\n

    As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

    \n','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2024-07-16 22:29:58','2024-07-16 22:29:58','',2,'http://localhost:8080/?p=28',0,'revision','',0), +(29,1,'2024-07-16 22:58:48','2024-07-16 22:58:48','\n

    Charitable Askar Association for Development and Community Development, established in 1992 and officially registered as an NGO since 2019, is located in \"New Askar Camp” in Nablus. It is a member of the Union of Local Committees for Rehabilitation. The organization was founded with a mission to promote societal advancement through education and peace-building across all sectors, advocating for a state founded on non-violent principles. Today, the association\'s primary focus areas include women\'s empowerment, youth and children, disabilities, cultural activities, and raising awareness on various social, economic, and environmental issues within the community. It highlights the interconnected challenges between international development cooperation and development education.

    \n','Who we are','','publish','closed','closed','','who-we-are','','','2024-07-16 22:58:48','2024-07-16 22:58:48','',55,'http://localhost:8080/?page_id=29',0,'page','',0), +(30,1,'2024-07-16 22:30:42','2024-07-16 22:30:42','\n

    Charitable Askar Association for Development and Community Development, established in 1992 and officially registered as an NGO since 2019, is located in \"New Askar Camp” in Nablus. It is a member of the Union of Local Committees for Rehabilitation. The organization was founded with a mission to promote societal advancement through education and peace-building across all sectors, advocating for a state founded on non-violent principles. Today, the association\'s primary focus areas include women\'s empowerment, youth and children, disabilities, cultural activities, and raising awareness on various social, economic, and environmental issues within the community. It highlights the interconnected challenges between international development cooperation and development education.

    \n','Who we are','','inherit','closed','closed','','29-revision-v1','','','2024-07-16 22:30:42','2024-07-16 22:30:42','',29,'http://localhost:8080/?p=30',0,'revision','',0), +(31,1,'2024-07-16 22:58:26','2024-07-16 22:58:26','\n

    Charitable Askar Association for Development and Community Development works for a more conscious and cohesive society, through sustainable social development and non-violent means. In this context, the organization has an explicit (but not exclusive) focus on a set of core issues: inclusion, diversity, education, and community empowerment. Especially educating the community for enhancing confidence through a participative approach is thought to fulfill the families\' aspirations for the future, by adopting the following values:

    \n\n\n\n\n','Mission and Vision','','publish','closed','closed','','mission-and-vision','','','2024-07-16 22:58:26','2024-07-16 22:58:26','',55,'http://localhost:8080/?page_id=31',0,'page','',0), +(32,1,'2024-07-16 22:32:46','2024-07-16 22:32:46','\n

    Charitable Askar Association for Development and Community Development works for a more conscious and cohesive society, through sustainable social development and non-violent means. In this context, the organization has an explicit (but not exclusive) focus on a set of core issues: inclusion, diversity, education, and community empowerment. Especially educating the community for enhancing confidence through a participative approach is thought to fulfill the families’ aspirations for the future, by adopting the following values:

    \n\n\n\n\n','Mission and Vision','','inherit','closed','closed','','31-revision-v1','','','2024-07-16 22:32:46','2024-07-16 22:32:46','',31,'http://localhost:8080/?p=32',0,'revision','',0), +(33,1,'2024-07-16 22:34:14','2024-07-16 22:34:14','\n

    Charitable Askar Association for Development and Community Development works for a more conscious and cohesive society, through sustainable social development and non-violent means. In this context, the organization has an explicit (but not exclusive) focus on a set of core issues: inclusion, diversity, education, and community empowerment. Especially educating the community for enhancing confidence through a participative approach is thought to fulfill the families\' aspirations for the future, by adopting the following values:

    \n\n\n\n\n','Mission and Vision','','inherit','closed','closed','','31-revision-v1','','','2024-07-16 22:34:14','2024-07-16 22:34:14','',31,'http://localhost:8080/?p=33',0,'revision','',0), +(34,1,'2024-07-16 22:58:31','2024-07-16 22:58:31','','Our Values','','publish','closed','closed','','our-values','','','2024-07-16 22:58:31','2024-07-16 22:58:31','',55,'http://localhost:8080/?page_id=34',0,'page','',0), +(35,1,'2024-07-16 22:34:29','2024-07-16 22:34:29','','Our Values','','inherit','closed','closed','','34-revision-v1','','','2024-07-16 22:34:29','2024-07-16 22:34:29','',34,'http://localhost:8080/?p=35',0,'revision','',0), +(36,1,'2024-07-16 22:58:44','2024-07-16 22:58:44','\n

    The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.

    \n\n\n\n\n','Strategic Objectives and Theory of Change','','publish','closed','closed','','strategic-objectives-and-theory-of-change','','','2024-07-16 22:58:44','2024-07-16 22:58:44','',55,'http://localhost:8080/?page_id=36',0,'page','',0), +(37,1,'2024-07-16 22:35:15','2024-07-16 22:35:15','\n

    The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.

    \n\n\n\n\n','Strategic Objectives and Theory of Change','','inherit','closed','closed','','36-revision-v1','','','2024-07-16 22:35:15','2024-07-16 22:35:15','',36,'http://localhost:8080/?p=37',0,'revision','',0), +(38,1,'2024-07-16 22:58:21','2024-07-16 22:58:21','','Ethical charter','','publish','closed','closed','','ethical-charter','','','2024-07-16 22:58:21','2024-07-16 22:58:21','',55,'http://localhost:8080/?page_id=38',0,'page','',0), +(39,1,'2024-07-16 22:35:42','2024-07-16 22:35:42','','Ethical charter','','inherit','closed','closed','','38-revision-v1','','','2024-07-16 22:35:42','2024-07-16 22:35:42','',38,'http://localhost:8080/?p=39',0,'revision','',0), +(40,1,'2024-07-16 22:58:37','2024-07-16 22:58:37','\n

    Partner International Organizations

    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n

    Partner Local Institutions

    \n\n\n\n
    \"\"
    \n','Partners','','publish','closed','closed','','partners','','','2024-07-16 22:58:37','2024-07-16 22:58:37','',55,'http://localhost:8080/?page_id=40',0,'page','',0), +(41,1,'2024-07-16 22:36:19','2024-07-16 22:36:19','','image','','inherit','open','closed','','image','','','2024-07-16 22:36:19','2024-07-16 22:36:19','',40,'http://localhost:8080/wp-content/uploads/2024/07/image.png',0,'attachment','image/png',0), +(42,1,'2024-07-16 22:36:28','2024-07-16 22:36:28','','image-1','','inherit','open','closed','','image-1','','','2024-07-16 22:36:28','2024-07-16 22:36:28','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-1.png',0,'attachment','image/png',0), +(43,1,'2024-07-16 22:36:49','2024-07-16 22:36:49','','image-2','','inherit','open','closed','','image-2','','','2024-07-16 22:36:49','2024-07-16 22:36:49','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-2.png',0,'attachment','image/png',0), +(44,1,'2024-07-16 22:37:42','2024-07-16 22:37:42','','image-3','','inherit','open','closed','','image-3','','','2024-07-16 22:37:42','2024-07-16 22:37:42','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-3.png',0,'attachment','image/png',0), +(45,1,'2024-07-16 22:37:50','2024-07-16 22:37:50','','image-4','','inherit','open','closed','','image-4','','','2024-07-16 22:37:50','2024-07-16 22:37:50','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-4.png',0,'attachment','image/png',0), +(46,1,'2024-07-16 22:38:06','2024-07-16 22:38:06','','image-5','','inherit','open','closed','','image-5','','','2024-07-16 22:38:06','2024-07-16 22:38:06','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-5.png',0,'attachment','image/png',0), +(47,1,'2024-07-16 22:38:11','2024-07-16 22:38:11','','image-6','','inherit','open','closed','','image-6','','','2024-07-16 22:38:11','2024-07-16 22:38:11','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-6.png',0,'attachment','image/png',0), +(48,1,'2024-07-16 22:38:18','2024-07-16 22:38:18','','image-7','','inherit','open','closed','','image-7','','','2024-07-16 22:38:18','2024-07-16 22:38:18','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-7.png',0,'attachment','image/png',0), +(49,1,'2024-07-16 22:38:32','2024-07-16 22:38:32','','image-8','','inherit','open','closed','','image-8','','','2024-07-16 22:38:32','2024-07-16 22:38:32','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-8.png',0,'attachment','image/png',0), +(50,1,'2024-07-16 22:39:57','2024-07-16 22:39:57','','image-9','','inherit','open','closed','','image-9','','','2024-07-16 22:39:57','2024-07-16 22:39:57','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-9.png',0,'attachment','image/png',0), +(51,1,'2024-07-16 22:40:16','2024-07-16 22:40:16','','image-10','','inherit','open','closed','','image-10','','','2024-07-16 22:40:16','2024-07-16 22:40:16','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-10.png',0,'attachment','image/png',0), +(52,1,'2024-07-16 22:40:36','2024-07-16 22:40:36','','image-11','','inherit','open','closed','','image-11','','','2024-07-16 22:40:36','2024-07-16 22:40:36','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-11.png',0,'attachment','image/png',0), +(53,1,'2024-07-16 22:40:46','2024-07-16 22:40:46','','image-12','','inherit','open','closed','','image-12','','','2024-07-16 22:40:46','2024-07-16 22:40:46','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-12.png',0,'attachment','image/png',0), +(54,1,'2024-07-16 22:41:18','2024-07-16 22:41:18','\n

    Partner International Organizations

    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n
    \"\"
    \n\n\n\n

    Partner Local Institutions

    \n\n\n\n
    \"\"
    \n','Partners','','inherit','closed','closed','','40-revision-v1','','','2024-07-16 22:41:18','2024-07-16 22:41:18','',40,'http://localhost:8080/?p=54',0,'revision','',0), +(55,1,'2024-07-16 22:45:30','2024-07-16 22:45:30','','About Us','','publish','closed','closed','','about-us','','','2024-07-16 22:45:30','2024-07-16 22:45:30','',0,'http://localhost:8080/?page_id=55',0,'page','',0), +(56,1,'2024-07-16 22:45:04','2024-07-16 22:45:04','','About Us','','inherit','closed','closed','','55-revision-v1','','','2024-07-16 22:45:04','2024-07-16 22:45:04','',55,'http://localhost:8080/?p=56',0,'revision','',0), +(57,1,'2024-07-16 22:50:50','2024-07-16 22:50:50','{\n \"astra::nav_menu_locations[secondary_menu]\": {\n \"value\": 3,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[14]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[13]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"nav_menu_item[15]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"nav_menu_item[16]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"nav_menu_item[17]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"astra-settings[header-mobile-menu-bg-obj-responsive]\": {\n \"value\": {\n \"desktop\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"tablet\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\",\n \"background-type\": \"color\"\n },\n \"mobile\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n }\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[-6814578225419630000]\": {\n \"value\": {\n \"object_id\": 55,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"About Us\",\n \"url\": \"http://localhost:8080/?page_id=55\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": 3,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[-7579766264511752000]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n }\n}','','','trash','closed','closed','','fc3aa876-9be9-4199-82af-c52e6cd63a68','','','2024-07-16 22:50:50','2024-07-16 22:50:50','',0,'http://localhost:8080/?p=57',0,'customize_changeset','',0), +(58,1,'2024-07-16 22:50:50','2024-07-16 22:50:50',' ','','','publish','closed','closed','','58','','','2024-07-16 22:50:50','2024-07-16 22:50:50','',0,'http://localhost:8080/?p=58',2,'nav_menu_item','',0), +(59,1,'2024-07-16 22:55:16','0000-00-00 00:00:00','','Home','','auto-draft','closed','closed','','','','','2024-07-16 22:55:16','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=59',0,'page','',0), +(60,1,'2024-07-16 22:55:50','2024-07-16 22:55:50','{\n \"prime-education::nav_menu_locations[primary]\": {\n \"value\": -1751317898634156000,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:55:50\"\n },\n \"nav_menu[-1751317898634156000]\": {\n \"value\": {\n \"name\": \"Nav\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": true\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:55:50\"\n }\n}','','','trash','closed','closed','','ad161b47-abc0-4a0f-a9a4-9f9c547d1ba7','','','2024-07-16 22:55:50','2024-07-16 22:55:50','',0,'http://localhost:8080/?p=60',0,'customize_changeset','',0), +(61,1,'2024-07-16 22:56:32','0000-00-00 00:00:00','','About Us','','auto-draft','closed','closed','','','','','2024-07-16 22:56:32','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=61',0,'page','',0), +(62,1,'2024-07-16 22:57:28','2024-07-16 22:57:28','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#4a0d66\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#3f085b\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#ae92bb\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfour','','','2024-07-17 19:52:43','2024-07-17 19:52:43','',0,'http://localhost:8080/?p=62',0,'wp_global_styles','',0), +(63,1,'2024-07-16 22:57:30','2024-07-16 22:57:30','\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n','Primary','','publish','closed','closed','','primary','','','2024-07-17 20:23:05','2024-07-17 20:23:05','',0,'http://localhost:8080/?p=63',0,'wp_navigation','',0), +(64,1,'2024-07-16 23:02:02','2024-07-16 23:02:02','\n
    \n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n
    \n\n\n\n
    \n
    \n
    \n

    About

    \n\n\n\n
    \n\n\n\n\n\n
    \n
    \n\n\n\n
    \n

    Privacy

    \n\n\n\n
    \n\n\n\n\n\n
    \n
    \n\n\n\n
    \n

    Social

    \n\n\n\n
    \n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \n

    \n Designed with WordPress

    \n
    \n
    \n','Footer','','publish','closed','closed','','footer','','','2024-07-16 23:02:02','2024-07-16 23:02:02','',0,'http://localhost:8080/?p=64',0,'wp_template_part','',0), +(65,1,'2024-07-16 23:02:02','2024-07-16 23:02:02','\n\n\n\n\n\n\n\n\n\n\n\n\n\n','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-16 23:02:02','2024-07-16 23:02:02','',63,'http://localhost:8080/?p=65',0,'revision','',0), +(66,1,'2024-07-16 23:03:15','2024-07-16 23:03:15','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"var(--wp--preset--color--base-2)\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#38629F\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#244E8A\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#D5E0F0\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-16 23:03:15','2024-07-16 23:03:15','',62,'http://localhost:8080/?p=66',0,'revision','',0), +(67,1,'2024-07-17 19:51:55','2024-07-17 19:51:55','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#38629F\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#244E8A\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#D5E0F0\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-17 19:51:55','2024-07-17 19:51:55','',62,'http://localhost:8080/?p=67',0,'revision','',0), +(68,1,'2024-07-17 19:52:19','2024-07-17 19:52:19','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#4a0d66\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#3f085b\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#D5E0F0\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-17 19:52:19','2024-07-17 19:52:19','',62,'http://localhost:8080/?p=68',0,'revision','',0), +(69,1,'2024-07-17 19:52:43','2024-07-17 19:52:43','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#4a0d66\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#3f085b\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#ae92bb\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-17 19:52:43','2024-07-17 19:52:43','',62,'http://localhost:8080/?p=69',0,'revision','',0), +(70,1,'2024-07-17 19:54:06','2024-07-17 19:54:06','\n\n\n
    \n
    \n
    \n\n\n\n\n\n
    \n\n\n
    \n\n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','publish','closed','closed','','page','','','2024-07-17 20:26:36','2024-07-17 20:26:36','',0,'http://localhost:8080/?p=70',0,'wp_template','',0), +(71,1,'2024-07-17 19:54:06','2024-07-17 19:54:06','','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-17 19:54:06','2024-07-17 19:54:06','',8,'http://localhost:8080/?p=71',0,'revision','',0), +(72,1,'2024-07-17 20:01:08','2024-07-17 20:01:08','\n\n\n
    \n
    \n
    \n\n\n\n\n\n
    \n\n\n
    \n\n\n
    \n','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','inherit','closed','closed','','70-revision-v1','','','2024-07-17 20:01:08','2024-07-17 20:01:08','',70,'http://localhost:8080/?p=72',0,'revision','',0), +(73,1,'2024-07-17 20:05:05','2024-07-17 20:05:05','','Our Work','','publish','closed','closed','','our-work','','','2024-07-17 20:05:05','2024-07-17 20:05:05','',0,'http://localhost:8080/?page_id=73',0,'page','',0), +(74,1,'2024-07-17 20:05:05','2024-07-17 20:05:05',' ','','','publish','closed','closed','','74','','','2024-07-17 20:05:05','2024-07-17 20:05:05','',0,'http://localhost:8080/?p=74',0,'nav_menu_item','',0), +(75,1,'2024-07-17 20:05:05','2024-07-17 20:05:05','','Our Work','','inherit','closed','closed','','73-revision-v1','','','2024-07-17 20:05:05','2024-07-17 20:05:05','',73,'http://localhost:8080/?p=75',0,'revision','',0), +(76,1,'2024-07-17 20:07:23','2024-07-17 20:07:23','\n\n','Main Units','','publish','closed','closed','','main-units','','','2024-07-17 20:07:23','2024-07-17 20:07:23','',73,'http://localhost:8080/?page_id=76',0,'page','',0), +(77,1,'2024-07-17 20:07:23','2024-07-17 20:07:23','\n\n','Main Units','','inherit','closed','closed','','76-revision-v1','','','2024-07-17 20:07:23','2024-07-17 20:07:23','',76,'http://localhost:8080/?p=77',0,'revision','',0), +(78,1,'2024-07-17 20:09:08','2024-07-17 20:09:08','\n

    The project “Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp” is funded by the Palestine Solidarity Association of Sweden “PGS”.

    \n\n\n\n

    The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.

    \n\n\n\n

    Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:

    \n\n\n\n\n','Projects','','publish','closed','closed','','projects','','','2024-07-17 20:09:08','2024-07-17 20:09:08','',73,'http://localhost:8080/?page_id=78',0,'page','',0), +(79,1,'2024-07-17 20:09:08','2024-07-17 20:09:08','\n

    The project “Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp” is funded by the Palestine Solidarity Association of Sweden “PGS”.

    \n\n\n\n

    The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.

    \n\n\n\n

    Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:

    \n\n\n\n\n','Projects','','inherit','closed','closed','','78-revision-v1','','','2024-07-17 20:09:08','2024-07-17 20:09:08','',78,'http://localhost:8080/?p=79',0,'revision','',0), +(80,1,'2024-07-17 20:13:56','2024-07-17 20:13:56','\n

    Women\'s program: This program aims to raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.

    \n\n\n\n

    Summer and Winter Camps Program: This program organizes annual extracurricular activities in New Askar camp during summer, winter, and international camps, involving both local and international volunteers. The target groups include hundreds of children as well as children with disabilities.

    \n\n\n\n

    Public Library Program:  This program allows the borrowing of cultural, literary, linguistic, and academic books. It aims to develop a generation that understands equality, democracy, and environmental preservation through theoretical workshops, practical applications, and small projects. It fosters a belief in freedom of opinion and respect for other cultures while reducing the financial burden of academic books. Since its inception as part of an agreement with the Solidarity Association with the Palestinians of Sweden, the library now houses around 4,500 volumes and is regularly visited by volunteers, university students, and school groups.

    \n\n\n\n

    The \"My Father Read to Me\" campaign, in cooperation with the Tamer Foundation for Community Development, encourages students to read. This campaign provides a space for parents and children to engage in play, learning, and various artistic and expressive activities, highlighting the importance of quality time that enriches their lives and illuminates their path to the future.

    \n\n\n\n

    Public Relations and International Relations Program: Public Relations and International Relations Program: This program aims to enhance global connections by sending youth abroad to experience different cultures and environments outside of Palestine. It also focuses on developing the human resources sector, essential for supporting our goals and activities, by welcoming volunteers from around the world. Central to this program are various partnerships, both local and international.

    \n\n\n\n

    Documentary Film Program: This program aims to document all activities and programs implemented by the association, as well as produce documentaries on various public and private topics, with a particular focus on preserving the memories of the Nakba and events in the camp. It was initiated with the help of training provided by a group of French volunteers to local volunteers.

    \n\n\n\n

    University Students Training Program: Volunteering and its significance in the lives of students and institutions is one of our most significant accomplishments over the years. Annually, about 50 students receive assistance and training to complete their university studies. These students actively participate in all programs, activities, and plans during their training period.

    \n\n\n\n

    Free computer and internet lab program: This program aims to raise awareness of today\'s interconnected and globalized era, emphasizing the cultural impact that has made the world resemble a small village. It seeks to facilitate youth, citizens, and civil institutions in their research and access to technical and technological information and news through training courses offered at nominal fees. Additionally, the program integrates education on artificial intelligence, reflecting its growing importance in modern society. Since its inception, this program has been part of the agreement between the Solidarity Association and the Palestinians of Sweden (PGS).

    \n\n\n\n

    Emergency and aid program: This program aims to assist the Askar camp community during challenging periods, such as the Covid-19 pandemic, Gaza war, and daily raids in Palestinian areas of the West Bank. It provides essential support such as food and medical supplies, while also advocating for and economically supporting other local communities and camps in need.

    \n','Programs','','publish','closed','closed','','programs','','','2024-07-17 20:13:56','2024-07-17 20:13:56','',73,'http://localhost:8080/?page_id=80',0,'page','',0), +(81,1,'2024-07-17 20:13:56','2024-07-17 20:13:56','\n

    Women\'s program: This program aims to raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.

    \n\n\n\n

    Summer and Winter Camps Program: This program organizes annual extracurricular activities in New Askar camp during summer, winter, and international camps, involving both local and international volunteers. The target groups include hundreds of children as well as children with disabilities.

    \n\n\n\n

    Public Library Program:  This program allows the borrowing of cultural, literary, linguistic, and academic books. It aims to develop a generation that understands equality, democracy, and environmental preservation through theoretical workshops, practical applications, and small projects. It fosters a belief in freedom of opinion and respect for other cultures while reducing the financial burden of academic books. Since its inception as part of an agreement with the Solidarity Association with the Palestinians of Sweden, the library now houses around 4,500 volumes and is regularly visited by volunteers, university students, and school groups.

    \n\n\n\n

    The \"My Father Read to Me\" campaign, in cooperation with the Tamer Foundation for Community Development, encourages students to read. This campaign provides a space for parents and children to engage in play, learning, and various artistic and expressive activities, highlighting the importance of quality time that enriches their lives and illuminates their path to the future.

    \n\n\n\n

    Public Relations and International Relations Program: Public Relations and International Relations Program: This program aims to enhance global connections by sending youth abroad to experience different cultures and environments outside of Palestine. It also focuses on developing the human resources sector, essential for supporting our goals and activities, by welcoming volunteers from around the world. Central to this program are various partnerships, both local and international.

    \n\n\n\n

    Documentary Film Program: This program aims to document all activities and programs implemented by the association, as well as produce documentaries on various public and private topics, with a particular focus on preserving the memories of the Nakba and events in the camp. It was initiated with the help of training provided by a group of French volunteers to local volunteers.

    \n\n\n\n

    University Students Training Program: Volunteering and its significance in the lives of students and institutions is one of our most significant accomplishments over the years. Annually, about 50 students receive assistance and training to complete their university studies. These students actively participate in all programs, activities, and plans during their training period.

    \n\n\n\n

    Free computer and internet lab program: This program aims to raise awareness of today\'s interconnected and globalized era, emphasizing the cultural impact that has made the world resemble a small village. It seeks to facilitate youth, citizens, and civil institutions in their research and access to technical and technological information and news through training courses offered at nominal fees. Additionally, the program integrates education on artificial intelligence, reflecting its growing importance in modern society. Since its inception, this program has been part of the agreement between the Solidarity Association and the Palestinians of Sweden (PGS).

    \n\n\n\n

    Emergency and aid program: This program aims to assist the Askar camp community during challenging periods, such as the Covid-19 pandemic, Gaza war, and daily raids in Palestinian areas of the West Bank. It provides essential support such as food and medical supplies, while also advocating for and economically supporting other local communities and camps in need.

    \n','Programs','','inherit','closed','closed','','80-revision-v1','','','2024-07-17 20:13:56','2024-07-17 20:13:56','',80,'http://localhost:8080/?p=81',0,'revision','',0), +(82,1,'2024-07-17 20:14:54','2024-07-17 20:14:54','','Services','','publish','closed','closed','','services','','','2024-07-17 20:14:54','2024-07-17 20:14:54','',73,'http://localhost:8080/?page_id=82',0,'page','',0), +(83,1,'2024-07-17 20:14:54','2024-07-17 20:14:54','','Services','','inherit','closed','closed','','82-revision-v1','','','2024-07-17 20:14:54','2024-07-17 20:14:54','',82,'http://localhost:8080/?p=83',0,'revision','',0), +(84,1,'2024-07-17 20:15:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-17 20:15:34','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=84',0,'page','',0), +(85,1,'2024-07-17 20:15:58','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-17 20:15:58','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=85',0,'page','',0), +(86,1,'2024-07-17 20:16:20','2024-07-17 20:16:20','','Media Center','','publish','closed','closed','','media-center','','','2024-07-17 20:16:20','2024-07-17 20:16:20','',0,'http://localhost:8080/?page_id=86',0,'page','',0), +(87,1,'2024-07-17 20:16:20','2024-07-17 20:16:20',' ','','','publish','closed','closed','','87','','','2024-07-17 20:16:20','2024-07-17 20:16:20','',0,'http://localhost:8080/?p=87',2,'nav_menu_item','',0), +(88,1,'2024-07-17 20:16:20','2024-07-17 20:16:20','','Media Center','','inherit','closed','closed','','86-revision-v1','','','2024-07-17 20:16:20','2024-07-17 20:16:20','',86,'http://localhost:8080/?p=88',0,'revision','',0), +(89,1,'2024-07-17 20:16:56','2024-07-17 20:16:56','','News','','publish','closed','closed','','news','','','2024-07-17 20:16:56','2024-07-17 20:16:56','',86,'http://localhost:8080/?page_id=89',0,'page','',0), +(90,1,'2024-07-17 20:16:56','2024-07-17 20:16:56','','News','','inherit','closed','closed','','89-revision-v1','','','2024-07-17 20:16:56','2024-07-17 20:16:56','',89,'http://localhost:8080/?p=90',0,'revision','',0), +(91,1,'2024-07-17 20:17:18','2024-07-17 20:17:18','','Gallery','','publish','closed','closed','','gallery','','','2024-07-17 20:17:18','2024-07-17 20:17:18','',86,'http://localhost:8080/?page_id=91',0,'page','',0), +(92,1,'2024-07-17 20:17:18','2024-07-17 20:17:18','','Gallery','','inherit','closed','closed','','91-revision-v1','','','2024-07-17 20:17:18','2024-07-17 20:17:18','',91,'http://localhost:8080/?p=92',0,'revision','',0), +(93,1,'2024-07-17 20:17:46','2024-07-17 20:17:46','','Visuals','','publish','closed','closed','','visuals','','','2024-07-17 20:17:46','2024-07-17 20:17:46','',86,'http://localhost:8080/?page_id=93',0,'page','',0), +(94,1,'2024-07-17 20:17:46','2024-07-17 20:17:46','','Visuals','','inherit','closed','closed','','93-revision-v1','','','2024-07-17 20:17:46','2024-07-17 20:17:46','',93,'http://localhost:8080/?p=94',0,'revision','',0), +(95,1,'2024-07-17 20:18:07','2024-07-17 20:18:07','','Achieve','','publish','closed','closed','','achieve','','','2024-07-17 20:18:07','2024-07-17 20:18:07','',0,'http://localhost:8080/?page_id=95',0,'page','',0), +(96,1,'2024-07-17 20:18:07','2024-07-17 20:18:07',' ','','','publish','closed','closed','','96','','','2024-07-17 20:18:07','2024-07-17 20:18:07','',0,'http://localhost:8080/?p=96',3,'nav_menu_item','',0), +(97,1,'2024-07-17 20:18:07','2024-07-17 20:18:07','','Achieve','','inherit','closed','closed','','95-revision-v1','','','2024-07-17 20:18:07','2024-07-17 20:18:07','',95,'http://localhost:8080/?p=97',0,'revision','',0), +(98,1,'2024-07-17 20:18:20','2024-07-17 20:18:20','','Donate','','publish','closed','closed','','donate','','','2024-07-17 20:18:20','2024-07-17 20:18:20','',0,'http://localhost:8080/?page_id=98',0,'page','',0), +(99,1,'2024-07-17 20:18:20','2024-07-17 20:18:20',' ','','','publish','closed','closed','','99','','','2024-07-17 20:18:20','2024-07-17 20:18:20','',0,'http://localhost:8080/?p=99',4,'nav_menu_item','',0), +(100,1,'2024-07-17 20:18:20','2024-07-17 20:18:20','','Donate','','inherit','closed','closed','','98-revision-v1','','','2024-07-17 20:18:20','2024-07-17 20:18:20','',98,'http://localhost:8080/?p=100',0,'revision','',0), +(101,1,'2024-07-17 20:18:41','2024-07-17 20:18:41','','Get Involved','','publish','closed','closed','','get-involved','','','2024-07-17 20:18:41','2024-07-17 20:18:41','',0,'http://localhost:8080/?page_id=101',0,'page','',0), +(102,1,'2024-07-17 20:18:41','2024-07-17 20:18:41',' ','','','publish','closed','closed','','102','','','2024-07-17 20:18:41','2024-07-17 20:18:41','',0,'http://localhost:8080/?p=102',5,'nav_menu_item','',0), +(103,1,'2024-07-17 20:18:41','2024-07-17 20:18:41','','Get Involved','','inherit','closed','closed','','101-revision-v1','','','2024-07-17 20:18:41','2024-07-17 20:18:41','',101,'http://localhost:8080/?p=103',0,'revision','',0), +(104,1,'2024-07-17 20:23:24','2024-07-17 20:23:24','','Contact Us','','publish','closed','closed','','contact-us','','','2024-07-17 20:23:24','2024-07-17 20:23:24','',0,'http://localhost:8080/?page_id=104',0,'page','',0), +(105,1,'2024-07-17 20:23:05','2024-07-17 20:23:05','\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-17 20:23:05','2024-07-17 20:23:05','',63,'http://localhost:8080/?p=105',0,'revision','',0), +(106,1,'2024-07-17 20:23:24','2024-07-17 20:23:24',' ','','','publish','closed','closed','','106','','','2024-07-17 20:23:24','2024-07-17 20:23:24','',0,'http://localhost:8080/?p=106',6,'nav_menu_item','',0), +(107,1,'2024-07-17 20:23:24','2024-07-17 20:23:24','','Contact Us','','inherit','closed','closed','','104-revision-v1','','','2024-07-17 20:23:24','2024-07-17 20:23:24','',104,'http://localhost:8080/?p=107',0,'revision','',0), +(108,1,'2024-07-17 20:25:20','2024-07-17 20:25:20','\n\n\n
    \n
    \n
    \n\n\n\n\n\n
    \n\n\n
    \n\n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','inherit','closed','closed','','70-revision-v1','','','2024-07-17 20:25:20','2024-07-17 20:25:20','',70,'http://localhost:8080/?p=108',0,'revision','',0), +(109,1,'2024-07-17 20:26:36','2024-07-17 20:26:36','\n\n\n
    \n
    \n
    \n\n\n\n\n\n
    \n\n\n
    \n\n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n

    Proudly powered by WordPress

    \n
    \n
    \n','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','inherit','closed','closed','','70-revision-v1','','','2024-07-17 20:26:36','2024-07-17 20:26:36','',70,'http://localhost:8080/?p=109',0,'revision','',0); +/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_term_relationships` +-- + +DROP TABLE IF EXISTS `wp_term_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_term_relationships` ( + `object_id` bigint unsigned NOT NULL DEFAULT '0', + `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0', + `term_order` int NOT NULL DEFAULT '0', + PRIMARY KEY (`object_id`,`term_taxonomy_id`), + KEY `term_taxonomy_id` (`term_taxonomy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_term_relationships` +-- + +LOCK TABLES `wp_term_relationships` WRITE; +/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; +INSERT INTO `wp_term_relationships` VALUES +(1,1,0), +(6,2,0), +(12,3,0), +(18,4,0), +(19,4,0), +(20,4,0), +(21,4,0), +(22,4,0), +(23,4,0), +(58,3,0), +(62,6,0), +(64,6,0), +(64,7,0), +(70,6,0), +(74,5,0), +(87,5,0), +(96,5,0), +(99,5,0), +(102,5,0), +(106,5,0); +/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_term_taxonomy` +-- + +DROP TABLE IF EXISTS `wp_term_taxonomy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_term_taxonomy` ( + `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint unsigned NOT NULL DEFAULT '0', + `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `parent` bigint unsigned NOT NULL DEFAULT '0', + `count` bigint NOT NULL DEFAULT '0', + PRIMARY KEY (`term_taxonomy_id`), + UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), + KEY `taxonomy` (`taxonomy`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_term_taxonomy` +-- + +LOCK TABLES `wp_term_taxonomy` WRITE; +/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; +INSERT INTO `wp_term_taxonomy` VALUES +(1,1,'category','',0,1), +(2,2,'wp_theme','',0,1), +(3,3,'nav_menu','',0,2), +(4,4,'nav_menu','',0,6), +(5,5,'nav_menu','',0,6), +(6,6,'wp_theme','',0,3), +(7,7,'wp_template_part_area','',0,1); +/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_termmeta` +-- + +DROP TABLE IF EXISTS `wp_termmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_termmeta` ( + `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`meta_id`), + KEY `term_id` (`term_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_termmeta` +-- + +LOCK TABLES `wp_termmeta` WRITE; +/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_terms` +-- + +DROP TABLE IF EXISTS `wp_terms`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_terms` ( + `term_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `term_group` bigint NOT NULL DEFAULT '0', + PRIMARY KEY (`term_id`), + KEY `slug` (`slug`(191)), + KEY `name` (`name`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_terms` +-- + +LOCK TABLES `wp_terms` WRITE; +/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; +INSERT INTO `wp_terms` VALUES +(1,'Uncategorized','uncategorized',0), +(2,'astra','astra',0), +(3,'Primary','primary',0), +(4,'Primary (2)','primary-2',0), +(5,'Nav','nav',0), +(6,'twentytwentyfour','twentytwentyfour',0), +(7,'footer','footer',0); +/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_usermeta` +-- + +DROP TABLE IF EXISTS `wp_usermeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_usermeta` ( + `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`umeta_id`), + KEY `user_id` (`user_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_usermeta` +-- + +LOCK TABLES `wp_usermeta` WRITE; +/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; +INSERT INTO `wp_usermeta` VALUES +(1,1,'nickname','admin'), +(2,1,'first_name',''), +(3,1,'last_name',''), +(4,1,'description',''), +(5,1,'rich_editing','true'), +(6,1,'syntax_highlighting','true'), +(7,1,'comment_shortcuts','false'), +(8,1,'admin_color','fresh'), +(9,1,'use_ssl','0'), +(10,1,'show_admin_bar_front','true'), +(11,1,'locale',''), +(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), +(13,1,'wp_user_level','10'), +(14,1,'dismissed_wp_pointers',''), +(15,1,'show_welcome_panel','1'), +(16,1,'session_tokens','a:1:{s:64:\"50a46ccddb324332ab0a5e29c3ee00f7c4dfc09bb89962d6ae3076d93904845b\";a:4:{s:10:\"expiration\";i:1722376572;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0\";s:5:\"login\";i:1721166972;}}'), +(17,1,'wp_dashboard_quick_press_last_post_id','4'), +(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}'), +(19,1,'astra-sites-on-active','notice-dismissed'), +(20,1,'wp_persisted_preferences','a:4:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-07-17T20:19:41.619Z\";s:4:\"core\";a:2:{s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:15:\"page-attributes\";}s:29:\"isTemplatePartMoveHintVisible\";b:0;}s:14:\"core/edit-site\";a:4:{s:12:\"welcomeGuide\";b:0;s:16:\"welcomeGuidePage\";b:0;s:26:\"isComplementaryAreaVisible\";b:1;s:18:\"welcomeGuideStyles\";b:0;}}'), +(21,1,'wp_user-settings','libraryContent=browse'), +(22,1,'wp_user-settings-time','1721168380'), +(23,1,'nav_menu_recently_edited','3'), +(24,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'), +(25,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'), +(26,1,'prime_education_dismissable_notice','1'); +/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_users` +-- + +DROP TABLE IF EXISTS `wp_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_users` ( + `ID` bigint unsigned NOT NULL AUTO_INCREMENT, + `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_status` int NOT NULL DEFAULT '0', + `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + PRIMARY KEY (`ID`), + KEY `user_login_key` (`user_login`), + KEY `user_nicename` (`user_nicename`), + KEY `user_email` (`user_email`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_users` +-- + +LOCK TABLES `wp_users` WRITE; +/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; +INSERT INTO `wp_users` VALUES +(1,'admin','$P$BmWdiXPO/HG3XxkcBs9LWl/pP01NEh.','admin','unit@paranoici.org','http://localhost:8080','2024-07-16 21:54:43','',0,'admin'); +/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */; + +-- Dump completed on 2024-07-17 22:36:07 diff --git a/assets/logo.png b/assets/logo.png new file mode 100644 index 0000000..9e2dae5 Binary files /dev/null and b/assets/logo.png differ diff --git a/assets/wordpress/wp-content/fonts/137e4d3f6a83a7b4382e00e2ad4ce776.css b/assets/wordpress/wp-content/fonts/137e4d3f6a83a7b4382e00e2ad4ce776.css new file mode 100644 index 0000000..d569554 --- /dev/null +++ b/assets/wordpress/wp-content/fonts/137e4d3f6a83a7b4382e00e2ad4ce776.css @@ -0,0 +1,90 @@ +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/assets/wordpress/wp-content/fonts/c2fff3a7487165674b4f5535fb5d982e.css b/assets/wordpress/wp-content/fonts/c2fff3a7487165674b4f5535fb5d982e.css new file mode 100644 index 0000000..4e5aa15 --- /dev/null +++ b/assets/wordpress/wp-content/fonts/c2fff3a7487165674b4f5535fb5d982e.css @@ -0,0 +1,290 @@ +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: italic; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 100 900; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2'); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} +/* hebrew */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2'); + unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +} +/* math */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2'); + unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0330, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2034-2037, U+2057, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2102, U+210A-210E, U+2110-2112, U+2115, U+2119-211D, U+2124, U+2128, U+212C-212D, U+212F-2131, U+2133-2138, U+213C-2140, U+2145-2149, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B6, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; +} +/* symbols */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2'); + unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8B1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA88, U+1FA90-1FABD, U+1FABF-1FAC5, U+1FACE-1FADB, U+1FAE0-1FAE8, U+1FAF0-1FAF8, U+1FB00-1FBFF; +} +/* vietnamese */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2'); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} +/* hebrew */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2'); + unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +} +/* math */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2'); + unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0330, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2034-2037, U+2057, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2102, U+210A-210E, U+2110-2112, U+2115, U+2119-211D, U+2124, U+2128, U+212C-212D, U+212F-2131, U+2133-2138, U+213C-2140, U+2145-2149, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B6, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; +} +/* symbols */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2'); + unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8B1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA88, U+1FA90-1FABD, U+1FABF-1FAC5, U+1FACE-1FADB, U+1FAE0-1FAE8, U+1FAF0-1FAF8, U+1FB00-1FBFF; +} +/* vietnamese */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300 800; + font-stretch: 100%; + font-display: swap; + src: url(http://localhost:8080/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2 new file mode 100644 index 0000000..93df6b6 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2 new file mode 100644 index 0000000..099b027 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2 new file mode 100644 index 0000000..4bf7cdd Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2 new file mode 100644 index 0000000..98847bf Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2 new file mode 100644 index 0000000..a2a83e2 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 new file mode 100644 index 0000000..5379c12 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 new file mode 100644 index 0000000..4b7bc4a Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 new file mode 100644 index 0000000..6ec3730 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 new file mode 100644 index 0000000..7669127 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 new file mode 100644 index 0000000..6122800 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2 new file mode 100644 index 0000000..c787ad8 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2 new file mode 100644 index 0000000..f3b2c4d Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2 new file mode 100644 index 0000000..87f0364 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2 new file mode 100644 index 0000000..3f5ef09 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2 new file mode 100644 index 0000000..f762e91 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2 new file mode 100644 index 0000000..7404f02 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2 new file mode 100644 index 0000000..8e05a7f Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2 new file mode 100644 index 0000000..7d385f3 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2 new file mode 100644 index 0000000..387470b Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2 new file mode 100644 index 0000000..f53b8df Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2 new file mode 100644 index 0000000..0beab54 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2 new file mode 100644 index 0000000..e1ce55f Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2 new file mode 100644 index 0000000..9c609c8 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2 new file mode 100644 index 0000000..7cd1174 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2 new file mode 100644 index 0000000..b852126 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2 new file mode 100644 index 0000000..612ff5d Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2 new file mode 100644 index 0000000..f482ce1 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2 new file mode 100644 index 0000000..b7bc862 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2 new file mode 100644 index 0000000..18862e8 Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2 b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2 new file mode 100644 index 0000000..35bac5d Binary files /dev/null and b/assets/wordpress/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2 differ diff --git a/assets/wordpress/wp-content/index.php b/assets/wordpress/wp-content/index.php new file mode 100644 index 0000000..6220032 --- /dev/null +++ b/assets/wordpress/wp-content/index.php @@ -0,0 +1,2 @@ + + Order Deny,Allow + Deny from all + + +# Apache 2.4 + + Require all denied + + +# Akismet CSS and JS + + + Allow from all + + + + Require all granted + + + +# Akismet images + + + Allow from all + + + + Require all granted + + diff --git a/assets/wordpress/wp-content/plugins/akismet/LICENSE.txt b/assets/wordpress/wp-content/plugins/akismet/LICENSE.txt new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/LICENSE.txt @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-admin.css b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-admin.css new file mode 100644 index 0000000..27d2f89 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-admin.css @@ -0,0 +1,378 @@ +#akismet-plugin-container { + background-color: var(--akismet-color-light-grey); + font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif; + --akismet-color-charcoal: #272635; + --akismet-color-light-grey: #f6f7f7; + --akismet-color-mid-grey: #a7aaad; + --akismet-color-dark-grey: #646970; + --akismet-color-grey-80: #2c3338; + --akismet-color-grey-100: #101517; + --akismet-color-white: #fff; + --akismet-color-mid-green: #357b49; + --akismet-color-mid-red: #e82c3f; + --akismet-color-light-blue: #256eff; + --akismet-color-notice-light-green: #dbf0e1; + --akismet-color-notice-dark-green: #69bf82; + --akismet-color-notice-light-red: #ffdbde; + --akismet-color-notice-dark-red: #ff6676; +} + +#akismet-plugin-container a { + color: var(--akismet-color-mid-green); +} + +#akismet-plugin-container button:focus-visible, +#akismet-plugin-container input:focus-visible { + border: 0; + box-shadow: none; + outline: 2px solid var(--akismet-color-light-blue); +} + +.akismet-masthead { + box-shadow: none; +} + +.akismet-masthead__logo { + margin: 20px 0; +} + +.akismet-section-header { + box-shadow: none; + margin-bottom: 0; +} + +.akismet-section-header__label { + color: var(--akismet-color-charcoal); + font-weight: 600; +} + +.akismet-button, .akismet-button:hover { + background-color: var(--akismet-color-mid-green); + border: 0; + color: #fff; +} + +/* Need this specificity to override the existing header rule */ +.akismet-new-snapshot h3.akismet-new-snapshot__header { + background: none; + font-size: 13px; + color: var(--akismet-color-charcoal); + text-align: left; + text-transform: none; +} + +.akismet-new-snapshot .akismet-new-snapshot__number { + color: var(--akismet-color-charcoal); + letter-spacing: -1px; + text-align: left; +} + +.akismet-new-snapshot li.akismet-new-snapshot__item { + color: var(--akismet-color-dark-grey); + font-size: 13px; + text-align: left; + text-transform: none; +} + +.akismet-masthead__logo-link { + min-height: 50px; +} + +.akismet-masthead__back-link-container { + margin-top: 16px; + margin-bottom: 2px; +} + +/* Need this specificity to override the existing link rule */ +#akismet-plugin-container a.akismet-masthead__back-link { + background-image: url(img/arrow-left.svg); + background-position: left; + background-repeat: no-repeat; + background-size: 16px; + color: var(--akismet-color-charcoal); + font-weight: 400; + padding-left: 20px; + text-decoration: none; +} + +#akismet-plugin-container a.akismet-masthead__back-link:hover { + text-decoration: underline; +} + +.akismet-new-snapshot__item { + border-top: 1px solid var(--akismet-color-light-grey); + border-left: 1px solid var(--akismet-color-light-grey); + padding: 1em; +} + +.akismet-new-snapshot li:first-child { + border-left: none; +} + +.akismet-new-snapshot__list { + display: flex; + margin-bottom: 0; +} + +.akismet-new-snapshot__item { + flex: 1 0 33.33%; + margin-bottom: 0; + padding-left: 1.5em; + padding-right: 1.5em; +} + +.akismet-new-snapshot__chart { + padding: 1em; +} + +.akismet-box { + border: 0; +} + +.akismet-box, +.akismet-card { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16); + border-radius: 8px; + overflow: hidden; +} + +.akismet-card { + margin: 32px auto 0 auto; +} + +.akismet-lower { + padding-top: 0; +} + +.akismet-lower .inside { + padding: 0; +} + +.akismet-section-header__label { + margin: 0; +} + +.akismet-settings__row { + border-bottom: 1px solid var(--akismet-color-light-grey); + display: block; + padding: 1em 1.5em; +} + +.akismet-settings__row-input { + margin-left: auto; +} + +.akismet-settings__row-title { + font-weight: 500; + font-size: 1em; + margin: 0; + margin-bottom: 1em; +} + +.akismet-settings__row-description { + margin-top: 0.5em; +} + +.akismet-card-actions { + display: flex; + justify-content: flex-end; + padding: 1em; +} + +.akismet-card-actions__secondary-action { + align-self: center; + margin-right: auto; +} + +.akismet-card-actions__secondary-action a[target="_blank"]::after { + background: url('img/icon-external.svg') no-repeat; + background-size: contain; + content: ""; + display: inline-block; + height: 16px; + margin-left: 5px; + vertical-align: middle; + width: 16px; +} + +.akismet-settings__row label { + padding-bottom: 1em; +} + +.akismet-settings__row-note { + font-size: 0.9em; + margin-top: 0.4em; +} + +.akismet-settings__row input[type="checkbox"], +.akismet-settings__row input[type="radio"] { + accent-color: var(--akismet-color-mid-green); + box-shadow: none; + flex-shrink: 0; + margin: 2px 0 0 0; +} + +.akismet-settings__row input[type="checkbox"] { + margin-top: 1px; + vertical-align: top; + -webkit-appearance: checkbox; +} + +.akismet-settings__row input[type="radio"] { + -webkit-appearance: radio; +} + +/* Fix up misbehaving wp-admin styles in Chrome (from forms and colors stylesheets) */ +.akismet-settings__row input[type="checkbox"]:checked:before { + content: ''; +} + +.akismet-settings__row input[type="radio"]:checked:before { + background: none; +} + +.akismet-settings__row input[type="checkbox"]:checked:hover, +.akismet-settings__row input[type="radio"]:checked:hover { + accent-color: var(--akismet-color-mid-green); +} + +.akismet-button:disabled { + background-color: var(--akismet-color-mid-grey); + color: var(--akismet-color-white); + cursor: arrow; +} + +.akismet-awaiting-stats, +.akismet-account { + padding: 0 1rem 1rem 1rem; + margin: 0; +} + +.akismet-account { + padding-bottom: 0; +} + +.akismet-account th { + font-weight: 500; + padding-right: 1em; +} + +.akismet-account th, .akismet-account td { + padding-bottom: 1em; +} + +.akismet-settings__row-input-label { + align-items: center; + display: flex; +} + +.akismet-settings__row-label-text { + padding-left: 0.5em; + margin-top: 2px; +} + +.akismet-alert { + border-left: 8px solid; + border-radius: 8px; + margin: 20px 0; + padding: 0.2em 1em; +} + +.akismet-alert__heading { + font-size: 1em; +} + +.akismet-alert.is-good { + background-color: var(--akismet-color-notice-light-green); + border-left-color: var(--akismet-color-notice-dark-green); +} + +.akismet-alert.is-neutral { + background-color: var(--akismet-color-white); + border-left-color: var(--akismet-color-dark-grey); +} + +.akismet-alert.is-bad { + background-color: var(--akismet-color-notice-light-red); + border-left-color: var(--akismet-color-notice-dark-red); +} + +#akismet-plugin-container .akismet-alert.is-good a, +#akismet-plugin-container .akismet-alert.is-bad a { + /* For better contrast - green isn't great */ + color: var(--akismet-color-grey-80); +} + +/* Setup - API key input */ +.akismet-enter-api-key-box { + margin: 1.5rem 0; +} + +.akismet-enter-api-key-box__reveal { + background: none; + border: 0; + color: var(--akismet-color-mid-green); + cursor: pointer; + text-decoration: underline; +} + +.akismet-enter-api-key-box__form-wrapper { + display: none; + margin-top: 1.5rem; +} + +.akismet-enter-api-key-box__input-wrapper { + box-sizing: border-box; + display: flex; + flex-wrap: nowrap; + padding: 0 1.5rem; + width: 100%; +} + +.akismet-enter-api-key-box__key-input { + flex-grow: 1; + margin-right: 1rem; +} + +h3.akismet-enter-api-key-box__header { + padding-top: 0; + padding-bottom: 1em; + text-align: left; +} + +@media screen and (max-width: 782px) { + .akismet-new-snapshot__list { + display: block; + } + + .akismet-new-snapshot__number { + float: right; + font-size: 20px; + font-weight: 500; + margin-top: -16px; + } + + .akismet-new-snapshot__header { + font-size: 14px; + font-weight: 500; + } + + .akismet-new-snapshot__text { + font-size: 12px; + } + + .akismet-settings__row input[type="checkbox"], + .akismet-settings__row input[type="radio"] { + height: 24px; + width: 24px; + } + + .akismet-settings__row-label-text { + padding-left: 0.8em; + } + + .akismet-settings__row input[type="checkbox"], + .akismet-settings__row input[type="radio"] { + margin-top: 0; + } +} \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-admin.js b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-admin.js new file mode 100644 index 0000000..4a3f9fc --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-admin.js @@ -0,0 +1,7 @@ +document.addEventListener( 'DOMContentLoaded', function() { + // Prevent aggressive iframe caching in Firefox + var statsIframe = document.getElementById( 'stats-iframe' ); + if ( statsIframe ) { + statsIframe.contentWindow.location.href = statsIframe.src; + } +} ); \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-frontend.js b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-frontend.js new file mode 100644 index 0000000..40ebfe6 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet-frontend.js @@ -0,0 +1,376 @@ +/** + * Observe how the user enters content into the comment form in order to determine whether it's a bot or not. + * + * Note that no actual input is being saved here, only counts and timings between events. + */ + +( function() { + // Passive event listeners are guaranteed to never call e.preventDefault(), + // but they're not supported in all browsers. Use this feature detection + // to determine whether they're available for use. + var supportsPassive = false; + + try { + var opts = Object.defineProperty( {}, 'passive', { + get : function() { + supportsPassive = true; + } + } ); + + window.addEventListener( 'testPassive', null, opts ); + window.removeEventListener( 'testPassive', null, opts ); + } catch ( e ) {} + + function init() { + var input_begin = ''; + + var keydowns = {}; + var lastKeyup = null; + var lastKeydown = null; + var keypresses = []; + + var modifierKeys = []; + var correctionKeys = []; + + var lastMouseup = null; + var lastMousedown = null; + var mouseclicks = []; + + var mousemoveTimer = null; + var lastMousemoveX = null; + var lastMousemoveY = null; + var mousemoveStart = null; + var mousemoves = []; + + var touchmoveCountTimer = null; + var touchmoveCount = 0; + + var lastTouchEnd = null; + var lastTouchStart = null; + var touchEvents = []; + + var scrollCountTimer = null; + var scrollCount = 0; + + var correctionKeyCodes = [ 'Backspace', 'Delete', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End', 'PageUp', 'PageDown' ]; + var modifierKeyCodes = [ 'Shift', 'CapsLock' ]; + + var forms = document.querySelectorAll( 'form[method=post]' ); + + for ( var i = 0; i < forms.length; i++ ) { + var form = forms[i]; + + var formAction = form.getAttribute( 'action' ); + + // Ignore forms that POST directly to other domains; these could be things like payment forms. + if ( formAction ) { + // Check that the form is posting to an external URL, not a path. + if ( formAction.indexOf( 'http://' ) == 0 || formAction.indexOf( 'https://' ) == 0 ) { + if ( formAction.indexOf( 'http://' + window.location.hostname + '/' ) != 0 && formAction.indexOf( 'https://' + window.location.hostname + '/' ) != 0 ) { + continue; + } + } + } + + form.addEventListener( 'submit', function () { + var ak_bkp = prepare_timestamp_array_for_request( keypresses ); + var ak_bmc = prepare_timestamp_array_for_request( mouseclicks ); + var ak_bte = prepare_timestamp_array_for_request( touchEvents ); + var ak_bmm = prepare_timestamp_array_for_request( mousemoves ); + + var input_fields = { + // When did the user begin entering any input? + 'bib': input_begin, + + // When was the form submitted? + 'bfs': Date.now(), + + // How many keypresses did they make? + 'bkpc': keypresses.length, + + // How quickly did they press a sample of keys, and how long between them? + 'bkp': ak_bkp, + + // How quickly did they click the mouse, and how long between clicks? + 'bmc': ak_bmc, + + // How many mouseclicks did they make? + 'bmcc': mouseclicks.length, + + // When did they press modifier keys (like Shift or Capslock)? + 'bmk': modifierKeys.join( ';' ), + + // When did they correct themselves? e.g., press Backspace, or use the arrow keys to move the cursor back + 'bck': correctionKeys.join( ';' ), + + // How many times did they move the mouse? + 'bmmc': mousemoves.length, + + // How many times did they move around using a touchscreen? + 'btmc': touchmoveCount, + + // How many times did they scroll? + 'bsc': scrollCount, + + // How quickly did they perform touch events, and how long between them? + 'bte': ak_bte, + + // How many touch events were there? + 'btec' : touchEvents.length, + + // How quickly did they move the mouse, and how long between moves? + 'bmm' : ak_bmm + }; + + var akismet_field_prefix = 'ak_'; + + if ( this.getElementsByClassName ) { + // Check to see if we've used an alternate field name prefix. We store this as an attribute of the container around some of the Akismet fields. + var possible_akismet_containers = this.getElementsByClassName( 'akismet-fields-container' ); + + for ( var containerIndex = 0; containerIndex < possible_akismet_containers.length; containerIndex++ ) { + var container = possible_akismet_containers.item( containerIndex ); + + if ( container.getAttribute( 'data-prefix' ) ) { + akismet_field_prefix = container.getAttribute( 'data-prefix' ); + break; + } + } + } + + for ( var field_name in input_fields ) { + var field = document.createElement( 'input' ); + field.setAttribute( 'type', 'hidden' ); + field.setAttribute( 'name', akismet_field_prefix + field_name ); + field.setAttribute( 'value', input_fields[ field_name ] ); + this.appendChild( field ); + } + }, supportsPassive ? { passive: true } : false ); + + form.addEventListener( 'keydown', function ( e ) { + // If you hold a key down, some browsers send multiple keydown events in a row. + // Ignore any keydown events for a key that hasn't come back up yet. + if ( e.key in keydowns ) { + return; + } + + var keydownTime = ( new Date() ).getTime(); + keydowns[ e.key ] = [ keydownTime ]; + + if ( ! input_begin ) { + input_begin = keydownTime; + } + + // In some situations, we don't want to record an interval since the last keypress -- for example, + // on the first keypress, or on a keypress after focus has changed to another element. Normally, + // we want to record the time between the last keyup and this keydown. But if they press a + // key while already pressing a key, we want to record the time between the two keydowns. + + var lastKeyEvent = Math.max( lastKeydown, lastKeyup ); + + if ( lastKeyEvent ) { + keydowns[ e.key ].push( keydownTime - lastKeyEvent ); + } + + lastKeydown = keydownTime; + }, supportsPassive ? { passive: true } : false ); + + form.addEventListener( 'keyup', function ( e ) { + if ( ! ( e.key in keydowns ) ) { + // This key was pressed before this script was loaded, or a mouseclick happened during the keypress, or... + return; + } + + var keyupTime = ( new Date() ).getTime(); + + if ( 'TEXTAREA' === e.target.nodeName || 'INPUT' === e.target.nodeName ) { + if ( -1 !== modifierKeyCodes.indexOf( e.key ) ) { + modifierKeys.push( keypresses.length - 1 ); + } else if ( -1 !== correctionKeyCodes.indexOf( e.key ) ) { + correctionKeys.push( keypresses.length - 1 ); + } else { + // ^ Don't record timings for keys like Shift or backspace, since they + // typically get held down for longer than regular typing. + + var keydownTime = keydowns[ e.key ][0]; + + var keypress = []; + + // Keypress duration. + keypress.push( keyupTime - keydownTime ); + + // Amount of time between this keypress and the previous keypress. + if ( keydowns[ e.key ].length > 1 ) { + keypress.push( keydowns[ e.key ][1] ); + } + + keypresses.push( keypress ); + } + } + + delete keydowns[ e.key ]; + + lastKeyup = keyupTime; + }, supportsPassive ? { passive: true } : false ); + + form.addEventListener( "focusin", function ( e ) { + lastKeydown = null; + lastKeyup = null; + keydowns = {}; + }, supportsPassive ? { passive: true } : false ); + + form.addEventListener( "focusout", function ( e ) { + lastKeydown = null; + lastKeyup = null; + keydowns = {}; + }, supportsPassive ? { passive: true } : false ); + } + + document.addEventListener( 'mousedown', function ( e ) { + lastMousedown = ( new Date() ).getTime(); + }, supportsPassive ? { passive: true } : false ); + + document.addEventListener( 'mouseup', function ( e ) { + if ( ! lastMousedown ) { + // If the mousedown happened before this script was loaded, but the mouseup happened after... + return; + } + + var now = ( new Date() ).getTime(); + + var mouseclick = []; + mouseclick.push( now - lastMousedown ); + + if ( lastMouseup ) { + mouseclick.push( lastMousedown - lastMouseup ); + } + + mouseclicks.push( mouseclick ); + + lastMouseup = now; + + // If the mouse has been clicked, don't record this time as an interval between keypresses. + lastKeydown = null; + lastKeyup = null; + keydowns = {}; + }, supportsPassive ? { passive: true } : false ); + + document.addEventListener( 'mousemove', function ( e ) { + if ( mousemoveTimer ) { + clearTimeout( mousemoveTimer ); + mousemoveTimer = null; + } + else { + mousemoveStart = ( new Date() ).getTime(); + lastMousemoveX = e.offsetX; + lastMousemoveY = e.offsetY; + } + + mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) { + var now = ( new Date() ).getTime() - 500; // To account for the timer delay. + + var mousemove = []; + mousemove.push( now - originalMousemoveStart ); + mousemove.push( + Math.round( + Math.sqrt( + Math.pow( theEvent.offsetX - lastMousemoveX, 2 ) + + Math.pow( theEvent.offsetY - lastMousemoveY, 2 ) + ) + ) + ); + + if ( mousemove[1] > 0 ) { + // If there was no measurable distance, then it wasn't really a move. + mousemoves.push( mousemove ); + } + + mousemoveStart = null; + mousemoveTimer = null; + }, 500, e, mousemoveStart ); + }, supportsPassive ? { passive: true } : false ); + + document.addEventListener( 'touchmove', function ( e ) { + if ( touchmoveCountTimer ) { + clearTimeout( touchmoveCountTimer ); + } + + touchmoveCountTimer = setTimeout( function () { + touchmoveCount++; + }, 500 ); + }, supportsPassive ? { passive: true } : false ); + + document.addEventListener( 'touchstart', function ( e ) { + lastTouchStart = ( new Date() ).getTime(); + }, supportsPassive ? { passive: true } : false ); + + document.addEventListener( 'touchend', function ( e ) { + if ( ! lastTouchStart ) { + // If the touchstart happened before this script was loaded, but the touchend happened after... + return; + } + + var now = ( new Date() ).getTime(); + + var touchEvent = []; + touchEvent.push( now - lastTouchStart ); + + if ( lastTouchEnd ) { + touchEvent.push( lastTouchStart - lastTouchEnd ); + } + + touchEvents.push( touchEvent ); + + lastTouchEnd = now; + + // Don't record this time as an interval between keypresses. + lastKeydown = null; + lastKeyup = null; + keydowns = {}; + }, supportsPassive ? { passive: true } : false ); + + document.addEventListener( 'scroll', function ( e ) { + if ( scrollCountTimer ) { + clearTimeout( scrollCountTimer ); + } + + scrollCountTimer = setTimeout( function () { + scrollCount++; + }, 500 ); + }, supportsPassive ? { passive: true } : false ); + } + + /** + * For the timestamp data that is collected, don't send more than `limit` data points in the request. + * Choose a random slice and send those. + */ + function prepare_timestamp_array_for_request( a, limit ) { + if ( ! limit ) { + limit = 100; + } + + var rv = ''; + + if ( a.length > 0 ) { + var random_starting_point = Math.max( 0, Math.floor( Math.random() * a.length - limit ) ); + + for ( var i = 0; i < limit && i < a.length; i++ ) { + rv += a[ random_starting_point + i ][0]; + + if ( a[ random_starting_point + i ].length >= 2 ) { + rv += "," + a[ random_starting_point + i ][1]; + } + + rv += ";"; + } + } + + return rv; + } + + if ( document.readyState !== 'loading' ) { + init(); + } else { + document.addEventListener( 'DOMContentLoaded', init ); + } +})(); \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/akismet.css b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet.css new file mode 100644 index 0000000..dbede8f --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet.css @@ -0,0 +1,648 @@ +.wp-admin.jetpack_page_akismet-key-config, .wp-admin.settings_page_akismet-key-config { + background-color:#f3f6f8; +} + +#submitted-on { + position: relative; +} +#the-comment-list .author .akismet-user-comment-count { + display: inline; +} +#the-comment-list .author a span { + text-decoration: none; + color: #999; +} +#the-comment-list .author a span.akismet-span-link { + text-decoration: inherit; + color: inherit; +} +#the-comment-list .akismet_remove_url { + margin-left: 3px; + color: #999; + padding: 2px 3px 2px 0; +} +#the-comment-list .akismet_remove_url:hover { + color: #A7301F; + font-weight: bold; + padding: 2px 2px 2px 0; +} +#dashboard_recent_comments .akismet-status { + display: none; +} +.akismet-status { + float: right; +} +.akismet-status a { + color: #AAA; + font-style: italic; +} +table.comments td.comment p a { + text-decoration: underline; +} +table.comments td.comment p a:after { + content: attr(href); + color: #aaa; + display: inline-block; /* Show the URL without the link's underline extending under it. */ + padding: 0 1ex; /* Because it's inline block, we can't just use spaces in the content: attribute to separate it from the link text. */ +} +.mshot-arrow { + width: 0; + height: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + border-right: 10px solid #5C5C5C; + position: absolute; + left: -6px; + top: 91px; +} +.mshot-container { + background: #5C5C5C; + position: absolute; + top: -94px; + padding: 7px; + width: 450px; + height: 338px; + z-index: 20000; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-border-radius: 6px; +} +.akismet-mshot { + position: absolute; + z-index: 100; +} +.akismet-mshot .mshot-image { + margin: 0; + height: 338px; + width: 450px; +} +.checkforspam { + display: inline-block !important; +} + +.checkforspam-spinner { + display: inline-block; + margin-top: 7px; +} + +.akismet-right { + float: right; +} + +.akismet-card .akismet-right { + margin: 1em 0; +} + +.akismet-alert-text { + color: #dd3d36; + font-weight: bold; + font-size: 120%; + margin-top: .5rem; +} + +.akismet-new-snapshot { + margin-top: 1em; + text-align: center; + background: #fff; +} + +.akismet-new-snapshot h3 { + background: #f5f5f5; + color: #888; + font-size: 11px; + margin: 0; +} + +.akismet-new-snapshot ul li { + color: #999; + font-size: 11px; + text-transform: uppercase; + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + -ms-box-sizing: border-box; +} + +.akismet-new-snapshot__number { + display: block; + font-size: 32px; + font-weight: lighter; + line-height: 1.5em; +} + +.akismet-settings th:first-child { + vertical-align: top; + padding-top: 15px; +} + +.akismet-settings th.akismet-api-key { + vertical-align: middle; + padding-top: 0; +} + +.akismet-settings span.akismet-note{ + float: left; + padding-left: 23px; + font-size: 75%; + margin-top: -10px; +} + +/** + * For the activation notice on the plugins page. + */ + +#akismet_setup_prompt { + background: none; + border: none; + margin: 0; + padding: 0; + width: 100%; +} + +.akismet_activate { + border: 1px solid #4F800D; + padding: 5px; + margin: 15px 0; + background: #83AF24; + background-image: -webkit-gradient(linear, 0% 0, 80% 100%, from(#83AF24), to(#4F800D)); + background-image: -moz-linear-gradient(80% 100% 120deg, #4F800D, #83AF24); + -moz-border-radius: 3px; + border-radius: 3px; + -webkit-border-radius: 3px; + position: relative; + overflow: hidden; +} + +.akismet_activate .aa_a { + position: absolute; + top: -5px; + right: 10px; + font-size: 140px; + color: #769F33; + font-family: Georgia, "Times New Roman", Times, serif; +} + +.akismet_activate .aa_button { + font-weight: bold; + border: 1px solid #029DD6; + border-top: 1px solid #06B9FD; + font-size: 15px; + text-align: center; + padding: 9px 0 8px 0; + color: #FFF; + background: #029DD6; + background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#029DD6), to(#0079B1)); + background-image: -moz-linear-gradient(0% 100% 90deg, #0079B1, #029DD6); + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; + width: 100%; + cursor: pointer; + margin: 0; +} + +.akismet_activate .aa_button:hover { + text-decoration: none !important; + border: 1px solid #029DD6; + border-bottom: 1px solid #00A8EF; + font-size: 15px; + text-align: center; + padding: 9px 0 8px 0; + color: #F0F8FB; + background: #0079B1; + background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#0079B1), to(#0092BF)); + background-image: -moz-linear-gradient(0% 100% 90deg, #0092BF, #0079B1); + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; +} + +.akismet_activate .aa_button_border { + border: 1px solid #006699; + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; + background: #029DD6; + background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#029DD6), to(#0079B1)); + background-image: -moz-linear-gradient(0% 100% 90deg, #0079B1, #029DD6); +} + +.akismet_activate .aa_button_container { + box-sizing: border-box; + display: inline-block; + background: #DEF1B8; + padding: 5px; + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; + width: 266px; +} + +.akismet_activate .aa_description { + position: absolute; + top: 22px; + left: 285px; + margin-left: 25px; + color: #E5F2B1; + font-size: 15px; +} + +.akismet_activate .aa_description strong { + color: #FFF; + font-weight: normal; +} + +@media (max-width: 550px) { + .akismet_activate .aa_a { + display: none; + } + + .akismet_activate .aa_button_container { + width: 100%; + } +} + +@media (max-width: 782px) { + .akismet_activate { + min-width: 0; + } +} + +@media (max-width: 850px) { + #akismet_setup_prompt .aa_description { + display: none; + } + + .akismet_activate { + min-width: 0; + } +} + +.jetpack_page_akismet-key-config #wpcontent, .settings_page_akismet-key-config #wpcontent { + padding-left: 0; +} + +.akismet-masthead { + background-color:#fff; + text-align:center; + box-shadow:0 1px 0 rgba(200,215,225,0.5),0 1px 2px #e9eff3 +} +@media (max-width: 45rem) { + .akismet-masthead { + padding:0 1.25rem + } +} + +.akismet-masthead__inside-container { + padding:.375rem 0; + margin:0 auto; + width:100%; + max-width:45rem; + text-align: left; +} +.akismet-masthead__logo-container { + padding:.3125rem 0 0 +} +.akismet-masthead__logo-link { + display:inline-block; + outline:none; + vertical-align:middle +} +.akismet-masthead__logo-link:focus { + line-height:0; + box-shadow:0 0 0 2px #78dcfa +} +.akismet-masthead__logo-link+code { + margin:0 10px; + padding:5px 9px; + border-radius:2px; + background:#e6ecf1; + color:#647a88 +} +.akismet-masthead__links { + display:-ms-flexbox; + display:flex; + -ms-flex-flow:row wrap; + flex-flow:row wrap; + -ms-flex:2 50%; + flex:2 50%; + -ms-flex-pack:end; + justify-content:flex-end; + margin:0 +} +@media (max-width: 480px) { + .akismet-masthead__links { + padding-right:.625rem + } +} +.akismet-masthead__link-li { + margin:0; + padding:0 +} +.akismet-masthead__link { + font-style:normal; + color:#0087be; + padding:.625rem; + display:inline-block +} +.akismet-masthead__link:visited { + color:#0087be +} +.akismet-masthead__link:active,.akismet-masthead__link:hover { + color:#00aadc +} +.akismet-masthead__link:hover { + text-decoration:underline +} +.akismet-masthead__link .dashicons { + display:none +} +@media (max-width: 480px) { + .akismet-masthead__link:hover,.akismet-masthead__link:active { + text-decoration:none + } + .akismet-masthead__link .dashicons { + display:block; + font-size:1.75rem + } + .akismet-masthead__link span+span { + display:none + } +} +.akismet-masthead__link-li:last-of-type .akismet-masthead__link { + padding-right:0 +} + +.akismet-lower { + margin: 0 auto; + text-align: left; + max-width: 45rem; + padding: 1.5rem; +} + +.akismet-lower .notice { + margin-bottom: 2rem; +} + +.akismet-card { + margin-top: 1rem; + margin-bottom: 0; + position: relative; + box-sizing: border-box; + background: white; +} + +.akismet-card:after, .akismet-card .inside:after, .akismet-masthead__logo-container:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +.akismet-card .inside { + padding: 1.5rem; + padding-top: 1rem; +} + +.akismet-card .akismet-card-actions { + margin-top: 1rem; +} + +.jetpack_page_akismet-key-config .update-nag, .settings_page_akismet-key-config .update-nag { + display: none; +} + +.akismet-masthead .akismet-right { + line-height: 2.125rem; + font-size: 0.9rem; +} + +.akismet-box { + box-sizing: border-box; + background: white; + border: 1px solid rgba(200, 215, 225, 0.5); +} + +.akismet-box h2, .akismet-box h3 { + padding: 1.5rem 1.5rem .5rem 1.5rem; + margin: 0; +} + +.akismet-box p { + padding: 0 1.5rem 1.5rem 1.5rem; + margin: 0; +} + +.akismet-jetpack-email { + font-style: oblique; +} + +.akismet-jetpack-gravatar { + padding: 0 0 0 1.5rem; + float: left; + margin-right: 1rem; + width: 54px; + height: 54px; +} + +.akismet-box p:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +.akismet-box .akismet-right { + padding-right: 1.5rem; +} + +.akismet-boxes .akismet-box { + margin-bottom: 0; + padding: 0; + margin-top: -1px; +} + +.akismet-boxes .akismet-box:last-child { + margin-bottom: 1.5rem; +} + +.akismet-boxes .akismet-box:first-child { + margin-top: 1.5rem; +} + +.akismet-box-header { + max-width: 700px; + margin: 0 auto 40px auto; + line-height: 1.5; +} + +.akismet-box-header h2 { + margin: 1.5rem 10% 0; + font-size: 1.375rem; + font-weight: 700; + color: #000; +} + +.akismet-box .centered { + text-align: center; +} + +.akismet-box .akismet-toggles { + margin: 3rem 0; +} + +.akismet-box .akismet-ak-connect, .akismet-box .toggle-jp-connect { + display: none; +} + +.akismet-button, .akismet-button:hover, .akismet-button:visited { + background: white; + border-color: #c8d7e1; + border-style: solid; + border-width: 1px 1px 2px; + color: #2e4453; + cursor: pointer; + display: inline-block; + margin: 0; + outline: 0; + overflow: hidden; + font-size: 14px; + font-weight: 500; + text-overflow: ellipsis; + text-decoration: none; + vertical-align: top; + box-sizing: border-box; + font-size: 14px; + line-height: 21px; + border-radius: 4px; + padding: 7px 14px 9px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.akismet-button:hover { + border-color: #a8bece; +} + +.akismet-button:active { + border-width: 2px 1px 1px; +} + +.akismet-is-primary, .akismet-is-primary:hover, .akismet-is-primary:visited { + background: #00aadc; + border-color: #0087be; + color: white; +} + +.akismet-is-primary:hover, .akismet-is-primary:focus { + border-color: #005082; +} + +.akismet-is-primary:hover { + border-color: #005082; +} + +.akismet-section-header { + position: relative; + margin: 0 auto 0.625rem auto; + padding: 1rem; + box-sizing: border-box; + box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; + background: #ffffff; + width: 100%; + padding-top: 0.6875rem; + padding-bottom: 0.6875rem; + display: flex; +} + +.akismet-section-header__label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-positive: 1; + flex-grow: 1; + line-height: 1.75rem; + position: relative; + font-size: 0.875rem; + color: #4f748e; +} + +.akismet-section-header__actions { + line-height: 1.75rem; +} + +.akismet-setup-instructions { + text-align: center; +} + +.akismet-setup-instructions form { + padding-bottom: 1.5rem; +} + +div.error.akismet-usage-limit-alert { + padding: 25px 45px 25px 15px; + display: flex; + align-items: center; +} + +#akismet-plugin-container .akismet-usage-limit-alert { + margin: 0 auto 0.625rem auto; + box-sizing: border-box; + box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; + border: none; + border-left: 4px solid #d63638; +} + +.akismet-usage-limit-alert .akismet-usage-limit-logo { + width: 38px; + min-width: 38px; + height: 38px; + border-radius: 20px; + margin-right: 18px; + background: black; + position: relative; +} + +.akismet-usage-limit-alert .akismet-usage-limit-logo img { + position: absolute; + width: 22px; + left: 8px; + top: 10px; +} + +.akismet-usage-limit-alert .akismet-usage-limit-text { + flex-grow: 1; + margin-right: 18px; +} + +.akismet-usage-limit-alert h3 { + margin: 0; +} + +.akismet-usage-limit-alert .akismet-usage-limit-cta { + border-color: none; + text-align: right; +} + +#akismet-plugin-container .akismet-usage-limit-cta a { + color: #d63638; +} + +@media (max-width: 550px) { + div.error.akismet-usage-limit-alert { + display: block; + } + + .akismet-usage-limit-alert .akismet-usage-limit-logo, + .akismet-usage-limit-alert .akismet-usage-limit-text { + margin-bottom: 15px; + } + + .akismet-usage-limit-alert .akismet-usage-limit-cta { + text-align: left; + } +} \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/akismet.js b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet.js new file mode 100644 index 0000000..2f9aa73 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/akismet.js @@ -0,0 +1,421 @@ +jQuery( function ( $ ) { + var mshotRemovalTimer = null; + var mshotRetryTimer = null; + var mshotTries = 0; + var mshotRetryInterval = 1000; + var mshotEnabledLinkSelector = 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a'; + + var preloadedMshotURLs = []; + + $('.akismet-status').each(function () { + var thisId = $(this).attr('commentid'); + $(this).prependTo('#comment-' + thisId + ' .column-comment'); + }); + $('.akismet-user-comment-count').each(function () { + var thisId = $(this).attr('commentid'); + $(this).insertAfter('#comment-' + thisId + ' .author strong:first').show(); + }); + + akismet_enable_comment_author_url_removal(); + + $( '#the-comment-list' ).on( 'click', '.akismet_remove_url', function () { + var thisId = $(this).attr('commentid'); + var data = { + action: 'comment_author_deurl', + _wpnonce: WPAkismet.comment_author_url_nonce, + id: thisId + }; + $.ajax({ + url: ajaxurl, + type: 'POST', + data: data, + beforeSend: function () { + // Removes "x" link + $("a[commentid='"+ thisId +"']").hide(); + // Show temp status + $("#author_comment_url_"+ thisId).html( $( '' ).text( WPAkismet.strings['Removing...'] ) ); + }, + success: function (response) { + if (response) { + // Show status/undo link + $("#author_comment_url_"+ thisId) + .attr('cid', thisId) + .addClass('akismet_undo_link_removal') + .html( + $( '' ).text( WPAkismet.strings['URL removed'] ) + ) + .append( ' ' ) + .append( + $( '' ) + .text( WPAkismet.strings['(undo)'] ) + .addClass( 'akismet-span-link' ) + ); + } + } + }); + + return false; + }).on( 'click', '.akismet_undo_link_removal', function () { + var thisId = $(this).attr('cid'); + var thisUrl = $(this).attr('href'); + var data = { + action: 'comment_author_reurl', + _wpnonce: WPAkismet.comment_author_url_nonce, + id: thisId, + url: thisUrl + }; + $.ajax({ + url: ajaxurl, + type: 'POST', + data: data, + beforeSend: function () { + // Show temp status + $("#author_comment_url_"+ thisId).html( $( '' ).text( WPAkismet.strings['Re-adding...'] ) ); + }, + success: function (response) { + if (response) { + // Add "x" link + $("a[commentid='"+ thisId +"']").show(); + // Show link. Core strips leading http://, so let's do that too. + $("#author_comment_url_"+ thisId).removeClass('akismet_undo_link_removal').text( thisUrl.replace( /^http:\/\/(www\.)?/ig, '' ) ); + } + } + }); + + return false; + }); + + // Show a preview image of the hovered URL. Applies to author URLs and URLs inside the comments. + if ( "enable_mshots" in WPAkismet && WPAkismet.enable_mshots ) { + $( '#the-comment-list' ).on( 'mouseover', mshotEnabledLinkSelector, function () { + clearTimeout( mshotRemovalTimer ); + + if ( $( '.akismet-mshot' ).length > 0 ) { + if ( $( '.akismet-mshot:first' ).data( 'link' ) == this ) { + // The preview is already showing for this link. + return; + } + else { + // A new link is being hovered, so remove the old preview. + $( '.akismet-mshot' ).remove(); + } + } + + clearTimeout( mshotRetryTimer ); + + var linkUrl = $( this ).attr( 'href' ); + + if ( preloadedMshotURLs.indexOf( linkUrl ) !== -1 ) { + // This preview image was already preloaded, so begin with a retry URL so the user doesn't see the placeholder image for the first second. + mshotTries = 2; + } + else { + mshotTries = 1; + } + + var mShot = $( '
    ' ); + mShot.data( 'link', this ); + mShot.data( 'url', linkUrl ); + + mShot.find( 'img' ).on( 'load', function () { + $( '.akismet-mshot' ).data( 'pending-request', false ); + } ); + + var offset = $( this ).offset(); + + mShot.offset( { + left : Math.min( $( window ).width() - 475, offset.left + $( this ).width() + 10 ), // Keep it on the screen if the link is near the edge of the window. + top: offset.top + ( $( this ).height() / 2 ) - 101 // 101 = top offset of the arrow plus the top border thickness + } ); + + $( 'body' ).append( mShot ); + + mshotRetryTimer = setTimeout( retryMshotUntilLoaded, mshotRetryInterval ); + } ).on( 'mouseout', 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a', function () { + mshotRemovalTimer = setTimeout( function () { + clearTimeout( mshotRetryTimer ); + + $( '.akismet-mshot' ).remove(); + }, 200 ); + } ); + + var preloadDelayTimer = null; + + $( window ).on( 'scroll resize', function () { + clearTimeout( preloadDelayTimer ); + + preloadDelayTimer = setTimeout( preloadMshotsInViewport, 500 ); + } ); + + preloadMshotsInViewport(); + } + + /** + * The way mShots works is if there was no screenshot already recently generated for the URL, + * it returns a "loading..." image for the first request. Then, some subsequent request will + * receive the actual screenshot, but it's unknown how long it will take. So, what we do here + * is continually re-request the mShot, waiting a second after every response until we get the + * actual screenshot. + */ + function retryMshotUntilLoaded() { + clearTimeout( mshotRetryTimer ); + + var imageWidth = $( '.akismet-mshot img' ).get(0).naturalWidth; + + if ( imageWidth == 0 ) { + // It hasn't finished loading yet the first time. Check again shortly. + setTimeout( retryMshotUntilLoaded, mshotRetryInterval ); + } + else if ( imageWidth == 400 ) { + // It loaded the preview image. + + if ( mshotTries == 20 ) { + // Give up if we've requested the mShot 20 times already. + return; + } + + if ( ! $( '.akismet-mshot' ).data( 'pending-request' ) ) { + $( '.akismet-mshot' ).data( 'pending-request', true ); + + mshotTries++; + + $( '.akismet-mshot .mshot-image' ).attr( 'src', akismet_mshot_url( $( '.akismet-mshot' ).data( 'url' ), mshotTries ) ); + } + + mshotRetryTimer = setTimeout( retryMshotUntilLoaded, mshotRetryInterval ); + } + else { + // All done. + } + } + + function preloadMshotsInViewport() { + var windowWidth = $( window ).width(); + var windowHeight = $( window ).height(); + + $( '#the-comment-list' ).find( mshotEnabledLinkSelector ).each( function ( index, element ) { + var linkUrl = $( this ).attr( 'href' ); + + // Don't attempt to preload an mshot for a single link twice. + if ( preloadedMshotURLs.indexOf( linkUrl ) !== -1 ) { + // The URL is already preloaded. + return true; + } + + if ( typeof element.getBoundingClientRect !== 'function' ) { + // The browser is too old. Return false to stop this preloading entirely. + return false; + } + + var rect = element.getBoundingClientRect(); + + if ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= windowHeight && rect.right <= windowWidth ) { + akismet_preload_mshot( linkUrl ); + $( this ).data( 'akismet-mshot-preloaded', true ); + } + } ); + } + + $( '.checkforspam.enable-on-load' ).on( 'click', function( e ) { + if ( $( this ).hasClass( 'ajax-disabled' ) ) { + // Akismet hasn't been configured yet. Allow the user to proceed to the button's link. + return; + } + + e.preventDefault(); + + if ( $( this ).hasClass( 'button-disabled' ) ) { + window.location.href = $( this ).data( 'success-url' ).replace( '__recheck_count__', 0 ).replace( '__spam_count__', 0 ); + return; + } + + $('.checkforspam').addClass('button-disabled').addClass( 'checking' ); + $('.checkforspam-spinner').addClass( 'spinner' ).addClass( 'is-active' ); + + akismet_check_for_spam(0, 100); + }).removeClass( 'button-disabled' ); + + var spam_count = 0; + var recheck_count = 0; + + function akismet_check_for_spam(offset, limit) { + var check_for_spam_buttons = $( '.checkforspam' ); + + var nonce = check_for_spam_buttons.data( 'nonce' ); + + // We show the percentage complete down to one decimal point so even queues with 100k + // pending comments will show some progress pretty quickly. + var percentage_complete = Math.round( ( recheck_count / check_for_spam_buttons.data( 'pending-comment-count' ) ) * 1000 ) / 10; + + // Update the progress counter on the "Check for Spam" button. + $( '.checkforspam' ).text( check_for_spam_buttons.data( 'progress-label' ).replace( '%1$s', percentage_complete ) ); + + $.post( + ajaxurl, + { + 'action': 'akismet_recheck_queue', + 'offset': offset, + 'limit': limit, + 'nonce': nonce + }, + function(result) { + if ( 'error' in result ) { + // An error is only returned in the case of a missing nonce, so we don't need the actual error message. + window.location.href = check_for_spam_buttons.data( 'failure-url' ); + return; + } + + recheck_count += result.counts.processed; + spam_count += result.counts.spam; + + if (result.counts.processed < limit) { + window.location.href = check_for_spam_buttons.data( 'success-url' ).replace( '__recheck_count__', recheck_count ).replace( '__spam_count__', spam_count ); + } + else { + // Account for comments that were caught as spam and moved out of the queue. + akismet_check_for_spam(offset + limit - result.counts.spam, limit); + } + } + ); + } + + if ( "start_recheck" in WPAkismet && WPAkismet.start_recheck ) { + $( '.checkforspam' ).click(); + } + + if ( typeof MutationObserver !== 'undefined' ) { + // Dynamically add the "X" next the the author URL links when a comment is quick-edited. + var comment_list_container = document.getElementById( 'the-comment-list' ); + + if ( comment_list_container ) { + var observer = new MutationObserver( function ( mutations ) { + for ( var i = 0, _len = mutations.length; i < _len; i++ ) { + if ( mutations[i].addedNodes.length > 0 ) { + akismet_enable_comment_author_url_removal(); + + // Once we know that we'll have to check for new author links, skip the rest of the mutations. + break; + } + } + } ); + + observer.observe( comment_list_container, { attributes: true, childList: true, characterData: true } ); + } + } + + function akismet_enable_comment_author_url_removal() { + $( '#the-comment-list' ) + .find( 'tr.comment, tr[id ^= "comment-"]' ) + .find( '.column-author a[href^="http"]:first' ) // Ignore mailto: links, which would be the comment author's email. + .each(function () { + if ( $( this ).parent().find( '.akismet_remove_url' ).length > 0 ) { + return; + } + + var linkHref = $(this).attr( 'href' ); + + // Ignore any links to the current domain, which are diagnostic tools, like the IP address link + // or any other links another plugin might add. + var currentHostParts = document.location.href.split( '/' ); + var currentHost = currentHostParts[0] + '//' + currentHostParts[2] + '/'; + + if ( linkHref.indexOf( currentHost ) != 0 ) { + var thisCommentId = $(this).parents('tr:first').attr('id').split("-"); + + $(this) + .attr("id", "author_comment_url_"+ thisCommentId[1]) + .after( + $( 'x' ) + .attr( 'commentid', thisCommentId[1] ) + .attr( 'title', WPAkismet.strings['Remove this URL'] ) + ); + } + }); + } + + /** + * Generate an mShot URL if given a link URL. + * + * @param string linkUrl + * @param int retry If retrying a request, the number of the retry. + * @return string The mShot URL; + */ + function akismet_mshot_url( linkUrl, retry ) { + var mshotUrl = '//s0.wp.com/mshots/v1/' + encodeURIComponent( linkUrl ) + '?w=900'; + + if ( retry > 1 ) { + mshotUrl += '&r=' + encodeURIComponent( retry ); + } + + mshotUrl += '&source=akismet'; + + return mshotUrl; + } + + /** + * Begin loading an mShot preview of a link. + * + * @param string linkUrl + */ + function akismet_preload_mshot( linkUrl ) { + var img = new Image(); + img.src = akismet_mshot_url( linkUrl ); + + preloadedMshotURLs.push( linkUrl ); + } + + $( '.akismet-could-be-primary' ).each( function () { + var form = $( this ).closest( 'form' ); + + form.data( 'initial-state', form.serialize() ); + + form.on( 'change keyup', function () { + var self = $( this ); + var submit_button = self.find( '.akismet-could-be-primary' ); + + if ( self.serialize() != self.data( 'initial-state' ) ) { + submit_button.addClass( 'akismet-is-primary' ); + } + else { + submit_button.removeClass( 'akismet-is-primary' ); + } + } ); + } ); + + /** + * Shows the Enter API key form + */ + $( '.akismet-enter-api-key-box__reveal' ).on( 'click', function ( e ) { + e.preventDefault(); + + var div = $( '.akismet-enter-api-key-box__form-wrapper' ); + div.show( 500 ); + div.find( 'input[name=key]' ).focus(); + + $( this ).hide(); + } ); + + /** + * Hides the Connect with Jetpack form | Shows the Activate Akismet Account form + */ + $( 'a.toggle-ak-connect' ).on( 'click', function ( e ) { + e.preventDefault(); + + $( '.akismet-ak-connect' ).slideToggle('slow'); + $( 'a.toggle-ak-connect' ).hide(); + $( '.akismet-jp-connect' ).hide(); + $( 'a.toggle-jp-connect' ).show(); + } ); + + /** + * Shows the Connect with Jetpack form | Hides the Activate Akismet Account form + */ + $( 'a.toggle-jp-connect' ).on( 'click', function ( e ) { + e.preventDefault(); + + $( '.akismet-jp-connect' ).slideToggle('slow'); + $( 'a.toggle-jp-connect' ).hide(); + $( '.akismet-ak-connect' ).hide(); + $( 'a.toggle-ak-connect' ).show(); + } ); +}); diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/fonts/inter.css b/assets/wordpress/wp-content/plugins/akismet/_inc/fonts/inter.css new file mode 100644 index 0000000..d28b612 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/fonts/inter.css @@ -0,0 +1,67 @@ +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-Regular.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-Regular.woff?v=3.19") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 400; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-Italic.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-Italic.woff?v=3.19") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 500; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-Medium.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-Medium.woff?v=3.19") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 500; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-MediumItalic.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-MediumItalic.woff?v=3.19") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-SemiBold.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-SemiBold.woff?v=3.19") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 600; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-SemiBoldItalic.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-SemiBoldItalic.woff?v=3.19") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-Bold.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-Bold.woff?v=3.19") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 700; + font-display: swap; + src: url("https://s0.wp.com/i/fonts/inter/Inter-BoldItalic.woff2?v=3.19") format("woff2"), + url("https://s0.wp.com/i/fonts/inter/Inter-BoldItalic.woff?v=3.19") format("woff"); +} diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo.svg b/assets/wordpress/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo.svg new file mode 100644 index 0000000..f5b5d2c --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo@2x.png b/assets/wordpress/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo@2x.png new file mode 100644 index 0000000..15c3db3 Binary files /dev/null and b/assets/wordpress/wp-content/plugins/akismet/_inc/img/akismet-refresh-logo@2x.png differ diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/img/arrow-left.svg b/assets/wordpress/wp-content/plugins/akismet/_inc/img/arrow-left.svg new file mode 100644 index 0000000..823da27 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/img/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/img/icon-external.svg b/assets/wordpress/wp-content/plugins/akismet/_inc/img/icon-external.svg new file mode 100644 index 0000000..b7efe45 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/img/icon-external.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/img/logo-a-2x.png b/assets/wordpress/wp-content/plugins/akismet/_inc/img/logo-a-2x.png new file mode 100644 index 0000000..087144a Binary files /dev/null and b/assets/wordpress/wp-content/plugins/akismet/_inc/img/logo-a-2x.png differ diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/img/logo-full-2x.png b/assets/wordpress/wp-content/plugins/akismet/_inc/img/logo-full-2x.png new file mode 100644 index 0000000..7954585 Binary files /dev/null and b/assets/wordpress/wp-content/plugins/akismet/_inc/img/logo-full-2x.png differ diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/rtl/akismet-admin-rtl.css b/assets/wordpress/wp-content/plugins/akismet/_inc/rtl/akismet-admin-rtl.css new file mode 100644 index 0000000..1960f93 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/rtl/akismet-admin-rtl.css @@ -0,0 +1,380 @@ +/* This file was automatically generated on Nov 20 2023 03:10:42 */ + +#akismet-plugin-container { + background-color: var(--akismet-color-light-grey); + font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif; + --akismet-color-charcoal: #272635; + --akismet-color-light-grey: #f6f7f7; + --akismet-color-mid-grey: #a7aaad; + --akismet-color-dark-grey: #646970; + --akismet-color-grey-80: #2c3338; + --akismet-color-grey-100: #101517; + --akismet-color-white: #fff; + --akismet-color-mid-green: #357b49; + --akismet-color-mid-red: #e82c3f; + --akismet-color-light-blue: #256eff; + --akismet-color-notice-light-green: #dbf0e1; + --akismet-color-notice-dark-green: #69bf82; + --akismet-color-notice-light-red: #ffdbde; + --akismet-color-notice-dark-red: #ff6676; +} + +#akismet-plugin-container a { + color: var(--akismet-color-mid-green); +} + +#akismet-plugin-container button:focus-visible, +#akismet-plugin-container input:focus-visible { + border: 0; + box-shadow: none; + outline: 2px solid var(--akismet-color-light-blue); +} + +.akismet-masthead { + box-shadow: none; +} + +.akismet-masthead__logo { + margin: 20px 0; +} + +.akismet-section-header { + box-shadow: none; + margin-bottom: 0; +} + +.akismet-section-header__label { + color: var(--akismet-color-charcoal); + font-weight: 600; +} + +.akismet-button, .akismet-button:hover { + background-color: var(--akismet-color-mid-green); + border: 0; + color: #fff; +} + +/* Need this specificity to override the existing header rule */ +.akismet-new-snapshot h3.akismet-new-snapshot__header { + background: none; + font-size: 13px; + color: var(--akismet-color-charcoal); + text-align: right; + text-transform: none; +} + +.akismet-new-snapshot .akismet-new-snapshot__number { + color: var(--akismet-color-charcoal); + letter-spacing: -1px; + text-align: right; +} + +.akismet-new-snapshot li.akismet-new-snapshot__item { + color: var(--akismet-color-dark-grey); + font-size: 13px; + text-align: right; + text-transform: none; +} + +.akismet-masthead__logo-link { + min-height: 50px; +} + +.akismet-masthead__back-link-container { + margin-top: 16px; + margin-bottom: 2px; +} + +/* Need this specificity to override the existing link rule */ +#akismet-plugin-container a.akismet-masthead__back-link { + background-image: url(../img/arrow-left.svg); + background-position: right; + background-repeat: no-repeat; + background-size: 16px; + color: var(--akismet-color-charcoal); + font-weight: 400; + padding-right: 20px; + text-decoration: none; +} + +#akismet-plugin-container a.akismet-masthead__back-link:hover { + text-decoration: underline; +} + +.akismet-new-snapshot__item { + border-top: 1px solid var(--akismet-color-light-grey); + border-right: 1px solid var(--akismet-color-light-grey); + padding: 1em; +} + +.akismet-new-snapshot li:first-child { + border-right: none; +} + +.akismet-new-snapshot__list { + display: flex; + margin-bottom: 0; +} + +.akismet-new-snapshot__item { + flex: 1 0 33.33%; + margin-bottom: 0; + padding-right: 1.5em; + padding-left: 1.5em; +} + +.akismet-new-snapshot__chart { + padding: 1em; +} + +.akismet-box { + border: 0; +} + +.akismet-box, +.akismet-card { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16); + border-radius: 8px; + overflow: hidden; +} + +.akismet-card { + margin: 32px auto 0 auto; +} + +.akismet-lower { + padding-top: 0; +} + +.akismet-lower .inside { + padding: 0; +} + +.akismet-section-header__label { + margin: 0; +} + +.akismet-settings__row { + border-bottom: 1px solid var(--akismet-color-light-grey); + display: block; + padding: 1em 1.5em; +} + +.akismet-settings__row-input { + margin-right: auto; +} + +.akismet-settings__row-title { + font-weight: 500; + font-size: 1em; + margin: 0; + margin-bottom: 1em; +} + +.akismet-settings__row-description { + margin-top: 0.5em; +} + +.akismet-card-actions { + display: flex; + justify-content: flex-end; + padding: 1em; +} + +.akismet-card-actions__secondary-action { + align-self: center; + margin-left: auto; +} + +.akismet-card-actions__secondary-action a[target="_blank"]::after { + background: url('../img/icon-external.svg') no-repeat; + background-size: contain; + content: ""; + display: inline-block; + height: 16px; + margin-right: 5px; + vertical-align: middle; + width: 16px; +} + +.akismet-settings__row label { + padding-bottom: 1em; +} + +.akismet-settings__row-note { + font-size: 0.9em; + margin-top: 0.4em; +} + +.akismet-settings__row input[type="checkbox"], +.akismet-settings__row input[type="radio"] { + accent-color: var(--akismet-color-mid-green); + box-shadow: none; + flex-shrink: 0; + margin: 2px 0 0 0; +} + +.akismet-settings__row input[type="checkbox"] { + margin-top: 1px; + vertical-align: top; + -webkit-appearance: checkbox; +} + +.akismet-settings__row input[type="radio"] { + -webkit-appearance: radio; +} + +/* Fix up misbehaving wp-admin styles in Chrome (from forms and colors stylesheets) */ +.akismet-settings__row input[type="checkbox"]:checked:before { + content: ''; +} + +.akismet-settings__row input[type="radio"]:checked:before { + background: none; +} + +.akismet-settings__row input[type="checkbox"]:checked:hover, +.akismet-settings__row input[type="radio"]:checked:hover { + accent-color: var(--akismet-color-mid-green); +} + +.akismet-button:disabled { + background-color: var(--akismet-color-mid-grey); + color: var(--akismet-color-white); + cursor: arrow; +} + +.akismet-awaiting-stats, +.akismet-account { + padding: 0 1rem 1rem 1rem; + margin: 0; +} + +.akismet-account { + padding-bottom: 0; +} + +.akismet-account th { + font-weight: 500; + padding-left: 1em; +} + +.akismet-account th, .akismet-account td { + padding-bottom: 1em; +} + +.akismet-settings__row-input-label { + align-items: center; + display: flex; +} + +.akismet-settings__row-label-text { + padding-right: 0.5em; + margin-top: 2px; +} + +.akismet-alert { + border-right: 8px solid; + border-radius: 8px; + margin: 20px 0; + padding: 0.2em 1em; +} + +.akismet-alert__heading { + font-size: 1em; +} + +.akismet-alert.is-good { + background-color: var(--akismet-color-notice-light-green); + border-right-color: var(--akismet-color-notice-dark-green); +} + +.akismet-alert.is-neutral { + background-color: var(--akismet-color-white); + border-right-color: var(--akismet-color-dark-grey); +} + +.akismet-alert.is-bad { + background-color: var(--akismet-color-notice-light-red); + border-right-color: var(--akismet-color-notice-dark-red); +} + +#akismet-plugin-container .akismet-alert.is-good a, +#akismet-plugin-container .akismet-alert.is-bad a { + /* For better contrast - green isn't great */ + color: var(--akismet-color-grey-80); +} + +/* Setup - API key input */ +.akismet-enter-api-key-box { + margin: 1.5rem 0; +} + +.akismet-enter-api-key-box__reveal { + background: none; + border: 0; + color: var(--akismet-color-mid-green); + cursor: pointer; + text-decoration: underline; +} + +.akismet-enter-api-key-box__form-wrapper { + display: none; + margin-top: 1.5rem; +} + +.akismet-enter-api-key-box__input-wrapper { + box-sizing: border-box; + display: flex; + flex-wrap: nowrap; + padding: 0 1.5rem; + width: 100%; +} + +.akismet-enter-api-key-box__key-input { + flex-grow: 1; + margin-left: 1rem; +} + +h3.akismet-enter-api-key-box__header { + padding-top: 0; + padding-bottom: 1em; + text-align: right; +} + +@media screen and (max-width: 782px) { + .akismet-new-snapshot__list { + display: block; + } + + .akismet-new-snapshot__number { + float: left; + font-size: 20px; + font-weight: 500; + margin-top: -16px; + } + + .akismet-new-snapshot__header { + font-size: 14px; + font-weight: 500; + } + + .akismet-new-snapshot__text { + font-size: 12px; + } + + .akismet-settings__row input[type="checkbox"], + .akismet-settings__row input[type="radio"] { + height: 24px; + width: 24px; + } + + .akismet-settings__row-label-text { + padding-right: 0.8em; + } + + .akismet-settings__row input[type="checkbox"], + .akismet-settings__row input[type="radio"] { + margin-top: 0; + } +} \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/_inc/rtl/akismet-rtl.css b/assets/wordpress/wp-content/plugins/akismet/_inc/rtl/akismet-rtl.css new file mode 100644 index 0000000..8a00368 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/_inc/rtl/akismet-rtl.css @@ -0,0 +1,649 @@ +/* This file was automatically generated on Aug 25 2023 03:41:43 */ + +.wp-admin.jetpack_page_akismet-key-config, .wp-admin.settings_page_akismet-key-config { + background-color:#f3f6f8; +} + +#submitted-on { + position: relative; +} +#the-comment-list .author .akismet-user-comment-count { + display: inline; +} +#the-comment-list .author a span { + text-decoration: none; + color: #999; +} +#the-comment-list .author a span.akismet-span-link { + text-decoration: inherit; + color: inherit; +} +#the-comment-list .akismet_remove_url { + margin-right: 3px; + color: #999; + padding: 2px 0 2px 3px; +} +#the-comment-list .akismet_remove_url:hover { + color: #A7301F; + font-weight: bold; + padding: 2px 0 2px 2px; +} +#dashboard_recent_comments .akismet-status { + display: none; +} +.akismet-status { + float: left; +} +.akismet-status a { + color: #AAA; + font-style: italic; +} +table.comments td.comment p a { + text-decoration: underline; +} +table.comments td.comment p a:after { + content: attr(href); + color: #aaa; + display: inline-block; /* Show the URL without the link's underline extending under it. */ + padding: 0 1ex; /* Because it's inline block, we can't just use spaces in the content: attribute to separate it from the link text. */ +} +.mshot-arrow { + width: 0; + height: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + border-left: 10px solid #5C5C5C; + position: absolute; + right: -6px; + top: 91px; +} +.mshot-container { + background: #5C5C5C; + position: absolute; + top: -94px; + padding: 7px; + width: 450px; + height: 338px; + z-index: 20000; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-border-radius: 6px; +} +.akismet-mshot { + position: absolute; + z-index: 100; +} +.akismet-mshot .mshot-image { + margin: 0; + height: 338px; + width: 450px; +} +.checkforspam { + display: inline-block !important; +} + +.checkforspam-spinner { + display: inline-block; + margin-top: 7px; +} + +.akismet-right { + float: left; +} + +.akismet-card .akismet-right { + margin: 1em 0; +} + +.akismet-alert-text { + color: #dd3d36; + font-weight: bold; + font-size: 120%; + margin-top: .5rem; +} + +.akismet-new-snapshot { + margin-top: 1em; + text-align: center; + background: #fff; +} + +.akismet-new-snapshot h3 { + background: #f5f5f5; + color: #888; + font-size: 11px; + margin: 0; +} + +.akismet-new-snapshot ul li { + color: #999; + font-size: 11px; + text-transform: uppercase; + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + -ms-box-sizing: border-box; +} + +.akismet-new-snapshot__number { + display: block; + font-size: 32px; + font-weight: lighter; + line-height: 1.5em; +} + +.akismet-settings th:first-child { + vertical-align: top; + padding-top: 15px; +} + +.akismet-settings th.akismet-api-key { + vertical-align: middle; + padding-top: 0; +} + +.akismet-settings span.akismet-note{ + float: right; + padding-right: 23px; + font-size: 75%; + margin-top: -10px; +} + +/** + * For the activation notice on the plugins page. + */ + +#akismet_setup_prompt { + background: none; + border: none; + margin: 0; + padding: 0; + width: 100%; +} + +.akismet_activate { + border: 1px solid #4F800D; + padding: 5px; + margin: 15px 0; + background: #83AF24; + background-image: -webkit-gradient(linear, 0% 0, 80% 100%, from(#83AF24), to(#4F800D)); + background-image: -moz-linear-gradient(-80% 100% 120deg, #4F800D, #83AF24); + -moz-border-radius: 3px; + border-radius: 3px; + -webkit-border-radius: 3px; + position: relative; + overflow: hidden; +} + +.akismet_activate .aa_a { + position: absolute; + top: -5px; + left: 10px; + font-size: 140px; + color: #769F33; + font-family: Georgia, "Times New Roman", Times, serif; +} + +.akismet_activate .aa_button { + font-weight: bold; + border: 1px solid #029DD6; + border-top: 1px solid #06B9FD; + font-size: 15px; + text-align: center; + padding: 9px 0 8px 0; + color: #FFF; + background: #029DD6; + background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#029DD6), to(#0079B1)); + background-image: -moz-linear-gradient(0% 100% 90deg, #0079B1, #029DD6); + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; + width: 100%; + cursor: pointer; + margin: 0; +} + +.akismet_activate .aa_button:hover { + text-decoration: none !important; + border: 1px solid #029DD6; + border-bottom: 1px solid #00A8EF; + font-size: 15px; + text-align: center; + padding: 9px 0 8px 0; + color: #F0F8FB; + background: #0079B1; + background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#0079B1), to(#0092BF)); + background-image: -moz-linear-gradient(0% 100% 90deg, #0092BF, #0079B1); + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; +} + +.akismet_activate .aa_button_border { + border: 1px solid #006699; + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; + background: #029DD6; + background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#029DD6), to(#0079B1)); + background-image: -moz-linear-gradient(0% 100% 90deg, #0079B1, #029DD6); +} + +.akismet_activate .aa_button_container { + box-sizing: border-box; + display: inline-block; + background: #DEF1B8; + padding: 5px; + -moz-border-radius: 2px; + border-radius: 2px; + -webkit-border-radius: 2px; + width: 266px; +} + +.akismet_activate .aa_description { + position: absolute; + top: 22px; + right: 285px; + margin-right: 25px; + color: #E5F2B1; + font-size: 15px; +} + +.akismet_activate .aa_description strong { + color: #FFF; + font-weight: normal; +} + +@media (max-width: 550px) { + .akismet_activate .aa_a { + display: none; + } + + .akismet_activate .aa_button_container { + width: 100%; + } +} + +@media (max-width: 782px) { + .akismet_activate { + min-width: 0; + } +} + +@media (max-width: 850px) { + #akismet_setup_prompt .aa_description { + display: none; + } + + .akismet_activate { + min-width: 0; + } +} + +.jetpack_page_akismet-key-config #wpcontent, .settings_page_akismet-key-config #wpcontent { + padding-right: 0; +} + +.akismet-masthead { + background-color:#fff; + text-align:center; + box-shadow:0 1px 0 rgba(200,215,225,0.5),0 1px 2px #e9eff3 +} +@media (max-width: 45rem) { + .akismet-masthead { + padding:0 1.25rem + } +} + +.akismet-masthead__inside-container { + padding:.375rem 0; + margin:0 auto; + width:100%; + max-width:45rem; + text-align: right; +} +.akismet-masthead__logo-container { + padding:.3125rem 0 0 +} +.akismet-masthead__logo-link { + display:inline-block; + outline:none; + vertical-align:middle +} +.akismet-masthead__logo-link:focus { + line-height:0; + box-shadow:0 0 0 2px #78dcfa +} +.akismet-masthead__logo-link+code { + margin:0 10px; + padding:5px 9px; + border-radius:2px; + background:#e6ecf1; + color:#647a88 +} +.akismet-masthead__links { + display:-ms-flexbox; + display:flex; + -ms-flex-flow:row wrap; + flex-flow:row wrap; + -ms-flex:2 50%; + flex:2 50%; + -ms-flex-pack:end; + justify-content:flex-end; + margin:0 +} +@media (max-width: 480px) { + .akismet-masthead__links { + padding-left:.625rem + } +} +.akismet-masthead__link-li { + margin:0; + padding:0 +} +.akismet-masthead__link { + font-style:normal; + color:#0087be; + padding:.625rem; + display:inline-block +} +.akismet-masthead__link:visited { + color:#0087be +} +.akismet-masthead__link:active,.akismet-masthead__link:hover { + color:#00aadc +} +.akismet-masthead__link:hover { + text-decoration:underline +} +.akismet-masthead__link .dashicons { + display:none +} +@media (max-width: 480px) { + .akismet-masthead__link:hover,.akismet-masthead__link:active { + text-decoration:none + } + .akismet-masthead__link .dashicons { + display:block; + font-size:1.75rem + } + .akismet-masthead__link span+span { + display:none + } +} +.akismet-masthead__link-li:last-of-type .akismet-masthead__link { + padding-left:0 +} + +.akismet-lower { + margin: 0 auto; + text-align: right; + max-width: 45rem; + padding: 1.5rem; +} + +.akismet-lower .notice { + margin-bottom: 2rem; +} + +.akismet-card { + margin-top: 1rem; + margin-bottom: 0; + position: relative; + box-sizing: border-box; + background: white; +} + +.akismet-card:after, .akismet-card .inside:after, .akismet-masthead__logo-container:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +.akismet-card .inside { + padding: 1.5rem; + padding-top: 1rem; +} + +.akismet-card .akismet-card-actions { + margin-top: 1rem; +} + +.jetpack_page_akismet-key-config .update-nag, .settings_page_akismet-key-config .update-nag { + display: none; +} + +.akismet-masthead .akismet-right { + line-height: 2.125rem; + font-size: 0.9rem; +} + +.akismet-box { + box-sizing: border-box; + background: white; + border: 1px solid rgba(200, 215, 225, 0.5); +} + +.akismet-box h2, .akismet-box h3 { + padding: 1.5rem 1.5rem .5rem 1.5rem; + margin: 0; +} + +.akismet-box p { + padding: 0 1.5rem 1.5rem 1.5rem; + margin: 0; +} + +.akismet-jetpack-email { + font-style: oblique; +} + +.akismet-jetpack-gravatar { + padding: 0 1.5rem 0 0; + float: right; + margin-left: 1rem; + width: 54px; + height: 54px; +} + +.akismet-box p:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +.akismet-box .akismet-right { + padding-left: 1.5rem; +} + +.akismet-boxes .akismet-box { + margin-bottom: 0; + padding: 0; + margin-top: -1px; +} + +.akismet-boxes .akismet-box:last-child { + margin-bottom: 1.5rem; +} + +.akismet-boxes .akismet-box:first-child { + margin-top: 1.5rem; +} + +.akismet-box-header { + max-width: 700px; + margin: 0 auto 40px auto; + line-height: 1.5; +} + +.akismet-box-header h2 { + margin: 1.5rem 10% 0; + font-size: 1.375rem; + font-weight: 700; + color: #000; +} + +.akismet-box .centered { + text-align: center; +} + +.akismet-box .akismet-toggles { + margin: 3rem 0; +} + +.akismet-box .akismet-ak-connect, .akismet-box .toggle-jp-connect { + display: none; +} + +.akismet-button, .akismet-button:hover, .akismet-button:visited { + background: white; + border-color: #c8d7e1; + border-style: solid; + border-width: 1px 1px 2px; + color: #2e4453; + cursor: pointer; + display: inline-block; + margin: 0; + outline: 0; + overflow: hidden; + font-size: 14px; + font-weight: 500; + text-overflow: ellipsis; + text-decoration: none; + vertical-align: top; + box-sizing: border-box; + font-size: 14px; + line-height: 21px; + border-radius: 4px; + padding: 7px 14px 9px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.akismet-button:hover { + border-color: #a8bece; +} + +.akismet-button:active { + border-width: 2px 1px 1px; +} + +.akismet-is-primary, .akismet-is-primary:hover, .akismet-is-primary:visited { + background: #00aadc; + border-color: #0087be; + color: white; +} + +.akismet-is-primary:hover, .akismet-is-primary:focus { + border-color: #005082; +} + +.akismet-is-primary:hover { + border-color: #005082; +} + +.akismet-section-header { + position: relative; + margin: 0 auto 0.625rem auto; + padding: 1rem; + box-sizing: border-box; + box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; + background: #ffffff; + width: 100%; + padding-top: 0.6875rem; + padding-bottom: 0.6875rem; + display: flex; +} + +.akismet-section-header__label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-positive: 1; + flex-grow: 1; + line-height: 1.75rem; + position: relative; + font-size: 0.875rem; + color: #4f748e; +} + +.akismet-section-header__actions { + line-height: 1.75rem; +} + +.akismet-setup-instructions { + text-align: center; +} + +.akismet-setup-instructions form { + padding-bottom: 1.5rem; +} + +div.error.akismet-usage-limit-alert { + padding: 25px 15px 25px 45px; + display: flex; + align-items: center; +} + +#akismet-plugin-container .akismet-usage-limit-alert { + margin: 0 auto 0.625rem auto; + box-sizing: border-box; + box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; + border: none; + border-right: 4px solid #d63638; +} + +.akismet-usage-limit-alert .akismet-usage-limit-logo { + width: 38px; + min-width: 38px; + height: 38px; + border-radius: 20px; + margin-left: 18px; + background: black; + position: relative; +} + +.akismet-usage-limit-alert .akismet-usage-limit-logo img { + position: absolute; + width: 22px; + right: 8px; + top: 10px; +} + +.akismet-usage-limit-alert .akismet-usage-limit-text { + flex-grow: 1; + margin-left: 18px; +} + +.akismet-usage-limit-alert h3 { + margin: 0; +} + +.akismet-usage-limit-alert .akismet-usage-limit-cta { + text-align: left; +} + +#akismet-plugin-container .akismet-usage-limit-cta a { + color: #d63638; +} + +@media (max-width: 550px) { + div.error.akismet-usage-limit-alert { + display: block; + } + + .akismet-usage-limit-alert .akismet-usage-limit-logo, + .akismet-usage-limit-alert .akismet-usage-limit-text { + margin-bottom: 15px; + } + + .akismet-usage-limit-alert .akismet-usage-limit-cta { + text-align: right; + } +} \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/akismet.php b/assets/wordpress/wp-content/plugins/akismet/akismet.php new file mode 100644 index 0000000..b62fddd --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/akismet.php @@ -0,0 +1,68 @@ +protect your blog from spam. Akismet Anti-spam keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key. +Version: 5.3.2 +Requires at least: 5.8 +Requires PHP: 5.6.20 +Author: Automattic - Anti-spam Team +Author URI: https://automattic.com/wordpress-plugins/ +License: GPLv2 or later +Text Domain: akismet +*/ + +/* +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +Copyright 2005-2023 Automattic, Inc. +*/ + +// Make sure we don't expose any info if called directly +if ( !function_exists( 'add_action' ) ) { + echo 'Hi there! I\'m just a plugin, not much I can do when called directly.'; + exit; +} + +define( 'AKISMET_VERSION', '5.3.2' ); +define( 'AKISMET__MINIMUM_WP_VERSION', '5.8' ); +define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); +define( 'AKISMET_DELETE_LIMIT', 10000 ); + +register_activation_hook( __FILE__, array( 'Akismet', 'plugin_activation' ) ); +register_deactivation_hook( __FILE__, array( 'Akismet', 'plugin_deactivation' ) ); + +require_once( AKISMET__PLUGIN_DIR . 'class.akismet.php' ); +require_once( AKISMET__PLUGIN_DIR . 'class.akismet-widget.php' ); +require_once( AKISMET__PLUGIN_DIR . 'class.akismet-rest-api.php' ); + +add_action( 'init', array( 'Akismet', 'init' ) ); + +add_action( 'rest_api_init', array( 'Akismet_REST_API', 'init' ) ); + +if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { + require_once( AKISMET__PLUGIN_DIR . 'class.akismet-admin.php' ); + add_action( 'init', array( 'Akismet_Admin', 'init' ) ); +} + +//add wrapper class around deprecated akismet functions that are referenced elsewhere +require_once( AKISMET__PLUGIN_DIR . 'wrapper.php' ); + +if ( defined( 'WP_CLI' ) && WP_CLI ) { + require_once( AKISMET__PLUGIN_DIR . 'class.akismet-cli.php' ); +} diff --git a/assets/wordpress/wp-content/plugins/akismet/changelog.txt b/assets/wordpress/wp-content/plugins/akismet/changelog.txt new file mode 100644 index 0000000..cd0eaec --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/changelog.txt @@ -0,0 +1,509 @@ +=== Akismet Anti-spam === + +== Archived Changelog Entries == + +This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable. +For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/akismet/trunk/readme.txt). + += 4.1.12 = +*Release Date - 3 September 2021* + +* Fixed "Use of undefined constant" notice. +* Improved styling of alert notices. + += 4.1.11 = +*Release Date - 23 August 2021* + +* Added support for Akismet API usage notifications on Akismet settings and edit-comments admin pages. +* Added support for the deleted_comment action when bulk-deleting comments from Spam. + += 4.1.10 = +*Release Date - 6 July 2021* + +* Simplified the code around checking comments in REST API and XML-RPC requests. +* Updated Plus plan terminology in notices to match current subscription names. +* Added `rel="noopener"` to the widget link to avoid warnings in Google Lighthouse. +* Set the Akismet JavaScript as deferred instead of async to improve responsiveness. +* Improved the preloading of screenshot popups on the edit comments admin page. + += 4.1.9 = +*Release Date - 2 March 2021* + +* Improved handling of pingbacks in XML-RPC multicalls + += 4.1.8 = +*Release Date - 6 January 2021* + +* Fixed missing fields in submit-spam and submit-ham calls that could lead to reduced accuracy. +* Fixed usage of deprecated jQuery function. + += 4.1.7 = +*Release Date - 22 October 2020* + +* Show the "Set up your Akismet account" banner on the comments admin screen, where it's relevant to mention if Akismet hasn't been configured. +* Don't use wp_blacklist_check when the new wp_check_comment_disallowed_list function is available. + += 4.1.6 = +*Release Date - 4 June 2020* + +* Disable "Check for Spam" button until the page is loaded to avoid errors with clicking through to queue recheck endpoint directly. +* Added filter "akismet_enable_mshots" to allow disabling screenshot popups on the edit comments admin page. + += 4.1.5 = +*Release Date - 29 April 2020* + +* Based on user feedback, we have dropped the in-admin notice explaining the availability of the "privacy notice" option in the AKismet settings screen. The option itself is available, but after displaying the notice for the last 2 years, it is now considered a known fact. +* Updated the "Requires at least" to WP 4.6, based on recommendations from https://wp-info.org/tools/checkplugini18n.php?slug=akismet +* Moved older changelog entries to a separate file to keep the size of this readme reasonable, also based on recommendations from https://wp-info.org/tools/checkplugini18n.php?slug=akismet + += 4.1.4 = +*Release Date - 17 March 2020* + +* Only redirect to the Akismet setup screen upon plugin activation if the plugin was activated manually from within the plugin-related screens, to help users with non-standard install workflows, like WP-CLI. +* Update the layout of the initial setup screen to be more readable on small screens. +* If no API key has been entered, don't run code that expects an API key. +* Improve the readability of the comment history entries. +* Don't modify the comment form HTML if no API key has been set. + += 4.1.3 = +*Release Date - 31 October 2019* + +* Prevented an attacker from being able to cause a user to unknowingly recheck their Pending comments for spam. +* Improved compatibility with Jetpack 7.7+. +* Updated the plugin activation page to use consistent language and markup. +* Redirecting users to the Akismet connnection/settings screen upon plugin activation, in an effort to make it easier for people to get setup. + += 4.1.2 = +*Release Date - 14 May 2019* + +* Fixed a conflict between the Akismet setup banner and other plugin notices. +* Reduced the number of API requests made by the plugin when attempting to verify the API key. +* Include additional data in the pingback pre-check API request to help make the stats more accurate. +* Fixed a bug that was enabling the "Check for Spam" button when no comments were eligible to be checked. +* Improved Akismet's AMP compatibility. + += 4.1.1 = +*Release Date - 31 January 2019* + +* Fixed the "Setup Akismet" notice so it resizes responsively. +* Only highlight the "Save Changes" button in the Akismet config when changes have been made. +* The count of comments in your spam queue shown on the dashboard show now always be up-to-date. + += 4.1 = +*Release Date - 12 November 2018* + +* Added a WP-CLI method for retrieving stats. +* Hooked into the new "Personal Data Eraser" functionality from WordPress 4.9.6. +* Added functionality to clear outdated alerts from Akismet.com. + += 4.0.8 = +*Release Date - 19 June 2018* + +* Improved the grammar and consistency of the in-admin privacy related notes (notice and config). +* Revised in-admin explanation of the comment form privacy notice to make its usage clearer. +* Added `rel="nofollow noopener"` to the comment form privacy notice to improve SEO and security. + += 4.0.7 = +*Release Date - 28 May 2018* + +* Based on user feedback, the link on "Learn how your comment data is processed." in the optional privacy notice now has a `target` of `_blank` and opens in a new tab/window. +* Updated the in-admin privacy notice to use the term "comment" instead of "contact" in "Akismet can display a notice to your users under your comment forms." +* Only show in-admin privacy notice if Akismet has an API Key configured + += 4.0.6 = +*Release Date - 26 May 2018* + +* Moved away from using `empty( get_option() )` to instantiating a variable to be compatible with older versions of PHP (5.3, 5.4, etc). + += 4.0.5 = +*Release Date - 26 May 2018* + +* Corrected version number after tagging. Sorry... + += 4.0.4 = +*Release Date - 26 May 2018* + +* Added a hook to provide Akismet-specific privacy information for a site's privacy policy. +* Added tools to control the display of a privacy related notice under comment forms. +* Fixed HTML in activation failure message to close META and HEAD tag properly. +* Fixed a bug that would sometimes prevent Akismet from being correctly auto-configured. + += 4.0.3 = +*Release Date - 19 February 2018* + +* Added a scheduled task to remove entries in wp_commentmeta that no longer have corresponding comments in wp_comments. +* Added a new `akismet_batch_delete_count` action to the batch delete methods for people who'd like to keep track of the numbers of records being processed by those methods. + += 4.0.2 = +*Release Date - 18 December 2017* + +* Fixed a bug that could cause Akismet to recheck a comment that has already been manually approved or marked as spam. +* Fixed a bug that could cause Akismet to claim that some comments are still waiting to be checked when no comments are waiting to be checked. + += 4.0.1 = +*Release Date - 6 November 2017* + +* Fixed a bug that could prevent some users from connecting Akismet via their Jetpack connection. +* Ensured that any pending Akismet-related events are unscheduled if the plugin is deactivated. +* Allow some JavaScript to be run asynchronously to avoid affecting page render speeds. + += 4.0 = +*Release Date - 19 September 2017* + +* Added REST API endpoints for configuring Akismet and retrieving stats. +* Increased the minimum supported WordPress version to 4.0. +* Added compatibility with comments submitted via the REST API. +* Improved the progress indicator on the "Check for Spam" button. + += 3.3.4 = +*Release Date - 3 August 2017* + +* Disabled Akismet's debug log output by default unless AKISMET_DEBUG is defined. +* URL previews now begin preloading when the mouse moves near them in the comments section of wp-admin. +* When a comment is caught by the Comment Blacklist, Akismet will always allow it to stay in the trash even if it is spam as well. +* Fixed a bug that was preventing an error from being shown when a site can't reach Akismet's servers. + += 3.3.3 = +*Release Date - 13 July 2017* + +* Reduced amount of bandwidth used by the URL Preview feature. +* Improved the admin UI when the API key is manually pre-defined for the site. +* Removed a workaround for WordPress installations older than 3.3 that will improve Akismet's compatibility with other plugins. +* The number of spam blocked that is displayed on the WordPress dashboard will now be more accurate and updated more frequently. +* Fixed a bug in the Akismet widget that could cause PHP warnings. + += 3.3.2 = +*Release Date - 10 May 2017* + +* Fixed a bug causing JavaScript errors in some browsers. + += 3.3.1 = +*Release Date - 2 May 2017* + +* Improve performance by only requesting the akismet_comment_nonce option when absolutely necessary. +* Fixed two bugs that could cause PHP warnings. +* Fixed a bug that was preventing the "Remove author URL" feature from working after a comment was edited using "Quick Edit." +* Fixed a bug that was preventing the URL preview feature from working after a comment was edited using "Quick Edit." + += 3.3 = +*Release Date - 23 February 2017* + +* Updated the Akismet admin pages with a new clean design. +* Fixed bugs preventing the `akismet_add_comment_nonce` and `akismet_update_alert` wrapper functions from working properly. +* Fixed bug preventing the loading indicator from appearing when re-checking all comments for spam. +* Added a progress indicator to the "Check for Spam" button. +* Added a success message after manually rechecking the Pending queue for spam. + += 3.2 = +*Release Date - 6 September 2016* + +* Added a WP-CLI module. You can now check comments and recheck the moderation queue from the command line. +* Stopped using the deprecated jQuery function `.live()`. +* Fixed a bug in `remove_comment_author_url()` and `add_comment_author_url()` that could generate PHP notices. +* Fixed a bug that could cause an infinite loop for sites with very very very large comment IDs. +* Fixed a bug that could cause the Akismet widget title to be blank. + += 3.1.11 = +*Release Date - 12 May 2016* + +* Fixed a bug that could cause the "Check for Spam" button to skip some comments. +* Fixed a bug that could prevent some spam submissions from being sent to Akismet. +* Updated all links to use https:// when possible. +* Disabled Akismet debug logging unless WP_DEBUG and WP_DEBUG_LOG are both enabled. + += 3.1.10 = +*Release Date - 1 April 2016* + +* Fixed a bug that could cause comments caught as spam to be placed in the Pending queue. +* Fixed a bug that could have resulted in comments that were caught by the core WordPress comment blacklist not to have a corresponding History entry. +* Fixed a bug that could have caused avoidable PHP warnings in the error log. + += 3.1.9 = +*Release Date - 28 March 2016* + +* Add compatibility with Jetpack so that Jetpack can automatically configure Akismet settings when appropriate. +* Fixed a bug preventing some comment data from being sent to Akismet. + += 3.1.8 = +*Release Date - 4 March 2016* + +* Fixed a bug preventing Akismet from being used with some plugins that rewrite admin URLs. +* Reduced the amount of bandwidth used on Akismet API calls +* Reduced the amount of space Akismet uses in the database +* Fixed a bug that could cause comments caught as spam to be placed in the Pending queue. + += 3.1.7 = +*Release Date - 4 January 2016* + +* Added documentation for the 'akismet_comment_nonce' filter. +* The post-install activation button is now accessible to screen readers and keyboard-only users. +* Fixed a bug that was preventing the "Remove author URL" feature from working in WordPress 4.4 + += 3.1.6 = +*Release Date - 14 December 2015* + +* Improve the notices shown after activating Akismet. +* Update some strings to allow for the proper plural forms in all languages. + += 3.1.5 = +*Release Date - 13 October 2015* + +* Closes a potential XSS vulnerability. + += 3.1.4 = +*Release Date - 24 September 2015* + +* Fixed a bug that was preventing some users from automatically connecting using Jetpack if they didn't have a current Akismet subscription. +* Fixed a bug that could cause comments caught as spam to be placed in the Pending queue. +* Error messages and instructions have been simplified to be more understandable. +* Link previews are enabled for all links inside comments, not just the author's website link. + += 3.1.3 = +*Release Date - 6 July 2015* + +* Notify users when their account status changes after previously being successfully set up. This should help any users who are seeing blank Akismet settings screens. + += 3.1.2 = +*Release Date - 7 June 2015* + +* Reduced the amount of space Akismet uses in the commentmeta table. +* Fixed a bug where some comments with quotes in the author name weren't getting history entries +* Pre-emptive security improvements to ensure that the Akismet plugin can't be used by attackers to compromise a WordPress installation. +* Better UI for the key entry field: allow whitespace to be included at the beginning or end of the key and strip it out automatically when the form is submitted. +* When deactivating the plugin, notify the Akismet API so the site can be marked as inactive. +* Clearer error messages. + += 3.1.1 = +*Release Date - 17th March, 2015* + +* Improvements to the "Remove comment author URL" JavaScript +* Include the pingback pre-check from the 2.6 branch. + += 3.1 = +*Release Date - 11th March, 2015* + +* Use HTTPS by default for all requests to Akismet. +* Fix for a situation where Akismet might strip HTML from a comment. + += 3.0.4 = +*Release Date - 11th December, 2014* + +* Fix to make .htaccess compatible with Apache 2.4. +* Fix to allow removal of https author URLs. +* Fix to avoid stripping part of the author URL when removing and re-adding. +* Removed the "Check for Spam" button from the "Trash" and "Approved" queues, where it would have no effect. +* Allow automatic API key configuration when Jetpack is installed and connected to a WordPress.com account + += 3.0.3 = +*Release Date - 3rd November, 2014* + +* Fix for sending the wrong data to delete_comment action that could have prevented old spam comments from being deleted. +* Added a filter to disable logging of Akismet debugging information. +* Added a filter for the maximum comment age when deleting old spam comments. +* Added a filter for the number per batch when deleting old spam comments. +* Removed the "Check for Spam" button from the Spam folder. + += 3.0.2 = +*Release Date - 18th August, 2014* + +* Performance improvements. +* Fixed a bug that could truncate the comment data being sent to Akismet for checking. + += 3.0.1 = +*Release Date - 9th July, 2014* + +* Removed dependency on PHP's fsockopen function +* Fix spam/ham reports to work when reported outside of the WP dashboard, e.g., from Notifications or the WP app +* Remove jQuery dependency for comment form JavaScript +* Remove unnecessary data from some Akismet comment meta +* Suspended keys will now result in all comments being put in moderation, not spam. + += 3.0.0 = +*Release Date - 15th April, 2014* + +* Move Akismet to Settings menu +* Drop Akismet Stats menu +* Add stats snapshot to Akismet settings +* Add Akismet subscription details and status to Akismet settings +* Add contextual help for each page +* Improve Akismet setup to use Jetpack to automate plugin setup +* Fix "Check for Spam" to use AJAX to avoid page timing out +* Fix Akismet settings page to be responsive +* Drop legacy code +* Tidy up CSS and Javascript +* Replace the old discard setting with a new "discard pervasive spam" feature. + += 2.6.0 = +*Release Date - 18th March, 2014* + +* Add ajax paging to the check for spam button to handle large volumes of comments +* Optimize javascript and add localization support +* Fix bug in link to spam comments from right now dashboard widget +* Fix bug with deleting old comments to avoid timeouts dealing with large volumes of comments +* Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications +* Add pre-check for pingbacks, to stop spam before an outbound verification request is made + += 2.5.9 = +*Release Date - 1st August, 2013* + +* Update 'Already have a key' link to redirect page rather than depend on javascript +* Fix some non-translatable strings to be translatable +* Update Activation banner in plugins page to redirect user to Akismet config page + += 2.5.8 = +*Release Date - 20th January, 2013* + +* Simplify the activation process for new users +* Remove the reporter_ip parameter +* Minor preventative security improvements + += 2.5.7 = +*Release Date - 13th December, 2012* + +* FireFox Stats iframe preview bug +* Fix mshots preview when using https +* Add .htaccess to block direct access to files +* Prevent some PHP notices +* Fix Check For Spam return location when referrer is empty +* Fix Settings links for network admins +* Fix prepare() warnings in WP 3.5 + += 2.5.6 = +*Release Date - 26th April, 2012* + +* Prevent retry scheduling problems on sites where wp_cron is misbehaving +* Preload mshot previews +* Modernize the widget code +* Fix a bug where comments were not held for moderation during an error condition +* Improve the UX and display when comments are temporarily held due to an error +* Make the Check For Spam button force a retry when comments are held due to an error +* Handle errors caused by an invalid key +* Don't retry comments that are too old +* Improve error messages when verifying an API key + += 2.5.5 = +*Release Date - 11th January, 2012* + +* Add nonce check for comment author URL remove action +* Fix the settings link + += 2.5.4 = +*Release Date - 5th January, 2012* + +* Limit Akismet CSS and Javascript loading in wp-admin to just the pages that need it +* Added author URL quick removal functionality +* Added mShot preview on Author URL hover +* Added empty index.php to prevent directory listing +* Move wp-admin menu items under Jetpack, if it is installed +* Purge old Akismet comment meta data, default of 15 days + += 2.5.3 = +*Release Date - 8th Febuary, 2011* + +* Specify the license is GPL v2 or later +* Fix a bug that could result in orphaned commentmeta entries +* Include hotfix for WordPress 3.0.5 filter issue + += 2.5.2 = +*Release Date - 14th January, 2011* + +* Properly format the comment count for author counts +* Look for super admins on multisite installs when looking up user roles +* Increase the HTTP request timeout +* Removed padding for author approved count +* Fix typo in function name +* Set Akismet stats iframe height to fixed 2500px. Better to have one tall scroll bar than two side by side. + += 2.5.1 = +*Release Date - 17th December, 2010* + +* Fix a bug that caused the "Auto delete" option to fail to discard comments correctly +* Remove the comment nonce form field from the 'Akismet Configuration' page in favor of using a filter, akismet_comment_nonce +* Fixed padding bug in "author" column of posts screen +* Added margin-top to "cleared by ..." badges on dashboard +* Fix possible error when calling akismet_cron_recheck() +* Fix more PHP warnings +* Clean up XHTML warnings for comment nonce +* Fix for possible condition where scheduled comment re-checks could get stuck +* Clean up the comment meta details after deleting a comment +* Only show the status badge if the comment status has been changed by someone/something other than Akismet +* Show a 'History' link in the row-actions +* Translation fixes +* Reduced font-size on author name +* Moved "flagged by..." notification to top right corner of comment container and removed heavy styling +* Hid "flagged by..." notification while on dashboard + += 2.5.0 = +*Release Date - 7th December, 2010* + +* Track comment actions under 'Akismet Status' on the edit comment screen +* Fix a few remaining deprecated function calls ( props Mike Glendinning ) +* Use HTTPS for the stats IFRAME when wp-admin is using HTTPS +* Use the WordPress HTTP class if available +* Move the admin UI code to a separate file, only loaded when needed +* Add cron retry feature, to replace the old connectivity check +* Display Akismet status badge beside each comment +* Record history for each comment, and display it on the edit page +* Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham +* Highlight links in comment content +* New option, "Show the number of comments you've approved beside each comment author." +* New option, "Use a nonce on the comment form." + += 2.4.0 = +*Release Date - 23rd August, 2010* + +* Spell out that the license is GPLv2 +* Fix PHP warnings +* Fix WordPress deprecated function calls +* Fire the delete_comment action when deleting comments +* Move code specific for older WP versions to legacy.php +* General code clean up + += 2.3.0 = +*Release Date - 5th June, 2010* + +* Fix "Are you sure" nonce message on config screen in WPMU +* Fix XHTML compliance issue in sidebar widget +* Change author link; remove some old references to WordPress.com accounts +* Localize the widget title (core ticket #13879) + += 2.2.9 = +*Release Date - 2nd June, 2010* + +* Eliminate a potential conflict with some plugins that may cause spurious reports + += 2.2.8 = +*Release Date - 27th May, 2010* + +* Fix bug in initial comment check for ipv6 addresses +* Report comments as ham when they are moved from spam to moderation +* Report comments as ham when clicking undo after spam +* Use transition_comment_status action when available instead of older actions for spam/ham submissions +* Better diagnostic messages when PHP network functions are unavailable +* Better handling of comments by logged-in users + += 2.2.7 = +*Release Date - 17th December, 2009* + +* Add a new AKISMET_VERSION constant +* Reduce the possibility of over-counting spam when another spam filter plugin is in use +* Disable the connectivity check when the API key is hard-coded for WPMU + += 2.2.6 = +*Release Date - 20th July, 2009* + +* Fix a global warning introduced in 2.2.5 +* Add changelog and additional readme.txt tags +* Fix an array conversion warning in some versions of PHP +* Support a new WPCOM_API_KEY constant for easier use with WordPress MU + += 2.2.5 = +*Release Date - 13th July, 2009* + +* Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls + += 2.2.4 = +*Release Date - 3rd June, 2009* + +* Fixed a key problem affecting the stats feature in WordPress MU +* Provide additional blog information in Akismet API calls diff --git a/assets/wordpress/wp-content/plugins/akismet/class.akismet-admin.php b/assets/wordpress/wp-content/plugins/akismet/class.akismet-admin.php new file mode 100644 index 0000000..dd39104 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/class.akismet-admin.php @@ -0,0 +1,1392 @@ + array( + 'href' => true, + 'title' => true, + ), + 'b' => array(), + 'code' => array(), + 'del' => array( + 'datetime' => true, + ), + 'em' => array(), + 'i' => array(), + 'q' => array( + 'cite' => true, + ), + 'strike' => array(), + 'strong' => array(), + ); + + public static function init() { + if ( ! self::$initiated ) { + self::init_hooks(); + } + + if ( isset( $_POST['action'] ) && $_POST['action'] == 'enter-key' ) { + self::enter_api_key(); + } + } + + public static function init_hooks() { + // The standalone stats page was removed in 3.0 for an all-in-one config and stats page. + // Redirect any links that might have been bookmarked or in browser history. + if ( isset( $_GET['page'] ) && 'akismet-stats-display' == $_GET['page'] ) { + wp_safe_redirect( esc_url_raw( self::get_page_url( 'stats' ) ), 301 ); + die; + } + + self::$initiated = true; + + add_action( 'admin_init', array( 'Akismet_Admin', 'admin_init' ) ); + add_action( 'admin_menu', array( 'Akismet_Admin', 'admin_menu' ), 5 ); # Priority 5, so it's called before Jetpack's admin_menu. + add_action( 'admin_notices', array( 'Akismet_Admin', 'display_notice' ) ); + add_action( 'admin_enqueue_scripts', array( 'Akismet_Admin', 'load_resources' ) ); + add_action( 'activity_box_end', array( 'Akismet_Admin', 'dashboard_stats' ) ); + add_action( 'rightnow_end', array( 'Akismet_Admin', 'rightnow_stats' ) ); + add_action( 'manage_comments_nav', array( 'Akismet_Admin', 'check_for_spam_button' ) ); + add_action( 'admin_action_akismet_recheck_queue', array( 'Akismet_Admin', 'recheck_queue' ) ); + add_action( 'wp_ajax_akismet_recheck_queue', array( 'Akismet_Admin', 'recheck_queue' ) ); + add_action( 'wp_ajax_comment_author_deurl', array( 'Akismet_Admin', 'remove_comment_author_url' ) ); + add_action( 'wp_ajax_comment_author_reurl', array( 'Akismet_Admin', 'add_comment_author_url' ) ); + add_action( 'jetpack_auto_activate_akismet', array( 'Akismet_Admin', 'connect_jetpack_user' ) ); + + add_filter( 'plugin_action_links', array( 'Akismet_Admin', 'plugin_action_links' ), 10, 2 ); + add_filter( 'comment_row_actions', array( 'Akismet_Admin', 'comment_row_action' ), 10, 2 ); + + add_filter( 'plugin_action_links_'.plugin_basename( plugin_dir_path( __FILE__ ) . 'akismet.php'), array( 'Akismet_Admin', 'admin_plugin_settings_link' ) ); + + add_filter( 'wxr_export_skip_commentmeta', array( 'Akismet_Admin', 'exclude_commentmeta_from_export' ), 10, 3 ); + + add_filter( 'all_plugins', array( 'Akismet_Admin', 'modify_plugin_description' ) ); + + // priority=1 because we need ours to run before core's comment anonymizer runs, and that's registered at priority=10 + add_filter( 'wp_privacy_personal_data_erasers', array( 'Akismet_Admin', 'register_personal_data_eraser' ), 1 ); + } + + public static function admin_init() { + if ( get_option( 'Activated_Akismet' ) ) { + delete_option( 'Activated_Akismet' ); + if ( ! headers_sent() ) { + $admin_url = self::get_page_url( 'init' ); + wp_redirect( $admin_url ); + } + } + + load_plugin_textdomain( 'akismet' ); + add_meta_box( 'akismet-status', __('Comment History', 'akismet'), array( 'Akismet_Admin', 'comment_status_meta_box' ), 'comment', 'normal' ); + + if ( function_exists( 'wp_add_privacy_policy_content' ) ) { + wp_add_privacy_policy_content( + __( 'Akismet', 'akismet' ), + __( 'We collect information about visitors who comment on Sites that use our Akismet Anti-spam service. The information we collect depends on how the User sets up Akismet for the Site, but typically includes the commenter\'s IP address, user agent, referrer, and Site URL (along with other information directly provided by the commenter such as their name, username, email address, and the comment itself).', 'akismet' ) + ); + } + } + + public static function admin_menu() { + if ( class_exists( 'Jetpack' ) ) { + add_action( 'jetpack_admin_menu', array( 'Akismet_Admin', 'load_menu' ) ); + } else { + self::load_menu(); + } + } + + public static function admin_head() { + if ( !current_user_can( 'manage_options' ) ) + return; + } + + public static function admin_plugin_settings_link( $links ) { + $settings_link = ''.__('Settings', 'akismet').''; + array_unshift( $links, $settings_link ); + return $links; + } + + public static function load_menu() { + if ( class_exists( 'Jetpack' ) ) { + $hook = add_submenu_page( 'jetpack', __( 'Akismet Anti-spam', 'akismet' ), __( 'Akismet Anti-spam', 'akismet' ), 'manage_options', 'akismet-key-config', array( 'Akismet_Admin', 'display_page' ) ); + } + else { + $hook = add_options_page( __( 'Akismet Anti-spam', 'akismet' ), __( 'Akismet Anti-spam', 'akismet' ), 'manage_options', 'akismet-key-config', array( 'Akismet_Admin', 'display_page' ) ); + } + + if ( $hook ) { + add_action( "load-$hook", array( 'Akismet_Admin', 'admin_help' ) ); + } + } + + public static function load_resources() { + global $hook_suffix; + + if ( in_array( $hook_suffix, apply_filters( 'akismet_admin_page_hook_suffixes', array( + 'index.php', # dashboard + 'edit-comments.php', + 'comment.php', + 'post.php', + 'settings_page_akismet-key-config', + 'jetpack_page_akismet-key-config', + 'plugins.php', + ) ) ) ) { + $akismet_css_path = is_rtl() ? '_inc/rtl/akismet-rtl.css' : '_inc/akismet.css'; + wp_register_style( 'akismet', plugin_dir_url( __FILE__ ) . $akismet_css_path, array(), self::get_asset_file_version( $akismet_css_path ) ); + wp_enqueue_style( 'akismet' ); + + wp_register_style( 'akismet-font-inter', plugin_dir_url( __FILE__ ) . '_inc/fonts/inter.css', array(), self::get_asset_file_version( '_inc/fonts/inter.css' ) ); + wp_enqueue_style( 'akismet-font-inter' ); + + $akismet_admin_css_path = is_rtl() ? '_inc/rtl/akismet-admin-rtl.css' : '_inc/akismet-admin.css'; + wp_register_style( 'akismet-admin', plugin_dir_url( __FILE__ ) . $akismet_admin_css_path, array(), self::get_asset_file_version( $akismet_admin_css_path ) ); + wp_enqueue_style( 'akismet-admin' ); + + wp_register_script( 'akismet.js', plugin_dir_url( __FILE__ ) . '_inc/akismet.js', array( 'jquery' ), self::get_asset_file_version( '_inc/akismet.js' ) ); + wp_enqueue_script( 'akismet.js' ); + + wp_register_script( 'akismet-admin.js', plugin_dir_url( __FILE__ ) . '_inc/akismet-admin.js', array(), self::get_asset_file_version( '/_inc/akismet-admin.js' ) ); + wp_enqueue_script( 'akismet-admin.js' ); + + $inline_js = array( + 'comment_author_url_nonce' => wp_create_nonce( 'comment_author_url_nonce' ), + 'strings' => array( + 'Remove this URL' => __( 'Remove this URL' , 'akismet'), + 'Removing...' => __( 'Removing...' , 'akismet'), + 'URL removed' => __( 'URL removed' , 'akismet'), + '(undo)' => __( '(undo)' , 'akismet'), + 'Re-adding...' => __( 'Re-adding...' , 'akismet'), + ) + ); + + if ( isset( $_GET['akismet_recheck'] ) && wp_verify_nonce( $_GET['akismet_recheck'], 'akismet_recheck' ) ) { + $inline_js['start_recheck'] = true; + } + + if ( apply_filters( 'akismet_enable_mshots', true ) ) { + $inline_js['enable_mshots'] = true; + } + + wp_localize_script( 'akismet.js', 'WPAkismet', $inline_js ); + } + } + + /** + * Add help to the Akismet page + * + * @return false if not the Akismet page + */ + public static function admin_help() { + $current_screen = get_current_screen(); + + // Screen Content + if ( current_user_can( 'manage_options' ) ) { + if ( !Akismet::get_api_key() || ( isset( $_GET['view'] ) && $_GET['view'] == 'start' ) ) { + //setup page + $current_screen->add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Setup' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Akismet filters out spam, so you can focus on more important things.' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'On this page, you are able to set up the Akismet plugin.' , 'akismet') . '

    ', + ) + ); + + $current_screen->add_help_tab( + array( + 'id' => 'setup-signup', + 'title' => __( 'New to Akismet' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Setup' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'You need to enter an API key to activate the Akismet service on your site.' , 'akismet') . '

    ' . + '

    ' . sprintf( __( 'Sign up for an account on %s to get an API Key.' , 'akismet'), 'Akismet.com' ) . '

    ', + ) + ); + + $current_screen->add_help_tab( + array( + 'id' => 'setup-manual', + 'title' => __( 'Enter an API Key' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Setup' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'If you already have an API key' , 'akismet') . '

    ' . + '
      ' . + '
    1. ' . esc_html__( 'Copy and paste the API key into the text field.' , 'akismet') . '
    2. ' . + '
    3. ' . esc_html__( 'Click the Use this Key button.' , 'akismet') . '
    4. ' . + '
    ', + ) + ); + } + elseif ( isset( $_GET['view'] ) && $_GET['view'] == 'stats' ) { + //stats page + $current_screen->add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Stats' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Akismet filters out spam, so you can focus on more important things.' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'On this page, you are able to view stats on spam filtered on your site.' , 'akismet') . '

    ', + ) + ); + } + else { + //configuration page + $current_screen->add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Configuration' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Akismet filters out spam, so you can focus on more important things.' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'On this page, you are able to update your Akismet settings and view spam stats.' , 'akismet') . '

    ', + ) + ); + + $current_screen->add_help_tab( + array( + 'id' => 'settings', + 'title' => __( 'Settings' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Configuration' , 'akismet') . '

    ' . + ( Akismet::predefined_api_key() ? '' : '

    ' . esc_html__( 'API Key' , 'akismet') . ' - ' . esc_html__( 'Enter/remove an API key.' , 'akismet') . '

    ' ) . + '

    ' . esc_html__( 'Comments' , 'akismet') . ' - ' . esc_html__( 'Show the number of approved comments beside each comment author in the comments list page.' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Strictness' , 'akismet') . ' - ' . esc_html__( 'Choose to either discard the worst spam automatically or to always put all spam in spam folder.' , 'akismet') . '

    ', + ) + ); + + if ( ! Akismet::predefined_api_key() ) { + $current_screen->add_help_tab( + array( + 'id' => 'account', + 'title' => __( 'Account' , 'akismet'), + 'content' => + '

    ' . esc_html__( 'Akismet Configuration' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Subscription Type' , 'akismet') . ' - ' . esc_html__( 'The Akismet subscription plan' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Status' , 'akismet') . ' - ' . esc_html__( 'The subscription status - active, cancelled or suspended' , 'akismet') . '

    ', + ) + ); + } + } + } + + // Help Sidebar + $current_screen->set_help_sidebar( + '

    ' . esc_html__( 'For more information:' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Akismet FAQ' , 'akismet') . '

    ' . + '

    ' . esc_html__( 'Akismet Support' , 'akismet') . '

    ' + ); + } + + public static function enter_api_key() { + if ( ! current_user_can( 'manage_options' ) ) { + die( __( 'Cheatin’ uh?', 'akismet' ) ); + } + + if ( !wp_verify_nonce( $_POST['_wpnonce'], self::NONCE ) ) + return false; + + foreach( array( 'akismet_strictness', 'akismet_show_user_comments_approved' ) as $option ) { + update_option( $option, isset( $_POST[$option] ) && (int) $_POST[$option] == 1 ? '1' : '0' ); + } + + if ( ! empty( $_POST['akismet_comment_form_privacy_notice'] ) ) { + self::set_form_privacy_notice_option( $_POST['akismet_comment_form_privacy_notice'] ); + } else { + self::set_form_privacy_notice_option( 'hide' ); + } + + if ( Akismet::predefined_api_key() ) { + return false; //shouldn't have option to save key if already defined + } + + $new_key = preg_replace( '/[^a-f0-9]/i', '', $_POST['key'] ); + $old_key = Akismet::get_api_key(); + + if ( empty( $new_key ) ) { + if ( !empty( $old_key ) ) { + delete_option( 'wordpress_api_key' ); + self::$notices[] = 'new-key-empty'; + } + } + elseif ( $new_key != $old_key ) { + self::save_key( $new_key ); + } + + return true; + } + + public static function save_key( $api_key ) { + $key_status = Akismet::verify_key( $api_key ); + + if ( $key_status == 'valid' ) { + $akismet_user = self::get_akismet_user( $api_key ); + + if ( $akismet_user ) { + if ( in_array( $akismet_user->status, array( 'active', 'active-dunning', 'no-sub' ) ) ) + update_option( 'wordpress_api_key', $api_key ); + + if ( $akismet_user->status == 'active' ) + self::$notices['status'] = 'new-key-valid'; + elseif ( $akismet_user->status == 'notice' ) + self::$notices['status'] = $akismet_user; + else + self::$notices['status'] = $akismet_user->status; + } + else + self::$notices['status'] = 'new-key-invalid'; + } + elseif ( in_array( $key_status, array( 'invalid', 'failed' ) ) ) + self::$notices['status'] = 'new-key-'.$key_status; + } + + public static function dashboard_stats() { + if ( did_action( 'rightnow_end' ) ) { + return; // We already displayed this info in the "Right Now" section + } + + if ( !$count = get_option('akismet_spam_count') ) + return; + + global $submenu; + + echo '

    ' . esc_html( _x( 'Spam', 'comments' , 'akismet') ) . '

    '; + + echo '

    '.sprintf( _n( + 'Akismet has protected your site from %3$s spam comment.', + 'Akismet has protected your site from %3$s spam comments.', + $count + , 'akismet'), 'https://akismet.com/wordpress/', esc_url( add_query_arg( array( 'page' => 'akismet-admin' ), admin_url( isset( $submenu['edit-comments.php'] ) ? 'edit-comments.php' : 'edit.php' ) ) ), number_format_i18n($count) ).'

    '; + } + + // WP 2.5+ + public static function rightnow_stats() { + if ( $count = get_option('akismet_spam_count') ) { + $intro = sprintf( _n( + 'Akismet has protected your site from %2$s spam comment already. ', + 'Akismet has protected your site from %2$s spam comments already. ', + $count + , 'akismet'), 'https://akismet.com/wordpress/', number_format_i18n( $count ) ); + } else { + $intro = sprintf( __('Akismet blocks spam from getting to your blog. ', 'akismet'), 'https://akismet.com/wordpress/' ); + } + + $link = add_query_arg( array( 'comment_status' => 'spam' ), admin_url( 'edit-comments.php' ) ); + + if ( $queue_count = self::get_spam_count() ) { + $queue_text = sprintf( _n( + 'There’s %1$s comment in your spam queue right now.', + 'There are %1$s comments in your spam queue right now.', + $queue_count + , 'akismet'), number_format_i18n( $queue_count ), esc_url( $link ) ); + } else { + $queue_text = sprintf( __( "There’s nothing in your spam queue at the moment." , 'akismet'), esc_url( $link ) ); + } + + $text = $intro . '
    ' . $queue_text; + echo "

    $text

    \n"; + } + + public static function check_for_spam_button( $comment_status ) { + // The "Check for Spam" button should only appear when the page might be showing + // a comment with comment_approved=0, which means an un-trashed, un-spammed, + // not-yet-moderated comment. + if ( 'all' != $comment_status && 'moderated' != $comment_status ) { + return; + } + + $link = ''; + + $comments_count = wp_count_comments(); + + echo ''; + echo '
    '; + + $classes = array( + 'button-secondary', + 'checkforspam', + 'button-disabled' // Disable button until the page is loaded + ); + + if ( $comments_count->moderated > 0 ) { + $classes[] = 'enable-on-load'; + + if ( ! Akismet::get_api_key() ) { + $link = self::get_page_url(); + $classes[] = 'ajax-disabled'; + } + } + + echo '' . esc_html__('Check for Spam', 'akismet') . ''; + echo ''; + } + + public static function recheck_queue() { + global $wpdb; + + Akismet::fix_scheduled_recheck(); + + if ( ! ( isset( $_GET['recheckqueue'] ) || ( isset( $_REQUEST['action'] ) && 'akismet_recheck_queue' == $_REQUEST['action'] ) ) ) { + return; + } + + if ( ! wp_verify_nonce( $_POST['nonce'], 'akismet_check_for_spam' ) ) { + wp_send_json( array( + 'error' => __( 'You don’t have permission to do that.', 'akismet' ), + )); + return; + } + + $result_counts = self::recheck_queue_portion( empty( $_POST['offset'] ) ? 0 : $_POST['offset'], empty( $_POST['limit'] ) ? 100 : $_POST['limit'] ); + + if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { + wp_send_json( array( + 'counts' => $result_counts, + )); + } + else { + $redirect_to = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : admin_url( 'edit-comments.php' ); + wp_safe_redirect( $redirect_to ); + exit; + } + } + + public static function recheck_queue_portion( $start = 0, $limit = 100 ) { + global $wpdb; + + $paginate = ''; + + if ( $limit <= 0 ) { + $limit = 100; + } + + if ( $start < 0 ) { + $start = 0; + } + + $moderation = $wpdb->get_col( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_approved = '0' LIMIT %d OFFSET %d", $limit, $start ) ); + + $result_counts = array( + 'processed' => is_countable( $moderation ) ? count( $moderation ) : 0, + 'spam' => 0, + 'ham' => 0, + 'error' => 0, + ); + + foreach ( $moderation as $comment_id ) { + $api_response = Akismet::recheck_comment( $comment_id, 'recheck_queue' ); + + if ( 'true' === $api_response ) { + ++$result_counts['spam']; + } + elseif ( 'false' === $api_response ) { + ++$result_counts['ham']; + } + else { + ++$result_counts['error']; + } + } + + return $result_counts; + } + + // Adds an 'x' link next to author URLs, clicking will remove the author URL and show an undo link + public static function remove_comment_author_url() { + if ( !empty( $_POST['id'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { + $comment_id = intval( $_POST['id'] ); + $comment = get_comment( $comment_id, ARRAY_A ); + if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) { + $comment['comment_author_url'] = ''; + do_action( 'comment_remove_author_url' ); + print( wp_update_comment( $comment ) ); + die(); + } + } + } + + public static function add_comment_author_url() { + if ( !empty( $_POST['id'] ) && !empty( $_POST['url'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { + $comment_id = intval( $_POST['id'] ); + $comment = get_comment( $comment_id, ARRAY_A ); + if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) { + $comment['comment_author_url'] = esc_url( $_POST['url'] ); + do_action( 'comment_add_author_url' ); + print( wp_update_comment( $comment ) ); + die(); + } + } + } + + public static function comment_row_action( $a, $comment ) { + $akismet_result = get_comment_meta( $comment->comment_ID, 'akismet_result', true ); + $akismet_error = get_comment_meta( $comment->comment_ID, 'akismet_error', true ); + $user_result = get_comment_meta( $comment->comment_ID, 'akismet_user_result', true); + $comment_status = wp_get_comment_status( $comment->comment_ID ); + $desc = null; + if ( $akismet_error ) { + $desc = __( 'Awaiting spam check' , 'akismet'); + } elseif ( !$user_result || $user_result == $akismet_result ) { + // Show the original Akismet result if the user hasn't overridden it, or if their decision was the same + if ( $akismet_result == 'true' && $comment_status != 'spam' && $comment_status != 'trash' ) + $desc = __( 'Flagged as spam by Akismet' , 'akismet'); + elseif ( $akismet_result == 'false' && $comment_status == 'spam' ) + $desc = __( 'Cleared by Akismet' , 'akismet'); + } else { + $who = get_comment_meta( $comment->comment_ID, 'akismet_user', true ); + if ( $user_result == 'true' ) + $desc = sprintf( __('Flagged as spam by %s', 'akismet'), $who ); + else + $desc = sprintf( __('Un-spammed by %s', 'akismet'), $who ); + } + + // add a History item to the hover links, just after Edit + if ( $akismet_result && is_array( $a ) ) { + $b = array(); + foreach ( $a as $k => $item ) { + $b[ $k ] = $item; + if ( + $k == 'edit' + || $k == 'unspam' + ) { + $b['history'] = ' '. esc_html__('History', 'akismet') . ''; + } + } + + $a = $b; + } + + if ( $desc ) + echo ''.esc_html( $desc ).''; + + $show_user_comments_option = get_option( 'akismet_show_user_comments_approved' ); + + if ( $show_user_comments_option === false ) { + // Default to active if the user hasn't made a decision. + $show_user_comments_option = '1'; + } + + $show_user_comments = apply_filters( 'akismet_show_user_comments_approved', $show_user_comments_option ); + $show_user_comments = $show_user_comments === 'false' ? false : $show_user_comments; //option used to be saved as 'false' / 'true' + + if ( $show_user_comments ) { + $comment_count = Akismet::get_user_comments_approved( $comment->user_id, $comment->comment_author_email, $comment->comment_author, $comment->comment_author_url ); + $comment_count = intval( $comment_count ); + echo ''; + } + + return $a; + } + + public static function comment_status_meta_box( $comment ) { + $history = Akismet::get_comment_history( $comment->comment_ID ); + + if ( $history ) { + foreach ( $history as $row ) { + $message = ''; + + if ( ! empty( $row['message'] ) ) { + // Old versions of Akismet stored the message as a literal string in the commentmeta. + // New versions don't do that for two reasons: + // 1) Save space. + // 2) The message can be translated into the current language of the blog, not stuck + // in the language of the blog when the comment was made. + $message = esc_html( $row['message'] ); + } else if ( ! empty( $row['event'] ) ) { + // If possible, use a current translation. + switch ( $row['event'] ) { + case 'recheck-spam': + $message = esc_html( __( 'Akismet re-checked and caught this comment as spam.', 'akismet' ) ); + break; + case 'check-spam': + $message = esc_html( __( 'Akismet caught this comment as spam.', 'akismet' ) ); + break; + case 'recheck-ham': + $message = esc_html( __( 'Akismet re-checked and cleared this comment.', 'akismet' ) ); + break; + case 'check-ham': + $message = esc_html( __( 'Akismet cleared this comment.', 'akismet' ) ); + break; + case 'wp-blacklisted': + case 'wp-disallowed': + $message = sprintf( + /* translators: The placeholder is a WordPress PHP function name. */ + esc_html( __( 'Comment was caught by %s.', 'akismet' ) ), + function_exists( 'wp_check_comment_disallowed_list' ) ? 'wp_check_comment_disallowed_list' : 'wp_blacklist_check' + ); + break; + case 'report-spam': + if ( isset( $row['user'] ) ) { + /* translators: The placeholder is a username. */ + $message = esc_html( sprintf( __( '%s reported this comment as spam.', 'akismet' ), $row['user'] ) ); + } else if ( ! $message ) { + $message = esc_html( __( 'This comment was reported as spam.', 'akismet' ) ); + } + break; + case 'report-ham': + if ( isset( $row['user'] ) ) { + /* translators: The placeholder is a username. */ + $message = esc_html( sprintf( __( '%s reported this comment as not spam.', 'akismet' ), $row['user'] ) ); + } else if ( ! $message ) { + $message = esc_html( __( 'This comment was reported as not spam.', 'akismet' ) ); + } + break; + case 'cron-retry-spam': + $message = esc_html( __( 'Akismet caught this comment as spam during an automatic retry.', 'akismet' ) ); + break; + case 'cron-retry-ham': + $message = esc_html( __( 'Akismet cleared this comment during an automatic retry.', 'akismet' ) ); + break; + case 'check-error': + if ( isset( $row['meta'], $row['meta']['response'] ) ) { + /* translators: The placeholder is an error response returned by the API server. */ + $message = sprintf( esc_html( __( 'Akismet was unable to check this comment (response: %s) but will automatically retry later.', 'akismet' ) ), '' . esc_html( $row['meta']['response'] ) . '' ); + } else { + $message = esc_html( __( 'Akismet was unable to check this comment but will automatically retry later.', 'akismet' ) ); + } + break; + case 'recheck-error': + if ( isset( $row['meta'], $row['meta']['response'] ) ) { + /* translators: The placeholder is an error response returned by the API server. */ + $message = sprintf( esc_html( __( 'Akismet was unable to recheck this comment (response: %s).', 'akismet' ) ), '' . esc_html( $row['meta']['response'] ) . '' ); + } else { + $message = esc_html( __( 'Akismet was unable to recheck this comment.', 'akismet' ) ); + } + break; + case 'webhook-spam': + $message = esc_html( __( 'Akismet caught this comment as spam and updated its status via webhook.', 'akismet' ) ); + break; + case 'webhook-ham': + $message = esc_html( __( 'Akismet cleared this comment and updated its status via webhook.', 'akismet' ) ); + break; + case 'webhook-spam-noaction': + $message = esc_html( __( 'Akismet determined this comment was spam during a recheck. It did not update the comment status because it had already been modified by another user or plugin.', 'akismet' ) ); + break; + case 'webhook-ham-noaction': + $message = esc_html( __( 'Akismet cleared this comment during a recheck. It did not update the comment status because it had already been modified by another user or plugin.', 'akismet' ) ); + break; + default: + if ( preg_match( '/^status-changed/', $row['event'] ) ) { + // Half of these used to be saved without the dash after 'status-changed'. + // See https://plugins.trac.wordpress.org/changeset/1150658/akismet/trunk + $new_status = preg_replace( '/^status-changed-?/', '', $row['event'] ); + /* translators: The placeholder is a short string (like 'spam' or 'approved') denoting the new comment status. */ + $message = sprintf( esc_html( __( 'Comment status was changed to %s', 'akismet' ) ), '' . esc_html( $new_status ) . '' ); + } else if ( preg_match( '/^status-/', $row['event'] ) ) { + $new_status = preg_replace( '/^status-/', '', $row['event'] ); + + if ( isset( $row['user'] ) ) { + /* translators: %1$s is a username; %2$s is a short string (like 'spam' or 'approved') denoting the new comment status. */ + $message = sprintf( esc_html( __( '%1$s changed the comment status to %2$s.', 'akismet' ) ), $row['user'], '' . esc_html( $new_status ) . '' ); + } + } + break; + } + } + + if ( ! empty( $message ) ) { + echo '

    '; + + if ( isset( $row['time'] ) ) { + $time = gmdate( 'D d M Y @ h:i:s a', (int) $row['time'] ) . ' GMT'; + + /* translators: The placeholder is an amount of time, like "7 seconds" or "3 days" returned by the function human_time_diff(). */ + $time_html = '' . sprintf( esc_html__( '%s ago', 'akismet' ), human_time_diff( $row['time'] ) ) . ''; + + echo sprintf( + /* translators: %1$s is a human-readable time difference, like "3 hours ago", and %2$s is an already-translated phrase describing how a comment's status changed, like "This comment was reported as spam." */ + esc_html( __( '%1$s - %2$s', 'akismet' ) ), + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + $time_html, + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + $message + ); // esc_html() is done above so that we can use HTML in $message. + } else { + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $message; // esc_html() is done above so that we can use HTML in $message. + } + + echo '

    '; + } + } + } else { + echo '

    '; + echo esc_html( __( 'No comment history.', 'akismet' ) ); + echo '

    '; + } + } + + public static function plugin_action_links( $links, $file ) { + if ( $file == plugin_basename( plugin_dir_url( __FILE__ ) . '/akismet.php' ) ) { + $links[] = ''.esc_html__( 'Settings' , 'akismet').''; + } + + return $links; + } + + // Total spam in queue + // get_option( 'akismet_spam_count' ) is the total caught ever + public static function get_spam_count( $type = false ) { + global $wpdb; + + if ( !$type ) { // total + $count = wp_cache_get( 'akismet_spam_count', 'widget' ); + if ( false === $count ) { + $count = wp_count_comments(); + $count = $count->spam; + wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 ); + } + return $count; + } elseif ( 'comments' == $type || 'comment' == $type ) { // comments + $type = ''; + } + + return (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(comment_ID) FROM {$wpdb->comments} WHERE comment_approved = 'spam' AND comment_type = %s", $type ) ); + } + + // Check connectivity between the WordPress blog and Akismet's servers. + // Returns an associative array of server IP addresses, where the key is the IP address, and value is true (available) or false (unable to connect). + public static function check_server_ip_connectivity() { + + $servers = $ips = array(); + + // Some web hosts may disable this function + if ( function_exists( 'gethostbynamel' ) ) { + + $ips = gethostbynamel( 'rest.akismet.com' ); + if ( $ips && is_array($ips) && count($ips) ) { + $api_key = Akismet::get_api_key(); + + foreach ( $ips as $ip ) { + $response = Akismet::verify_key( $api_key, $ip ); + // even if the key is invalid, at least we know we have connectivity + if ( $response == 'valid' || $response == 'invalid' ) + $servers[$ip] = 'connected'; + else + $servers[$ip] = $response ? $response : 'unable to connect'; + } + } + } + + return $servers; + } + + // Simpler connectivity check + public static function check_server_connectivity($cache_timeout = 86400) { + + $debug = array(); + $debug[ 'PHP_VERSION' ] = PHP_VERSION; + $debug[ 'WORDPRESS_VERSION' ] = $GLOBALS['wp_version']; + $debug[ 'AKISMET_VERSION' ] = AKISMET_VERSION; + $debug[ 'AKISMET__PLUGIN_DIR' ] = AKISMET__PLUGIN_DIR; + $debug[ 'SITE_URL' ] = site_url(); + $debug[ 'HOME_URL' ] = home_url(); + + $servers = get_option('akismet_available_servers'); + if ( (time() - get_option('akismet_connectivity_time') < $cache_timeout) && $servers !== false ) { + $servers = self::check_server_ip_connectivity(); + update_option('akismet_available_servers', $servers); + update_option('akismet_connectivity_time', time()); + } + + if ( wp_http_supports( array( 'ssl' ) ) ) { + $response = wp_remote_get( 'https://rest.akismet.com/1.1/test' ); + } + else { + $response = wp_remote_get( 'http://rest.akismet.com/1.1/test' ); + } + + $debug[ 'gethostbynamel' ] = function_exists('gethostbynamel') ? 'exists' : 'not here'; + $debug[ 'Servers' ] = $servers; + $debug[ 'Test Connection' ] = $response; + + Akismet::log( $debug ); + + if ( $response && 'connected' == wp_remote_retrieve_body( $response ) ) + return true; + + return false; + } + + // Check the server connectivity and store the available servers in an option. + public static function get_server_connectivity($cache_timeout = 86400) { + return self::check_server_connectivity( $cache_timeout ); + } + + /** + * Find out whether any comments in the Pending queue have not yet been checked by Akismet. + * + * @return bool + */ + public static function are_any_comments_waiting_to_be_checked() { + return !! get_comments( array( + // Exclude comments that are not pending. This would happen if someone manually approved or spammed a comment + // that was waiting to be checked. The akismet_error meta entry will eventually be removed by the cron recheck job. + 'status' => 'hold', + + // This is the commentmeta that is saved when a comment couldn't be checked. + 'meta_key' => 'akismet_error', + + // We only need to know whether at least one comment is waiting for a check. + 'number' => 1, + ) ); + } + + public static function get_page_url( $page = 'config' ) { + + $args = array( 'page' => 'akismet-key-config' ); + + if ( $page == 'stats' ) { + $args = array( 'page' => 'akismet-key-config', 'view' => 'stats' ); + } elseif ( $page == 'delete_key' ) { + $args = array( 'page' => 'akismet-key-config', 'view' => 'start', 'action' => 'delete-key', '_wpnonce' => wp_create_nonce( self::NONCE ) ); + } elseif ( $page === 'init' ) { + $args = array( 'page' => 'akismet-key-config', 'view' => 'start' ); + } + + return add_query_arg( $args, menu_page_url( 'akismet-key-config', false ) ); + } + + public static function get_akismet_user( $api_key ) { + $akismet_user = false; + + $request_args = array( + 'key' => $api_key, + 'blog' => get_option( 'home' ), + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'get-subscription' ); + + $subscription_verification = Akismet::http_post( Akismet::build_query( $request_args ), 'get-subscription' ); + + if ( ! empty( $subscription_verification[1] ) ) { + if ( 'invalid' !== $subscription_verification[1] ) { + $akismet_user = json_decode( $subscription_verification[1] ); + } + } + + return $akismet_user; + } + + public static function get_stats( $api_key ) { + $stat_totals = array(); + + foreach( array( '6-months', 'all' ) as $interval ) { + $request_args = array( + 'blog' => get_option( 'home' ), + 'key' => $api_key, + 'from' => $interval, + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'get-stats' ); + + $response = Akismet::http_post( Akismet::build_query( $request_args ), 'get-stats' ); + + if ( ! empty( $response[1] ) ) { + $stat_totals[$interval] = json_decode( $response[1] ); + } + } + + return $stat_totals; + } + + public static function verify_wpcom_key( $api_key, $user_id, $extra = array() ) { + $request_args = array_merge( + array( + 'user_id' => $user_id, + 'api_key' => $api_key, + 'get_account_type' => 'true', + ), + $extra + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'verify-wpcom-key' ); + + $akismet_account = Akismet::http_post( Akismet::build_query( $request_args ), 'verify-wpcom-key' ); + + if ( ! empty( $akismet_account[1] ) ) + $akismet_account = json_decode( $akismet_account[1] ); + + Akismet::log( compact( 'akismet_account' ) ); + + return $akismet_account; + } + + public static function connect_jetpack_user() { + + if ( $jetpack_user = self::get_jetpack_user() ) { + if ( isset( $jetpack_user['user_id'] ) && isset( $jetpack_user['api_key'] ) ) { + $akismet_user = self::verify_wpcom_key( $jetpack_user['api_key'], $jetpack_user['user_id'], array( 'action' => 'connect_jetpack_user' ) ); + + if ( is_object( $akismet_user ) ) { + self::save_key( $akismet_user->api_key ); + return in_array( $akismet_user->status, array( 'active', 'active-dunning', 'no-sub' ) ); + } + } + } + + return false; + } + + public static function display_alert() { + Akismet::view( 'notice', array( + 'type' => 'alert', + 'code' => (int) get_option( 'akismet_alert_code' ), + 'msg' => get_option( 'akismet_alert_msg' ) + ) ); + } + + public static function get_usage_limit_alert_data() { + return array( + 'type' => 'usage-limit', + 'code' => (int) get_option( 'akismet_alert_code' ), + 'msg' => get_option( 'akismet_alert_msg' ), + 'api_calls' => get_option( 'akismet_alert_api_calls' ), + 'usage_limit' => get_option( 'akismet_alert_usage_limit' ), + 'upgrade_plan' => get_option( 'akismet_alert_upgrade_plan' ), + 'upgrade_url' => get_option( 'akismet_alert_upgrade_url' ), + 'upgrade_type' => get_option( 'akismet_alert_upgrade_type' ), + ); + } + + public static function display_usage_limit_alert() { + Akismet::view( 'notice', self::get_usage_limit_alert_data() ); + } + + public static function display_spam_check_warning() { + Akismet::fix_scheduled_recheck(); + + if ( wp_next_scheduled('akismet_schedule_cron_recheck') > time() && self::are_any_comments_waiting_to_be_checked() ) { + /* + * The 'akismet_display_cron_disabled_notice' filter can be used to control whether the WP-Cron disabled notice is displayed. + */ + if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON && apply_filters( 'akismet_display_cron_disabled_notice', true ) ) { + Akismet::view( 'notice', array( 'type' => 'spam-check-cron-disabled' ) ); + } else { + /* translators: The Akismet configuration page URL. */ + $link_text = apply_filters( 'akismet_spam_check_warning_link_text', sprintf( __( 'Please check your Akismet configuration and contact your web host if problems persist.', 'akismet' ), esc_url( self::get_page_url() ) ) ); + Akismet::view( 'notice', array( 'type' => 'spam-check', 'link_text' => $link_text ) ); + } + } + } + + public static function display_api_key_warning() { + Akismet::view( 'notice', array( 'type' => 'plugin' ) ); + } + + public static function display_page() { + if ( !Akismet::get_api_key() || ( isset( $_GET['view'] ) && $_GET['view'] == 'start' ) ) + self::display_start_page(); + elseif ( isset( $_GET['view'] ) && $_GET['view'] == 'stats' ) + self::display_stats_page(); + else + self::display_configuration_page(); + } + + public static function display_start_page() { + if ( isset( $_GET['action'] ) ) { + if ( $_GET['action'] == 'delete-key' ) { + if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], self::NONCE ) ) + delete_option( 'wordpress_api_key' ); + } + } + + if ( $api_key = Akismet::get_api_key() && ( empty( self::$notices['status'] ) || 'existing-key-invalid' != self::$notices['status'] ) ) { + self::display_configuration_page(); + return; + } + + //the user can choose to auto connect their API key by clicking a button on the akismet done page + //if jetpack, get verified api key by using connected wpcom user id + //if no jetpack, get verified api key by using an akismet token + + $akismet_user = false; + + if ( isset( $_GET['token'] ) && preg_match('/^(\d+)-[0-9a-f]{20}$/', $_GET['token'] ) ) + $akismet_user = self::verify_wpcom_key( '', '', array( 'token' => $_GET['token'] ) ); + elseif ( $jetpack_user = self::get_jetpack_user() ) + $akismet_user = self::verify_wpcom_key( $jetpack_user['api_key'], $jetpack_user['user_id'] ); + + if ( isset( $_GET['action'] ) ) { + if ( $_GET['action'] == 'save-key' ) { + if ( is_object( $akismet_user ) ) { + self::save_key( $akismet_user->api_key ); + self::display_configuration_page(); + return; + } + } + } + + Akismet::view( 'start', compact( 'akismet_user' ) ); + + /* + // To see all variants when testing. + $akismet_user->status = 'no-sub'; + Akismet::view( 'start', compact( 'akismet_user' ) ); + $akismet_user->status = 'cancelled'; + Akismet::view( 'start', compact( 'akismet_user' ) ); + $akismet_user->status = 'suspended'; + Akismet::view( 'start', compact( 'akismet_user' ) ); + $akismet_user->status = 'other'; + Akismet::view( 'start', compact( 'akismet_user' ) ); + $akismet_user = false; + */ + } + + public static function display_stats_page() { + Akismet::view( 'stats' ); + } + + public static function display_configuration_page() { + $api_key = Akismet::get_api_key(); + $akismet_user = self::get_akismet_user( $api_key ); + + if ( ! $akismet_user ) { + // This could happen if the user's key became invalid after it was previously valid and successfully set up. + self::$notices['status'] = 'existing-key-invalid'; + self::display_start_page(); + return; + } + + $stat_totals = self::get_stats( $api_key ); + + // If unset, create the new strictness option using the old discard option to determine its default. + // If the old option wasn't set, default to discarding the blatant spam. + if ( get_option( 'akismet_strictness' ) === false ) { + add_option( 'akismet_strictness', ( get_option( 'akismet_discard_month' ) === 'false' ? '0' : '1' ) ); + } + + // Sync the local "Total spam blocked" count with the authoritative count from the server. + if ( isset( $stat_totals['all'], $stat_totals['all']->spam ) ) { + update_option( 'akismet_spam_count', $stat_totals['all']->spam ); + } + + $notices = array(); + + if ( empty( self::$notices ) ) { + if ( ! empty( $stat_totals['all'] ) && isset( $stat_totals['all']->time_saved ) && $akismet_user->status == 'active' && $akismet_user->account_type == 'free-api-key' ) { + + $time_saved = false; + + if ( $stat_totals['all']->time_saved > 1800 ) { + $total_in_minutes = round( $stat_totals['all']->time_saved / 60 ); + $total_in_hours = round( $total_in_minutes / 60 ); + $total_in_days = round( $total_in_hours / 8 ); + $cleaning_up = __( 'Cleaning up spam takes time.' , 'akismet'); + + if ( $total_in_days > 1 ) + $time_saved = $cleaning_up . ' ' . sprintf( _n( 'Akismet has saved you %s day!', 'Akismet has saved you %s days!', $total_in_days, 'akismet' ), number_format_i18n( $total_in_days ) ); + elseif ( $total_in_hours > 1 ) + $time_saved = $cleaning_up . ' ' . sprintf( _n( 'Akismet has saved you %d hour!', 'Akismet has saved you %d hours!', $total_in_hours, 'akismet' ), $total_in_hours ); + elseif ( $total_in_minutes >= 30 ) + $time_saved = $cleaning_up . ' ' . sprintf( _n( 'Akismet has saved you %d minute!', 'Akismet has saved you %d minutes!', $total_in_minutes, 'akismet' ), $total_in_minutes ); + } + + $notices[] = array( 'type' => 'active-notice', 'time_saved' => $time_saved ); + } + } + + if ( !isset( self::$notices['status'] ) && in_array( $akismet_user->status, array( 'cancelled', 'suspended', 'missing', 'no-sub' ) ) ) { + $notices[] = array( 'type' => $akismet_user->status ); + } + + $alert_code = get_option( 'akismet_alert_code' ); + if ( isset( Akismet::$limit_notices[ $alert_code ] ) ) { + $notices[] = self::get_usage_limit_alert_data(); + } + + /* + * To see all variants when testing. + * + * You may also want to comment out the akismet_view_arguments filter in Akismet::view() + * to ensure that you can see all of the notices (e.g. suspended, active-notice). + */ + // $notices[] = array( 'type' => 'active-notice', 'time_saved' => 'Cleaning up spam takes time. Akismet has saved you 1 minute!' ); + // $notices[] = array( 'type' => 'plugin' ); + // $notices[] = array( 'type' => 'spam-check', 'link_text' => 'Link text.' ); + // $notices[] = array( 'type' => 'notice', 'notice_header' => 'This is the notice header.', 'notice_text' => 'This is the notice text.' ); + // $notices[] = array( 'type' => 'missing-functions' ); + // $notices[] = array( 'type' => 'servers-be-down' ); + // $notices[] = array( 'type' => 'active-dunning' ); + // $notices[] = array( 'type' => 'cancelled' ); + // $notices[] = array( 'type' => 'suspended' ); + // $notices[] = array( 'type' => 'missing' ); + // $notices[] = array( 'type' => 'no-sub' ); + // $notices[] = array( 'type' => 'new-key-valid' ); + // $notices[] = array( 'type' => 'new-key-invalid' ); + // $notices[] = array( 'type' => 'existing-key-invalid' ); + // $notices[] = array( 'type' => 'new-key-failed' ); + // $notices[] = array( 'type' => 'usage-limit', 'api_calls' => '15000', 'usage_limit' => '10000', 'upgrade_plan' => 'Enterprise', 'upgrade_url' => 'https://akismet.com/account/', 'code' => 10502 ); + // $notices[] = array( 'type' => 'spam-check-cron-disabled' ); + // $notices[] = array( 'type' => 'alert', 'code' => 123 ); + + Akismet::log( compact( 'stat_totals', 'akismet_user' ) ); + Akismet::view( 'config', compact( 'api_key', 'akismet_user', 'stat_totals', 'notices' ) ); + } + + public static function display_notice() { + global $hook_suffix; + + if ( in_array( $hook_suffix, array( 'jetpack_page_akismet-key-config', 'settings_page_akismet-key-config' ) ) ) { + // This page manages the notices and puts them inline where they make sense. + return; + } + + if ( in_array( $hook_suffix, array( 'edit-comments.php' ) ) && (int) get_option( 'akismet_alert_code' ) > 0 ) { + Akismet::verify_key( Akismet::get_api_key() ); //verify that the key is still in alert state + + $alert_code = get_option( 'akismet_alert_code' ); + if ( isset( Akismet::$limit_notices[ $alert_code ] ) ) { + self::display_usage_limit_alert(); + } elseif ( $alert_code > 0 ) { + self::display_alert(); + } + } + elseif ( ( 'plugins.php' === $hook_suffix || 'edit-comments.php' === $hook_suffix ) && ! Akismet::get_api_key() ) { + // Show the "Set Up Akismet" banner on the comments and plugin pages if no API key has been set. + self::display_api_key_warning(); + } + elseif ( $hook_suffix == 'edit-comments.php' && wp_next_scheduled( 'akismet_schedule_cron_recheck' ) ) { + self::display_spam_check_warning(); + } + + if ( isset( $_GET['akismet_recheck_complete'] ) ) { + $recheck_count = (int) $_GET['recheck_count']; + $spam_count = (int) $_GET['spam_count']; + + if ( $recheck_count === 0 ) { + $message = __( 'There were no comments to check. Akismet will only check comments awaiting moderation.', 'akismet' ); + } + else { + $message = sprintf( _n( 'Akismet checked %s comment.', 'Akismet checked %s comments.', $recheck_count, 'akismet' ), number_format( $recheck_count ) ); + $message .= ' '; + + if ( $spam_count === 0 ) { + $message .= __( 'No comments were caught as spam.', 'akismet' ); + } + else { + $message .= sprintf( _n( '%s comment was caught as spam.', '%s comments were caught as spam.', $spam_count, 'akismet' ), number_format( $spam_count ) ); + } + } + + echo '

    ' . esc_html( $message ) . '

    '; + } + else if ( isset( $_GET['akismet_recheck_error'] ) ) { + echo '

    ' . esc_html( __( 'Akismet could not recheck your comments for spam.', 'akismet' ) ) . '

    '; + } + } + + public static function display_status() { + if ( ! self::get_server_connectivity() ) { + Akismet::view( 'notice', array( 'type' => 'servers-be-down' ) ); + } + else if ( ! empty( self::$notices ) ) { + foreach ( self::$notices as $index => $type ) { + if ( is_object( $type ) ) { + $notice_header = $notice_text = ''; + + if ( property_exists( $type, 'notice_header' ) ) { + $notice_header = wp_kses( $type->notice_header, self::$allowed ); + } + + if ( property_exists( $type, 'notice_text' ) ) { + $notice_text = wp_kses( $type->notice_text, self::$allowed ); + } + + if ( property_exists( $type, 'status' ) ) { + $type = wp_kses( $type->status, self::$allowed ); + Akismet::view( 'notice', compact( 'type', 'notice_header', 'notice_text' ) ); + + unset( self::$notices[ $index ] ); + } + } + else { + Akismet::view( 'notice', compact( 'type' ) ); + + unset( self::$notices[ $index ] ); + } + } + } + } + + private static function get_jetpack_user() { + if ( !class_exists('Jetpack') ) + return false; + + if ( defined( 'JETPACK__VERSION' ) && version_compare( JETPACK__VERSION, '7.7', '<' ) ) { + // For version of Jetpack prior to 7.7. + Jetpack::load_xml_rpc_client(); + } + + $xml = new Jetpack_IXR_ClientMulticall( array( 'user_id' => get_current_user_id() ) ); + + $xml->addCall( 'wpcom.getUserID' ); + $xml->addCall( 'akismet.getAPIKey' ); + $xml->query(); + + Akismet::log( compact( 'xml' ) ); + + if ( !$xml->isError() ) { + $responses = $xml->getResponse(); + if ( ( is_countable( $responses ) ? count( $responses ) : 0 ) > 1 ) { + // Due to a quirk in how Jetpack does multi-calls, the response order + // can't be trusted to match the call order. It's a good thing our + // return values can be mostly differentiated from each other. + $first_response_value = array_shift( $responses[0] ); + $second_response_value = array_shift( $responses[1] ); + + // If WPCOM ever reaches 100 billion users, this will fail. :-) + if ( preg_match( '/^[a-f0-9]{12}$/i', $first_response_value ) ) { + $api_key = $first_response_value; + $user_id = (int) $second_response_value; + } + else { + $api_key = $second_response_value; + $user_id = (int) $first_response_value; + } + + return compact( 'api_key', 'user_id' ); + } + } + return false; + } + + /** + * Some commentmeta isn't useful in an export file. Suppress it (when supported). + * + * @param bool $exclude + * @param string $key The meta key + * @param object $meta The meta object + * @return bool Whether to exclude this meta entry from the export. + */ + public static function exclude_commentmeta_from_export( $exclude, $key, $meta ) { + if ( in_array( $key, array( 'akismet_as_submitted', 'akismet_rechecking', 'akismet_delayed_moderation_email' ) ) ) { + return true; + } + + return $exclude; + } + + /** + * When Akismet is active, remove the "Activate Akismet" step from the plugin description. + */ + public static function modify_plugin_description( $all_plugins ) { + if ( isset( $all_plugins['akismet/akismet.php'] ) ) { + if ( Akismet::get_api_key() ) { + $all_plugins['akismet/akismet.php']['Description'] = __( 'Used by millions, Akismet is quite possibly the best way in the world to protect your blog from spam. Your site is fully configured and being protected, even while you sleep.', 'akismet' ); + } + else { + $all_plugins['akismet/akismet.php']['Description'] = __( 'Used by millions, Akismet is quite possibly the best way in the world to protect your blog from spam. It keeps your site protected even while you sleep. To get started, just go to your Akismet Settings page to set up your API key.', 'akismet' ); + } + } + + return $all_plugins; + } + + private static function set_form_privacy_notice_option( $state ) { + if ( in_array( $state, array( 'display', 'hide' ) ) ) { + update_option( 'akismet_comment_form_privacy_notice', $state ); + } + } + + public static function register_personal_data_eraser( $erasers ) { + $erasers['akismet'] = array( + 'eraser_friendly_name' => __( 'Akismet', 'akismet' ), + 'callback' => array( 'Akismet_Admin', 'erase_personal_data' ), + ); + + return $erasers; + } + + /** + * When a user requests that their personal data be removed, Akismet has a duty to discard + * any personal data we store outside of the comment itself. Right now, that is limited + * to the copy of the comment we store in the akismet_as_submitted commentmeta. + * + * FWIW, this information would be automatically deleted after 15 days. + * + * @param $email_address string The email address of the user who has requested erasure. + * @param $page int This function can (and will) be called multiple times to prevent timeouts, + * so this argument is used for pagination. + * @return array + * @see https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/ + */ + public static function erase_personal_data( $email_address, $page = 1 ) { + $items_removed = false; + + $number = 50; + $page = (int) $page; + + $comments = get_comments( + array( + 'author_email' => $email_address, + 'number' => $number, + 'paged' => $page, + 'order_by' => 'comment_ID', + 'order' => 'ASC', + ) + ); + + foreach ( (array) $comments as $comment ) { + $comment_as_submitted = get_comment_meta( $comment->comment_ID, 'akismet_as_submitted', true ); + + if ( $comment_as_submitted ) { + delete_comment_meta( $comment->comment_ID, 'akismet_as_submitted' ); + $items_removed = true; + } + } + + // Tell core if we have more comments to work on still + $done = ( is_countable( $comments ) ? count( $comments ) : 0 ) < $number; + + return array( + 'items_removed' => $items_removed, + 'items_retained' => false, // always false in this example + 'messages' => array(), // no messages in this example + 'done' => $done, + ); + } + + /** + * Return an array of HTML elements that are allowed in a notice. + * + * @return array + */ + public static function get_notice_kses_allowed_elements() { + return self::$allowed; + } + + /** + * Return a version to append to the URL of an asset file (e.g. CSS and images). + * + * @param string $relative_path Relative path to asset file + * @return string + */ + public static function get_asset_file_version( $relative_path ) { + + $full_path = AKISMET__PLUGIN_DIR . $relative_path; + + // If the AKISMET_VERSION contains a lower-case letter, it's a development version (e.g. 5.3.1a2). + // Use the file modified time in development. + if ( preg_match( '/[a-z]/', AKISMET_VERSION ) && file_exists( $full_path ) ) { + return filemtime( $full_path ); + } + + // Otherwise, use the AKISMET_VERSION. + return AKISMET_VERSION; + } +} diff --git a/assets/wordpress/wp-content/plugins/akismet/class.akismet-cli.php b/assets/wordpress/wp-content/plugins/akismet/class.akismet-cli.php new file mode 100644 index 0000000..f0ea217 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/class.akismet-cli.php @@ -0,0 +1,186 @@ +... + * : The ID(s) of the comment(s) to check. + * + * [--noaction] + * : Don't change the status of the comment. Just report what Akismet thinks it is. + * + * ## EXAMPLES + * + * wp akismet check 12345 + * + * @alias comment-check + */ + public function check( $args, $assoc_args ) { + foreach ( $args as $comment_id ) { + if ( isset( $assoc_args['noaction'] ) ) { + // Check the comment, but don't reclassify it. + $api_response = Akismet::check_db_comment( $comment_id, 'wp-cli' ); + } + else { + $api_response = Akismet::recheck_comment( $comment_id, 'wp-cli' ); + } + + if ( 'true' === $api_response ) { + WP_CLI::line( sprintf( __( "Comment #%d is spam.", 'akismet' ), $comment_id ) ); + } + else if ( 'false' === $api_response ) { + WP_CLI::line( sprintf( __( "Comment #%d is not spam.", 'akismet' ), $comment_id ) ); + } + else { + if ( false === $api_response ) { + WP_CLI::error( __( "Failed to connect to Akismet.", 'akismet' ) ); + } + else if ( is_wp_error( $api_response ) ) { + WP_CLI::warning( sprintf( __( "Comment #%d could not be checked.", 'akismet' ), $comment_id ) ); + } + } + } + } + + /** + * Recheck all comments in the Pending queue. + * + * ## EXAMPLES + * + * wp akismet recheck_queue + * + * @alias recheck-queue + */ + public function recheck_queue() { + $batch_size = 100; + $start = 0; + + $total_counts = array(); + + do { + $result_counts = Akismet_Admin::recheck_queue_portion( $start, $batch_size ); + + if ( $result_counts['processed'] > 0 ) { + foreach ( $result_counts as $key => $count ) { + if ( ! isset( $total_counts[ $key ] ) ) { + $total_counts[ $key ] = $count; + } + else { + $total_counts[ $key ] += $count; + } + } + $start += $batch_size; + $start -= $result_counts['spam']; // These comments will have been removed from the queue. + } + } while ( $result_counts['processed'] > 0 ); + + WP_CLI::line( sprintf( _n( "Processed %d comment.", "Processed %d comments.", $total_counts['processed'], 'akismet' ), number_format( $total_counts['processed'] ) ) ); + WP_CLI::line( sprintf( _n( "%d comment moved to Spam.", "%d comments moved to Spam.", $total_counts['spam'], 'akismet' ), number_format( $total_counts['spam'] ) ) ); + + if ( $total_counts['error'] ) { + WP_CLI::line( sprintf( _n( "%d comment could not be checked.", "%d comments could not be checked.", $total_counts['error'], 'akismet' ), number_format( $total_counts['error'] ) ) ); + } + } + + /** + * Fetches stats from the Akismet API. + * + * ## OPTIONS + * + * [] + * : The time period for which to retrieve stats. + * --- + * default: all + * options: + * - days + * - months + * - all + * --- + * + * [--format=] + * : Allows overriding the output of the command when listing connections. + * --- + * default: table + * options: + * - table + * - json + * - csv + * - yaml + * - count + * --- + * + * [--summary] + * : When set, will display a summary of the stats. + * + * ## EXAMPLES + * + * wp akismet stats + * wp akismet stats all + * wp akismet stats days + * wp akismet stats months + * wp akismet stats all --summary + */ + public function stats( $args, $assoc_args ) { + $api_key = Akismet::get_api_key(); + + if ( empty( $api_key ) ) { + WP_CLI::error( __( 'API key must be set to fetch stats.', 'akismet' ) ); + } + + switch ( $args[0] ) { + case 'days': + $interval = '60-days'; + break; + case 'months': + $interval = '6-months'; + break; + default: + $interval = 'all'; + break; + } + + $request_args = array( + 'blog' => get_option( 'home' ), + 'key' => $api_key, + 'from' => $interval, + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'get-stats' ); + + $response = Akismet::http_post( Akismet::build_query( $request_args ), 'get-stats' ); + + if ( empty( $response[1] ) ) { + WP_CLI::error( __( 'Currently unable to fetch stats. Please try again.', 'akismet' ) ); + } + + $response_body = json_decode( $response[1], true ); + + if ( is_null( $response_body ) ) { + WP_CLI::error( __( 'Stats response could not be decoded.', 'akismet' ) ); + } + + if ( isset( $assoc_args['summary'] ) ) { + $keys = array( + 'spam', + 'ham', + 'missed_spam', + 'false_positives', + 'accuracy', + 'time_saved', + ); + + WP_CLI\Utils\format_items( $assoc_args['format'], array( $response_body ), $keys ); + } + else { + $stats = $response_body['breakdown']; + WP_CLI\Utils\format_items( $assoc_args['format'], $stats, array_keys( end( $stats ) ) ); + } + } +} \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/class.akismet-rest-api.php b/assets/wordpress/wp-content/plugins/akismet/class.akismet-rest-api.php new file mode 100644 index 0000000..12e86f0 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/class.akismet-rest-api.php @@ -0,0 +1,552 @@ + WP_REST_Server::READABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'get_key' ), + ), array( + 'methods' => WP_REST_Server::EDITABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'set_key' ), + 'args' => array( + 'key' => array( + 'required' => true, + 'type' => 'string', + 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), + 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), + ), + ), + ), array( + 'methods' => WP_REST_Server::DELETABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'delete_key' ), + ) + ) ); + + register_rest_route( 'akismet/v1', '/settings/', array( + array( + 'methods' => WP_REST_Server::READABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'get_settings' ), + ), + array( + 'methods' => WP_REST_Server::EDITABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'set_boolean_settings' ), + 'args' => array( + 'akismet_strictness' => array( + 'required' => false, + 'type' => 'boolean', + 'description' => __( 'If true, Akismet will automatically discard the worst spam automatically rather than putting it in the spam folder.', 'akismet' ), + ), + 'akismet_show_user_comments_approved' => array( + 'required' => false, + 'type' => 'boolean', + 'description' => __( 'If true, show the number of approved comments beside each comment author in the comments list page.', 'akismet' ), + ), + ), + ) + ) ); + + register_rest_route( 'akismet/v1', '/stats', array( + 'methods' => WP_REST_Server::READABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'get_stats' ), + 'args' => array( + 'interval' => array( + 'required' => false, + 'type' => 'string', + 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_interval' ), + 'description' => __( 'The time period for which to retrieve stats. Options: 60-days, 6-months, all', 'akismet' ), + 'default' => 'all', + ), + ), + ) ); + + register_rest_route( 'akismet/v1', '/stats/(?P[\w+])', array( + 'args' => array( + 'interval' => array( + 'description' => __( 'The time period for which to retrieve stats. Options: 60-days, 6-months, all', 'akismet' ), + 'type' => 'string', + ), + ), + array( + 'methods' => WP_REST_Server::READABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'get_stats' ), + ) + ) ); + + register_rest_route( 'akismet/v1', '/alert', array( + array( + 'methods' => WP_REST_Server::READABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'get_alert' ), + 'args' => array( + 'key' => array( + 'required' => false, + 'type' => 'string', + 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), + 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), + ), + ), + ), + array( + 'methods' => WP_REST_Server::EDITABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'set_alert' ), + 'args' => array( + 'key' => array( + 'required' => false, + 'type' => 'string', + 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), + 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), + ), + ), + ), + array( + 'methods' => WP_REST_Server::DELETABLE, + 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), + 'callback' => array( 'Akismet_REST_API', 'delete_alert' ), + 'args' => array( + 'key' => array( + 'required' => false, + 'type' => 'string', + 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), + 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), + ), + ), + ) + ) ); + + register_rest_route( + 'akismet/v1', + '/webhook', + array( + 'methods' => WP_REST_Server::CREATABLE, + 'callback' => array( 'Akismet_REST_API', 'receive_webhook' ), + 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), + ) + ); + } + + /** + * Get the current Akismet API key. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function get_key( $request = null ) { + return rest_ensure_response( Akismet::get_api_key() ); + } + + /** + * Set the API key, if possible. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function set_key( $request ) { + if ( defined( 'WPCOM_API_KEY' ) ) { + return rest_ensure_response( new WP_Error( 'hardcoded_key', __( 'This site\'s API key is hardcoded and cannot be changed via the API.', 'akismet' ), array( 'status'=> 409 ) ) ); + } + + $new_api_key = $request->get_param( 'key' ); + + if ( ! self::key_is_valid( $new_api_key ) ) { + return rest_ensure_response( new WP_Error( 'invalid_key', __( 'The value provided is not a valid and registered API key.', 'akismet' ), array( 'status' => 400 ) ) ); + } + + update_option( 'wordpress_api_key', $new_api_key ); + + return self::get_key(); + } + + /** + * Unset the API key, if possible. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function delete_key( $request ) { + if ( defined( 'WPCOM_API_KEY' ) ) { + return rest_ensure_response( new WP_Error( 'hardcoded_key', __( 'This site\'s API key is hardcoded and cannot be deleted.', 'akismet' ), array( 'status'=> 409 ) ) ); + } + + delete_option( 'wordpress_api_key' ); + + return rest_ensure_response( true ); + } + + /** + * Get the Akismet settings. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function get_settings( $request = null ) { + return rest_ensure_response( array( + 'akismet_strictness' => ( get_option( 'akismet_strictness', '1' ) === '1' ), + 'akismet_show_user_comments_approved' => ( get_option( 'akismet_show_user_comments_approved', '1' ) === '1' ), + ) ); + } + + /** + * Update the Akismet settings. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function set_boolean_settings( $request ) { + foreach ( array( + 'akismet_strictness', + 'akismet_show_user_comments_approved', + ) as $setting_key ) { + + $setting_value = $request->get_param( $setting_key ); + if ( is_null( $setting_value ) ) { + // This setting was not specified. + continue; + } + + // From 4.7+, WP core will ensure that these are always boolean + // values because they are registered with 'type' => 'boolean', + // but we need to do this ourselves for prior versions. + $setting_value = Akismet_REST_API::parse_boolean( $setting_value ); + + update_option( $setting_key, $setting_value ? '1' : '0' ); + } + + return self::get_settings(); + } + + /** + * Parse a numeric or string boolean value into a boolean. + * + * @param mixed $value The value to convert into a boolean. + * @return bool The converted value. + */ + public static function parse_boolean( $value ) { + switch ( $value ) { + case true: + case 'true': + case '1': + case 1: + return true; + + case false: + case 'false': + case '0': + case 0: + return false; + + default: + return (bool) $value; + } + } + + /** + * Get the Akismet stats for a given time period. + * + * Possible `interval` values: + * - all + * - 60-days + * - 6-months + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function get_stats( $request ) { + $api_key = Akismet::get_api_key(); + + $interval = $request->get_param( 'interval' ); + + $stat_totals = array(); + + $request_args = array( + 'blog' => get_option( 'home' ), + 'key' => $api_key, + 'from' => $interval, + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'get-stats' ); + + $response = Akismet::http_post( Akismet::build_query( $request_args ), 'get-stats' ); + + if ( ! empty( $response[1] ) ) { + $stat_totals[$interval] = json_decode( $response[1] ); + } + + return rest_ensure_response( $stat_totals ); + } + + /** + * Get the current alert code and message. Alert codes are used to notify the site owner + * if there's a problem, like a connection issue between their site and the Akismet API, + * invalid requests being sent, etc. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function get_alert( $request ) { + return rest_ensure_response( array( + 'code' => get_option( 'akismet_alert_code' ), + 'message' => get_option( 'akismet_alert_msg' ), + ) ); + } + + /** + * Update the current alert code and message by triggering a call to the Akismet server. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function set_alert( $request ) { + delete_option( 'akismet_alert_code' ); + delete_option( 'akismet_alert_msg' ); + + // Make a request so the most recent alert code and message are retrieved. + Akismet::verify_key( Akismet::get_api_key() ); + + return self::get_alert( $request ); + } + + /** + * Clear the current alert code and message. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function delete_alert( $request ) { + delete_option( 'akismet_alert_code' ); + delete_option( 'akismet_alert_msg' ); + + return self::get_alert( $request ); + } + + private static function key_is_valid( $key ) { + $request_args = array( + 'key' => $key, + 'blog' => get_option( 'home' ), + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'verify-key' ); + + $response = Akismet::http_post( Akismet::build_query( $request_args ), 'verify-key' ); + + if ( $response[1] == 'valid' ) { + return true; + } + + return false; + } + + public static function privileged_permission_callback() { + return current_user_can( 'manage_options' ); + } + + /** + * For calls that Akismet.com makes to the site to clear outdated alert codes, use the API key for authorization. + */ + public static function remote_call_permission_callback( $request ) { + $local_key = Akismet::get_api_key(); + + return $local_key && ( strtolower( $request->get_param( 'key' ) ) === strtolower( $local_key ) ); + } + + public static function sanitize_interval( $interval, $request, $param ) { + $interval = trim( $interval ); + + $valid_intervals = array( '60-days', '6-months', 'all', ); + + if ( ! in_array( $interval, $valid_intervals ) ) { + $interval = 'all'; + } + + return $interval; + } + + public static function sanitize_key( $key, $request, $param ) { + return trim( $key ); + } + + /** + * Process a webhook request from the Akismet servers. + * + * @param WP_REST_Request $request + * @return WP_Error|WP_REST_Response + */ + public static function receive_webhook( $request ) { + Akismet::log( array( 'Webhook request received', $request->get_body() ) ); + + /** + * The request body should look like this: + * array( + * 'key' => '1234567890abcd', + * 'endpoint' => '[comment-check|submit-ham|submit-spam]', + * 'comments' => array( + * array( + * 'guid' => '[...]', + * 'result' => '[true|false]', + * 'comment_author' => '[...]', + * [...] + * ), + * array( + * 'guid' => '[...]', + * [...], + * ), + * [...] + * ) + * ) + * + * Multiple comments can be included in each request, and the only truly required + * field for each is the guid, although it would be friendly to include also + * comment_post_ID, comment_parent, and comment_author_email, if possible to make + * searching easier. + */ + + // The response will include statuses for the result of each comment that was supplied. + $response = array( + 'comments' => array(), + ); + + $endpoint = $request->get_param( 'endpoint' ); + + switch ( $endpoint ) { + case 'comment-check': + $webhook_comments = $request->get_param( 'comments' ); + + if ( ! is_array( $webhook_comments ) ) { + return rest_ensure_response( new WP_Error( 'malformed_request', __( 'The \'comments\' parameter must be an array.', 'akismet' ), array( 'status' => 400 ) ) ); + } + + foreach ( $webhook_comments as $webhook_comment ) { + $guid = $webhook_comment['guid']; + + if ( ! $guid ) { + // Without the GUID, we can't be sure that we're matching the right comment. + // We'll make it a rule that any comment without a GUID is ignored intentionally. + continue; + } + + // Search on the fields that are indexed in the comments table, plus the GUID. + // The GUID is the only thing we really need to search on, but comment_meta + // is not indexed in a useful way if there are many many comments. This + // should help narrow it down first. + $queryable_fields = array( + 'comment_post_ID' => 'post_id', + 'comment_parent' => 'parent', + 'comment_author_email' => 'author_email', + ); + + $query_args = array(); + $query_args['status'] = 'any'; + $query_args['meta_key'] = 'akismet_guid'; + $query_args['meta_value'] = $guid; + + foreach ( $queryable_fields as $queryable_field => $wp_comment_query_field ) { + if ( isset( $webhook_comment[ $queryable_field ] ) ) { + $query_args[ $wp_comment_query_field ] = $webhook_comment[ $queryable_field ]; + } + } + + $comments_query = new WP_Comment_Query( $query_args ); + $comments = $comments_query->comments; + + if ( ! $comments ) { + // Unexpected, although the comment could have been deleted since being submitted. + Akismet::log( 'Webhook failed: no matching comment found.' ); + + $response['comments'][ $guid ] = array( 'status' => 'error', 'message' => __( 'Could not find matching comment.', 'akismet' ) ); + + continue; + } if ( count( $comments ) > 1 ) { + // Two comments shouldn't be able to match the same GUID. + Akismet::log( 'Webhook failed: multiple matching comments found.', $comments ); + + $response['comments'][ $guid ] = array( 'status' => 'error', 'message' => __( 'Multiple comments matched request.', 'akismet' ) ); + + continue; + } else { + // We have one single match, as hoped for. + Akismet::log( 'Found matching comment.', $comments ); + + $current_status = wp_get_comment_status( $comments[0] ); + + $result = $webhook_comment['result']; + + if ( 'true' == $result ) { + Akismet::log( 'Comment should be spam' ); + + // The comment should be classified as spam. + if ( 'spam' != $current_status ) { + // The comment is not classified as spam. If Akismet was the one to act on it, move it to spam. + if ( Akismet::last_comment_status_change_came_from_akismet( $comments[0]->comment_ID ) ) { + Akismet::log( 'Comment is not spam; marking as spam.' ); + + wp_spam_comment( $comments[0] ); + Akismet::update_comment_history( $comments[0]->comment_ID, '', 'webhook-spam' ); + } else { + Akismet::log( 'Comment is not spam, but it has already been manually handled by some other process.' ); + Akismet::update_comment_history( $comments[0]->comment_ID, '', 'webhook-spam-noaction' ); + } + } + } else if ( 'false' == $result ) { + Akismet::log( 'Comment should be ham' ); + + // The comment should be classified as ham. + if ( 'spam' == $current_status ) { + Akismet::log( 'Comment is spam.' ); + + // The comment is classified as spam. If Akismet was the one to label it as spam, unspam it. + if ( Akismet::last_comment_status_change_came_from_akismet( $comments[0]->comment_ID ) ) { + Akismet::log( 'Akismet marked it as spam; unspamming.' ); + + wp_unspam_comment( $comments[0] ); + akismet::update_comment_history( $comments[0]->comment_ID, '', 'webhook-ham' ); + } else { + Akismet::log( 'Comment is not spam, but it has already been manually handled by some other process.' ); + Akismet::update_comment_history( $comments[0]->comment_ID, '', 'webhook-ham-noaction' ); + } + } + } + + $response['comments'][ $guid ] = array( 'status' => 'success' ); + } + } + + break; + case 'submit-ham': + case 'submit-spam': + // Nothing to do for submit-ham or submit-spam. + break; + default: + // Unsupported endpoint. + break; + } + + /** + * Allow plugins to do things with a successfully processed webhook request, like logging. + * + * @since 5.3.2 + * + * @param WP_REST_Request $request The REST request object. + */ + do_action( 'akismet_webhook_received', $request ); + + Akismet::log( 'Done processing webhook.' ); + + return rest_ensure_response( $response ); + } +} diff --git a/assets/wordpress/wp-content/plugins/akismet/class.akismet-widget.php b/assets/wordpress/wp-content/plugins/akismet/class.akismet-widget.php new file mode 100644 index 0000000..1f8377f --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/class.akismet-widget.php @@ -0,0 +1,137 @@ + __( 'Display the number of spam comments Akismet has caught' , 'akismet') ) + ); + + if ( is_active_widget( false, false, $this->id_base ) ) { + add_action( 'wp_head', array( $this, 'css' ) ); + } + } + + function css() { +?> + + + + + +

    + + +

    + + + + + + 'FIRST_MONTH_OVER_LIMIT', + 10502 => 'SECOND_MONTH_OVER_LIMIT', + 10504 => 'THIRD_MONTH_APPROACHING_LIMIT', + 10508 => 'THIRD_MONTH_OVER_LIMIT', + 10516 => 'FOUR_PLUS_MONTHS_OVER_LIMIT', + ); + + private static $last_comment = ''; + private static $initiated = false; + private static $prevent_moderation_email_for_these_comments = array(); + private static $last_comment_result = null; + private static $comment_as_submitted_allowed_keys = array( 'blog' => '', 'blog_charset' => '', 'blog_lang' => '', 'blog_ua' => '', 'comment_agent' => '', 'comment_author' => '', 'comment_author_IP' => '', 'comment_author_email' => '', 'comment_author_url' => '', 'comment_content' => '', 'comment_date_gmt' => '', 'comment_tags' => '', 'comment_type' => '', 'guid' => '', 'is_test' => '', 'permalink' => '', 'reporter' => '', 'site_domain' => '', 'submit_referer' => '', 'submit_uri' => '', 'user_ID' => '', 'user_agent' => '', 'user_id' => '', 'user_ip' => '' ); + + public static function init() { + if ( ! self::$initiated ) { + self::init_hooks(); + } + } + + /** + * Initializes WordPress hooks + */ + private static function init_hooks() { + self::$initiated = true; + + add_action( 'wp_insert_comment', array( 'Akismet', 'auto_check_update_meta' ), 10, 2 ); + add_filter( 'preprocess_comment', array( 'Akismet', 'auto_check_comment' ), 1 ); + add_filter( 'rest_pre_insert_comment', array( 'Akismet', 'rest_auto_check_comment' ), 1 ); + + add_action( 'comment_form', array( 'Akismet', 'load_form_js' ) ); + add_action( 'do_shortcode_tag', array( 'Akismet', 'load_form_js_via_filter' ), 10, 4 ); + + add_action( 'akismet_scheduled_delete', array( 'Akismet', 'delete_old_comments' ) ); + add_action( 'akismet_scheduled_delete', array( 'Akismet', 'delete_old_comments_meta' ) ); + add_action( 'akismet_scheduled_delete', array( 'Akismet', 'delete_orphaned_commentmeta' ) ); + add_action( 'akismet_schedule_cron_recheck', array( 'Akismet', 'cron_recheck' ) ); + + add_action( 'comment_form', array( 'Akismet', 'add_comment_nonce' ), 1 ); + add_action( 'comment_form', array( 'Akismet', 'output_custom_form_fields' ) ); + add_filter( 'script_loader_tag', array( 'Akismet', 'set_form_js_async' ), 10, 3 ); + + add_filter( 'comment_moderation_recipients', array( 'Akismet', 'disable_moderation_emails_if_unreachable' ), 1000, 2 ); + add_filter( 'pre_comment_approved', array( 'Akismet', 'last_comment_status' ), 10, 2 ); + + add_action( 'transition_comment_status', array( 'Akismet', 'transition_comment_status' ), 10, 3 ); + + // Run this early in the pingback call, before doing a remote fetch of the source uri + add_action( 'xmlrpc_call', array( 'Akismet', 'pre_check_pingback' ) ); + + // Jetpack compatibility + add_filter( 'jetpack_options_whitelist', array( 'Akismet', 'add_to_jetpack_options_whitelist' ) ); + add_filter( 'jetpack_contact_form_html', array( 'Akismet', 'inject_custom_form_fields' ) ); + add_filter( 'jetpack_contact_form_akismet_values', array( 'Akismet', 'prepare_custom_form_values' ) ); + + // Gravity Forms + add_filter( 'gform_get_form_filter', array( 'Akismet', 'inject_custom_form_fields' ) ); + add_filter( 'gform_akismet_fields', array( 'Akismet', 'prepare_custom_form_values' ) ); + + // Contact Form 7 + add_filter( 'wpcf7_form_elements', array( 'Akismet', 'append_custom_form_fields' ) ); + add_filter( 'wpcf7_akismet_parameters', array( 'Akismet', 'prepare_custom_form_values' ) ); + + // Formidable Forms + add_filter( 'frm_filter_final_form', array( 'Akismet', 'inject_custom_form_fields' ) ); + add_filter( 'frm_akismet_values', array( 'Akismet', 'prepare_custom_form_values' ) ); + + // Fluent Forms + /* + * The Fluent Forms hook names were updated in version 5.0.0. The last version that supported + * the original hook names was 4.3.25, and version 4.3.25 was tested up to WordPress version 6.1. + * + * The legacy hooks are fired before the new hooks. See + * https://github.com/fluentform/fluentform/commit/cc45341afcae400f217470a7bbfb15efdd80454f + * + * The legacy Fluent Forms hooks will be removed when Akismet no longer supports WordPress version 6.1. + * This will provide compatibility with previous versions of Fluent Forms for a reasonable amount of time. + */ + add_filter( 'fluentform_form_element_start', array( 'Akismet', 'output_custom_form_fields' ) ); + add_filter( 'fluentform_akismet_fields', array( 'Akismet', 'prepare_custom_form_values' ), 10, 2 ); + // Current Fluent Form hooks. + add_filter( 'fluentform/form_element_start', array( 'Akismet', 'output_custom_form_fields' ) ); + add_filter( 'fluentform/akismet_fields', array( 'Akismet', 'prepare_custom_form_values' ), 10, 2 ); + + add_action( 'update_option_wordpress_api_key', array( 'Akismet', 'updated_option' ), 10, 2 ); + add_action( 'add_option_wordpress_api_key', array( 'Akismet', 'added_option' ), 10, 2 ); + + add_action( 'comment_form_after', array( 'Akismet', 'display_comment_form_privacy_notice' ) ); + } + + public static function get_api_key() { + return apply_filters( 'akismet_get_api_key', defined('WPCOM_API_KEY') ? constant('WPCOM_API_KEY') : get_option('wordpress_api_key') ); + } + + /** + * Exchange the API key for a token that can only be used to access stats pages. + * + * @return string + */ + public static function get_access_token() { + static $access_token = null; + + if ( is_null( $access_token ) ) { + $request_args = array( 'api_key' => self::get_api_key() ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'token' ); + + $response = self::http_post( self::build_query( $request_args ), 'token' ); + + $access_token = $response[1]; + } + + return $access_token; + } + + public static function check_key_status( $key, $ip = null ) { + $request_args = array( + 'key' => $key, + 'blog' => get_option( 'home' ), + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'verify-key' ); + + return self::http_post( self::build_query( $request_args ), 'verify-key', $ip ); + } + + public static function verify_key( $key, $ip = null ) { + // Shortcut for obviously invalid keys. + if ( strlen( $key ) != 12 ) { + return 'invalid'; + } + + $response = self::check_key_status( $key, $ip ); + + if ( $response[1] != 'valid' && $response[1] != 'invalid' ) + return 'failed'; + + return $response[1]; + } + + public static function deactivate_key( $key ) { + $request_args = array( + 'key' => $key, + 'blog' => get_option( 'home' ), + ); + + $request_args = apply_filters( 'akismet_request_args', $request_args, 'deactivate' ); + + $response = self::http_post( self::build_query( $request_args ), 'deactivate' ); + + if ( $response[1] != 'deactivated' ) + return 'failed'; + + return $response[1]; + } + + /** + * Add the akismet option to the Jetpack options management whitelist. + * + * @param array $options The list of whitelisted option names. + * @return array The updated whitelist + */ + public static function add_to_jetpack_options_whitelist( $options ) { + $options[] = 'wordpress_api_key'; + return $options; + } + + /** + * When the akismet option is updated, run the registration call. + * + * This should only be run when the option is updated from the Jetpack/WP.com + * API call, and only if the new key is different than the old key. + * + * @param mixed $old_value The old option value. + * @param mixed $value The new option value. + */ + public static function updated_option( $old_value, $value ) { + // Not an API call + if ( ! class_exists( 'WPCOM_JSON_API_Update_Option_Endpoint' ) ) { + return; + } + // Only run the registration if the old key is different. + if ( $old_value !== $value ) { + self::verify_key( $value ); + } + } + + /** + * Treat the creation of an API key the same as updating the API key to a new value. + * + * @param mixed $option_name Will always be "wordpress_api_key", until something else hooks in here. + * @param mixed $value The option value. + */ + public static function added_option( $option_name, $value ) { + if ( 'wordpress_api_key' === $option_name ) { + return self::updated_option( '', $value ); + } + } + + public static function rest_auto_check_comment( $commentdata ) { + return self::auto_check_comment( $commentdata, 'rest_api' ); + } + + /** + * Check a comment for spam. + * + * @param array $commentdata + * @param string $context What kind of request triggered this comment check? Possible values are 'default', 'rest_api', and 'xml-rpc'. + * @return array|WP_Error Either the $commentdata array with additional entries related to its spam status + * or a WP_Error, if it's a REST API request and the comment should be discarded. + */ + public static function auto_check_comment( $commentdata, $context = 'default' ) { + // If no key is configured, then there's no point in doing any of this. + if ( ! self::get_api_key() ) { + return $commentdata; + } + + self::$last_comment_result = null; + + $comment = $commentdata; + + $comment['user_ip'] = self::get_ip_address(); + $comment['user_agent'] = self::get_user_agent(); + $comment['referrer'] = self::get_referer(); + $comment['blog'] = get_option( 'home' ); + $comment['blog_lang'] = get_locale(); + $comment['blog_charset'] = get_option('blog_charset'); + $comment['permalink'] = get_permalink( $comment['comment_post_ID'] ); + + if ( ! empty( $comment['user_ID'] ) ) { + $comment['user_role'] = Akismet::get_user_roles( $comment['user_ID'] ); + } + + /** See filter documentation in init_hooks(). */ + $akismet_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) ); + $comment['akismet_comment_nonce'] = 'inactive'; + if ( $akismet_nonce_option == 'true' || $akismet_nonce_option == '' ) { + $comment['akismet_comment_nonce'] = 'failed'; + if ( isset( $_POST['akismet_comment_nonce'] ) && wp_verify_nonce( $_POST['akismet_comment_nonce'], 'akismet_comment_nonce_' . $comment['comment_post_ID'] ) ) + $comment['akismet_comment_nonce'] = 'passed'; + + // comment reply in wp-admin + if ( isset( $_POST['_ajax_nonce-replyto-comment'] ) && check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment' ) ) + $comment['akismet_comment_nonce'] = 'passed'; + + } + + if ( self::is_test_mode() ) + $comment['is_test'] = 'true'; + + foreach( $_POST as $key => $value ) { + if ( is_string( $value ) ) + $comment["POST_{$key}"] = $value; + } + + foreach ( $_SERVER as $key => $value ) { + if ( ! is_string( $value ) ) { + continue; + } + + if ( preg_match( "/^HTTP_COOKIE/", $key ) ) { + continue; + } + + // Send any potentially useful $_SERVER vars, but avoid sending junk we don't need. + if ( preg_match( "/^(HTTP_|REMOTE_ADDR|REQUEST_URI|DOCUMENT_URI)/", $key ) ) { + $comment[ "$key" ] = $value; + } + } + + $post = get_post( $comment['comment_post_ID'] ); + + if ( ! is_null( $post ) ) { + // $post can technically be null, although in the past, it's always been an indicator of another plugin interfering. + $comment[ 'comment_post_modified_gmt' ] = $post->post_modified_gmt; + + // Tags and categories are important context in which to consider the comment. + $comment['comment_context'] = array(); + + $tag_names = wp_get_post_tags( $post->ID, array( 'fields' => 'names' ) ); + + if ( $tag_names && ! is_wp_error( $tag_names ) ) { + foreach ( $tag_names as $tag_name ) { + $comment['comment_context'][] = $tag_name; + } + } + + $category_names = wp_get_post_categories( $post->ID, array( 'fields' => 'names' ) ); + + if ( $category_names && ! is_wp_error( $category_names ) ) { + foreach ( $category_names as $category_name ) { + $comment['comment_context'][] = $category_name; + } + } + } + + /** + * Filter the data that is used to generate the request body for the API call. + * + * @since 5.3.1 + * + * @param array $comment An array of request data. + * @param string $endpoint The API endpoint being requested. + */ + $comment = apply_filters( 'akismet_request_args', $comment, 'comment-check' ); + + $response = self::http_post( self::build_query( $comment ), 'comment-check' ); + + do_action( 'akismet_comment_check_response', $response ); + + $commentdata['comment_as_submitted'] = array_intersect_key( $comment, self::$comment_as_submitted_allowed_keys ); + + // Also include any form fields we inject into the comment form, like ak_js + foreach ( $_POST as $key => $value ) { + if ( is_string( $value ) && strpos( $key, 'ak_' ) === 0 ) { + $commentdata['comment_as_submitted'][ 'POST_' . $key ] = $value; + } + } + + $commentdata['akismet_result'] = $response[1]; + + if ( isset( $response[0]['x-akismet-pro-tip'] ) ) + $commentdata['akismet_pro_tip'] = $response[0]['x-akismet-pro-tip']; + + if ( isset( $response[0]['x-akismet-guid'] ) ) { + $commentdata['akismet_guid'] = $response[0]['x-akismet-guid']; + } + + if ( isset( $response[0]['x-akismet-error'] ) ) { + // An error occurred that we anticipated (like a suspended key) and want the user to act on. + // Send to moderation. + self::$last_comment_result = '0'; + } + else if ( 'true' == $response[1] ) { + // akismet_spam_count will be incremented later by comment_is_spam() + self::$last_comment_result = 'spam'; + + $discard = ( isset( $commentdata['akismet_pro_tip'] ) && $commentdata['akismet_pro_tip'] === 'discard' && self::allow_discard() ); + + do_action( 'akismet_spam_caught', $discard ); + + if ( $discard ) { + // The spam is obvious, so we're bailing out early. + // akismet_result_spam() won't be called so bump the counter here + if ( $incr = apply_filters( 'akismet_spam_count_incr', 1 ) ) { + update_option( 'akismet_spam_count', get_option( 'akismet_spam_count' ) + $incr ); + } + + if ( 'rest_api' === $context ) { + return new WP_Error( 'akismet_rest_comment_discarded', __( 'Comment discarded.', 'akismet' ) ); + } else if ( 'xml-rpc' === $context ) { + // If this is a pingback that we're pre-checking, the discard behavior is the same as the normal spam response behavior. + return $commentdata; + } else { + // Redirect back to the previous page, or failing that, the post permalink, or failing that, the homepage of the blog. + $redirect_to = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : ( $post ? get_permalink( $post ) : home_url() ); + wp_safe_redirect( esc_url_raw( $redirect_to ) ); + die(); + } + } + else if ( 'rest_api' === $context ) { + // The way the REST API structures its calls, we can set the comment_approved value right away. + $commentdata['comment_approved'] = 'spam'; + } + } + + // if the response is neither true nor false, hold the comment for moderation and schedule a recheck + if ( 'true' != $response[1] && 'false' != $response[1] ) { + if ( !current_user_can('moderate_comments') ) { + // Comment status should be moderated + self::$last_comment_result = '0'; + } + + if ( ! wp_next_scheduled( 'akismet_schedule_cron_recheck' ) ) { + wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' ); + do_action( 'akismet_scheduled_recheck', 'invalid-response-' . $response[1] ); + } + + self::$prevent_moderation_email_for_these_comments[] = $commentdata; + } + + // Delete old comments daily + if ( ! wp_next_scheduled( 'akismet_scheduled_delete' ) ) { + wp_schedule_event( time(), 'daily', 'akismet_scheduled_delete' ); + } + + self::set_last_comment( $commentdata ); + self::fix_scheduled_recheck(); + + return $commentdata; + } + + public static function get_last_comment() { + return self::$last_comment; + } + + public static function set_last_comment( $comment ) { + if ( is_null( $comment ) ) { + self::$last_comment = null; + } + else { + // We filter it here so that it matches the filtered comment data that we'll have to compare against later. + // wp_filter_comment expects comment_author_IP + self::$last_comment = wp_filter_comment( + array_merge( + array( 'comment_author_IP' => self::get_ip_address() ), + $comment + ) + ); + } + } + + // this fires on wp_insert_comment. we can't update comment_meta when auto_check_comment() runs + // because we don't know the comment ID at that point. + public static function auto_check_update_meta( $id, $comment ) { + // wp_insert_comment() might be called in other contexts, so make sure this is the same comment + // as was checked by auto_check_comment + if ( is_object( $comment ) && !empty( self::$last_comment ) && is_array( self::$last_comment ) ) { + if ( self::matches_last_comment( $comment ) ) { + load_plugin_textdomain( 'akismet' ); + + // normal result: true or false + if ( self::$last_comment['akismet_result'] == 'true' ) { + update_comment_meta( $comment->comment_ID, 'akismet_result', 'true' ); + self::update_comment_history( $comment->comment_ID, '', 'check-spam' ); + if ( $comment->comment_approved != 'spam' ) { + self::update_comment_history( + $comment->comment_ID, + '', + 'status-changed-' . $comment->comment_approved + ); + } + } elseif ( self::$last_comment['akismet_result'] == 'false' ) { + update_comment_meta( $comment->comment_ID, 'akismet_result', 'false' ); + self::update_comment_history( $comment->comment_ID, '', 'check-ham' ); + // Status could be spam or trash, depending on the WP version and whether this change applies: + // https://core.trac.wordpress.org/changeset/34726 + if ( $comment->comment_approved == 'spam' || $comment->comment_approved == 'trash' ) { + if ( function_exists( 'wp_check_comment_disallowed_list' ) ) { + if ( wp_check_comment_disallowed_list( $comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent ) ) { + self::update_comment_history( $comment->comment_ID, '', 'wp-disallowed' ); + } else { + self::update_comment_history( $comment->comment_ID, '', 'status-changed-' . $comment->comment_approved ); + } + } else if ( function_exists( 'wp_blacklist_check' ) && wp_blacklist_check( $comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent ) ) { + self::update_comment_history( $comment->comment_ID, '', 'wp-blacklisted' ); + } else { + self::update_comment_history( $comment->comment_ID, '', 'status-changed-' . $comment->comment_approved ); + } + } + } else { + // abnormal result: error + update_comment_meta( $comment->comment_ID, 'akismet_error', time() ); + self::update_comment_history( + $comment->comment_ID, + '', + 'check-error', + array( 'response' => substr( self::$last_comment['akismet_result'], 0, 50 ) ) + ); + } + + // record the complete original data as submitted for checking + if ( isset( self::$last_comment['comment_as_submitted'] ) ) { + update_comment_meta( $comment->comment_ID, 'akismet_as_submitted', self::$last_comment['comment_as_submitted'] ); + } + + if ( isset( self::$last_comment['akismet_pro_tip'] ) ) { + update_comment_meta( $comment->comment_ID, 'akismet_pro_tip', self::$last_comment['akismet_pro_tip'] ); + } + + if ( isset( self::$last_comment['akismet_guid'] ) ) { + update_comment_meta( $comment->comment_ID, 'akismet_guid', self::$last_comment['akismet_guid'] ); + } + } + } + } + + public static function delete_old_comments() { + global $wpdb; + + /** + * Determines how many comments will be deleted in each batch. + * + * @param int The default, as defined by AKISMET_DELETE_LIMIT. + */ + $delete_limit = apply_filters( 'akismet_delete_comment_limit', defined( 'AKISMET_DELETE_LIMIT' ) ? AKISMET_DELETE_LIMIT : 10000 ); + $delete_limit = max( 1, intval( $delete_limit ) ); + + /** + * Determines how many days a comment will be left in the Spam queue before being deleted. + * + * @param int The default number of days. + */ + $delete_interval = apply_filters( 'akismet_delete_comment_interval', 15 ); + $delete_interval = max( 1, intval( $delete_interval ) ); + + while ( $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_id FROM {$wpdb->comments} WHERE DATE_SUB(NOW(), INTERVAL %d DAY) > comment_date_gmt AND comment_approved = 'spam' LIMIT %d", $delete_interval, $delete_limit ) ) ) { + if ( empty( $comment_ids ) ) + return; + + $wpdb->queries = array(); + + $comments = array(); + + foreach ( $comment_ids as $comment_id ) { + $comments[ $comment_id ] = get_comment( $comment_id ); + + do_action( 'delete_comment', $comment_id, $comments[ $comment_id ] ); + do_action( 'akismet_batch_delete_count', __FUNCTION__ ); + } + + // Prepared as strings since comment_id is an unsigned BIGINT, and using %d will constrain the value to the maximum signed BIGINT. + $format_string = implode( ', ', array_fill( 0, is_countable( $comment_ids ) ? count( $comment_ids ) : 0, '%s' ) ); + + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->comments} WHERE comment_id IN ( " . $format_string . " )", $comment_ids ) ); + $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->commentmeta} WHERE comment_id IN ( " . $format_string . " )", $comment_ids ) ); + + foreach ( $comment_ids as $comment_id ) { + do_action( 'deleted_comment', $comment_id, $comments[ $comment_id ] ); + unset( $comments[ $comment_id ] ); + } + + clean_comment_cache( $comment_ids ); + do_action( 'akismet_delete_comment_batch', is_countable( $comment_ids ) ? count( $comment_ids ) : 0 ); + } + + if ( apply_filters( 'akismet_optimize_table', ( mt_rand(1, 5000) == 11), $wpdb->comments ) ) // lucky number + $wpdb->query("OPTIMIZE TABLE {$wpdb->comments}"); + } + + public static function delete_old_comments_meta() { + global $wpdb; + + $interval = apply_filters( 'akismet_delete_commentmeta_interval', 15 ); + + # enforce a minimum of 1 day + $interval = absint( $interval ); + if ( $interval < 1 ) + $interval = 1; + + // akismet_as_submitted meta values are large, so expire them + // after $interval days regardless of the comment status + while ( $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT m.comment_id FROM {$wpdb->commentmeta} as m INNER JOIN {$wpdb->comments} as c USING(comment_id) WHERE m.meta_key = 'akismet_as_submitted' AND DATE_SUB(NOW(), INTERVAL %d DAY) > c.comment_date_gmt LIMIT 10000", $interval ) ) ) { + if ( empty( $comment_ids ) ) + return; + + $wpdb->queries = array(); + + foreach ( $comment_ids as $comment_id ) { + delete_comment_meta( $comment_id, 'akismet_as_submitted' ); + do_action( 'akismet_batch_delete_count', __FUNCTION__ ); + } + + do_action( 'akismet_delete_commentmeta_batch', is_countable( $comment_ids ) ? count( $comment_ids ) : 0 ); + } + + if ( apply_filters( 'akismet_optimize_table', ( mt_rand(1, 5000) == 11), $wpdb->commentmeta ) ) // lucky number + $wpdb->query("OPTIMIZE TABLE {$wpdb->commentmeta}"); + } + + // Clear out comments meta that no longer have corresponding comments in the database + public static function delete_orphaned_commentmeta() { + global $wpdb; + + $last_meta_id = 0; + $start_time = isset( $_SERVER['REQUEST_TIME_FLOAT'] ) ? $_SERVER['REQUEST_TIME_FLOAT'] : microtime( true ); + $max_exec_time = max( ini_get('max_execution_time') - 5, 3 ); + + while ( $commentmeta_results = $wpdb->get_results( $wpdb->prepare( "SELECT m.meta_id, m.comment_id, m.meta_key FROM {$wpdb->commentmeta} as m LEFT JOIN {$wpdb->comments} as c USING(comment_id) WHERE c.comment_id IS NULL AND m.meta_id > %d ORDER BY m.meta_id LIMIT 1000", $last_meta_id ) ) ) { + if ( empty( $commentmeta_results ) ) + return; + + $wpdb->queries = array(); + + $commentmeta_deleted = 0; + + foreach ( $commentmeta_results as $commentmeta ) { + if ( 'akismet_' == substr( $commentmeta->meta_key, 0, 8 ) ) { + delete_comment_meta( $commentmeta->comment_id, $commentmeta->meta_key ); + do_action( 'akismet_batch_delete_count', __FUNCTION__ ); + $commentmeta_deleted++; + } + + $last_meta_id = $commentmeta->meta_id; + } + + do_action( 'akismet_delete_commentmeta_batch', $commentmeta_deleted ); + + // If we're getting close to max_execution_time, quit for this round. + if ( microtime(true) - $start_time > $max_exec_time ) + return; + } + + if ( apply_filters( 'akismet_optimize_table', ( mt_rand(1, 5000) == 11), $wpdb->commentmeta ) ) // lucky number + $wpdb->query("OPTIMIZE TABLE {$wpdb->commentmeta}"); + } + + // how many approved comments does this author have? + public static function get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url ) { + global $wpdb; + + /** + * Which comment types should be ignored when counting a user's approved comments? + * + * Some plugins add entries to the comments table that are not actual + * comments that could have been checked by Akismet. Allow these comments + * to be excluded from the "approved comment count" query in order to + * avoid artificially inflating the approved comment count. + * + * @param array $comment_types An array of comment types that won't be considered + * when counting a user's approved comments. + * + * @since 4.2.2 + */ + $excluded_comment_types = apply_filters( 'akismet_excluded_comment_types', array() ); + + $comment_type_where = ''; + + if ( is_array( $excluded_comment_types ) && ! empty( $excluded_comment_types ) ) { + $excluded_comment_types = array_unique( $excluded_comment_types ); + + foreach ( $excluded_comment_types as $excluded_comment_type ) { + $comment_type_where .= $wpdb->prepare( ' AND comment_type <> %s ', $excluded_comment_type ); + } + } + + if ( ! empty( $user_id ) ) { + return (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->comments} WHERE user_id = %d AND comment_approved = 1" . $comment_type_where, $user_id ) ); + } + + if ( ! empty( $comment_author_email ) ) { + return (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->comments} WHERE comment_author_email = %s AND comment_author = %s AND comment_author_url = %s AND comment_approved = 1" . $comment_type_where, $comment_author_email, $comment_author, $comment_author_url ) ); + } + + return 0; + } + + /** + * Get the full comment history for a given comment, as an array in reverse chronological order. + * Each entry will have an 'event', a 'time', and possible a 'message' member (if the entry is old enough). + * Some entries will also have a 'user' or 'meta' member. + * + * @param int $comment_id The relevant comment ID. + * @return array|bool An array of history events, or false if there is no history. + */ + public static function get_comment_history( $comment_id ) { + $history = get_comment_meta( $comment_id, 'akismet_history', false ); + if ( empty( $history ) || empty( $history[ 0 ] ) ) { + return false; + } + + /* + // To see all variants when testing. + $history[] = array( 'time' => 445856401, 'message' => 'Old versions of Akismet stored the message as a literal string in the commentmeta.', 'event' => null ); + $history[] = array( 'time' => 445856402, 'event' => 'recheck-spam' ); + $history[] = array( 'time' => 445856403, 'event' => 'check-spam' ); + $history[] = array( 'time' => 445856404, 'event' => 'recheck-ham' ); + $history[] = array( 'time' => 445856405, 'event' => 'check-ham' ); + $history[] = array( 'time' => 445856406, 'event' => 'wp-blacklisted' ); + $history[] = array( 'time' => 445856406, 'event' => 'wp-disallowed' ); + $history[] = array( 'time' => 445856407, 'event' => 'report-spam' ); + $history[] = array( 'time' => 445856408, 'event' => 'report-spam', 'user' => 'sam' ); + $history[] = array( 'message' => 'sam reported this comment as spam (hardcoded message).', 'time' => 445856400, 'event' => 'report-spam', 'user' => 'sam' ); + $history[] = array( 'time' => 445856409, 'event' => 'report-ham', 'user' => 'sam' ); + $history[] = array( 'message' => 'sam reported this comment as ham (hardcoded message).', 'time' => 445856400, 'event' => 'report-ham', 'user' => 'sam' ); // + $history[] = array( 'time' => 445856410, 'event' => 'cron-retry-spam' ); + $history[] = array( 'time' => 445856411, 'event' => 'cron-retry-ham' ); + $history[] = array( 'time' => 445856412, 'event' => 'check-error' ); // + $history[] = array( 'time' => 445856413, 'event' => 'check-error', 'meta' => array( 'response' => 'The server was taking a nap.' ) ); + $history[] = array( 'time' => 445856414, 'event' => 'recheck-error' ); // Should not generate a message. + $history[] = array( 'time' => 445856415, 'event' => 'recheck-error', 'meta' => array( 'response' => 'The server was taking a nap.' ) ); + $history[] = array( 'time' => 445856416, 'event' => 'status-changedtrash' ); + $history[] = array( 'time' => 445856417, 'event' => 'status-changedspam' ); + $history[] = array( 'time' => 445856418, 'event' => 'status-changedhold' ); + $history[] = array( 'time' => 445856419, 'event' => 'status-changedapprove' ); + $history[] = array( 'time' => 445856420, 'event' => 'status-changed-trash' ); + $history[] = array( 'time' => 445856421, 'event' => 'status-changed-spam' ); + $history[] = array( 'time' => 445856422, 'event' => 'status-changed-hold' ); + $history[] = array( 'time' => 445856423, 'event' => 'status-changed-approve' ); + $history[] = array( 'time' => 445856424, 'event' => 'status-trash', 'user' => 'sam' ); + $history[] = array( 'time' => 445856425, 'event' => 'status-spam', 'user' => 'sam' ); + $history[] = array( 'time' => 445856426, 'event' => 'status-hold', 'user' => 'sam' ); + $history[] = array( 'time' => 445856427, 'event' => 'status-approve', 'user' => 'sam' ); + $history[] = array( 'time' => 445856427, 'event' => 'webhook-spam' ); + $history[] = array( 'time' => 445856427, 'event' => 'webhook-ham' ); + $history[] = array( 'time' => 445856427, 'event' => 'webhook-spam-noaction' ); + $history[] = array( 'time' => 445856427, 'event' => 'webhook-ham-noaction' ); + */ + + usort( $history, array( 'Akismet', '_cmp_time' ) ); + return $history; + } + + /** + * Log an event for a given comment, storing it in comment_meta. + * + * @param int $comment_id The ID of the relevant comment. + * @param string $message The string description of the event. No longer used. + * @param string $event The event code. + * @param array $meta Metadata about the history entry. e.g., the user that reported or changed the status of a given comment. + */ + public static function update_comment_history( $comment_id, $message, $event=null, $meta=null ) { + global $current_user; + + $user = ''; + + $event = array( + 'time' => self::_get_microtime(), + 'event' => $event, + ); + + if ( is_object( $current_user ) && isset( $current_user->user_login ) ) { + $event['user'] = $current_user->user_login; + } + + if ( ! empty( $meta ) ) { + $event['meta'] = $meta; + } + + // $unique = false so as to allow multiple values per comment + $r = add_comment_meta( $comment_id, 'akismet_history', $event, false ); + } + + public static function check_db_comment( $id, $recheck_reason = 'recheck_queue' ) { + global $wpdb; + + if ( ! self::get_api_key() ) { + return new WP_Error( 'akismet-not-configured', __( 'Akismet is not configured. Please enter an API key.', 'akismet' ) ); + } + + $c = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_ID = %d", $id ), ARRAY_A ); + + if ( ! $c ) { + return new WP_Error( 'invalid-comment-id', __( 'Comment not found.', 'akismet' ) ); + } + + $c['user_ip'] = $c['comment_author_IP']; + $c['user_agent'] = $c['comment_agent']; + $c['referrer'] = ''; + $c['blog'] = get_option( 'home' ); + $c['blog_lang'] = get_locale(); + $c['blog_charset'] = get_option('blog_charset'); + $c['permalink'] = get_permalink($c['comment_post_ID']); + $c['recheck_reason'] = $recheck_reason; + + $c['user_role'] = ''; + if ( ! empty( $c['user_ID'] ) ) { + $c['user_role'] = Akismet::get_user_roles( $c['user_ID'] ); + } + + if ( self::is_test_mode() ) + $c['is_test'] = 'true'; + + $c = apply_filters( 'akismet_request_args', $c, 'comment-check' ); + + $response = self::http_post( self::build_query( $c ), 'comment-check' ); + + if ( ! empty( $response[1] ) ) { + return $response[1]; + } + + return false; + } + + public static function recheck_comment( $id, $recheck_reason = 'recheck_queue' ) { + add_comment_meta( $id, 'akismet_rechecking', true ); + + $api_response = self::check_db_comment( $id, $recheck_reason ); + + if ( is_wp_error( $api_response ) ) { + // Invalid comment ID. + } + else if ( 'true' === $api_response ) { + wp_set_comment_status( $id, 'spam' ); + update_comment_meta( $id, 'akismet_result', 'true' ); + delete_comment_meta( $id, 'akismet_error' ); + delete_comment_meta( $id, 'akismet_delayed_moderation_email' ); + Akismet::update_comment_history( $id, '', 'recheck-spam' ); + } + elseif ( 'false' === $api_response ) { + update_comment_meta( $id, 'akismet_result', 'false' ); + delete_comment_meta( $id, 'akismet_error' ); + delete_comment_meta( $id, 'akismet_delayed_moderation_email' ); + Akismet::update_comment_history( $id, '', 'recheck-ham' ); + } + else { + // abnormal result: error + update_comment_meta( $id, 'akismet_result', 'error' ); + Akismet::update_comment_history( + $id, + '', + 'recheck-error', + array( 'response' => substr( $api_response, 0, 50 ) ) + ); + } + + delete_comment_meta( $id, 'akismet_rechecking' ); + + return $api_response; + } + + public static function transition_comment_status( $new_status, $old_status, $comment ) { + + if ( $new_status == $old_status ) + return; + + if ( 'spam' === $new_status || 'spam' === $old_status ) { + // Clear the cache of the "X comments in your spam queue" count on the dashboard. + wp_cache_delete( 'akismet_spam_count', 'widget' ); + } + + # we don't need to record a history item for deleted comments + if ( $new_status == 'delete' ) + return; + + if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) && !current_user_can( 'moderate_comments' ) ) + return; + + if ( defined('WP_IMPORTING') && WP_IMPORTING == true ) + return; + + // if this is present, it means the status has been changed by a re-check, not an explicit user action + if ( get_comment_meta( $comment->comment_ID, 'akismet_rechecking' ) ) + return; + + if ( function_exists( 'getallheaders' ) ) { + $request_headers = getallheaders(); + + foreach ( $request_headers as $header => $value ) { + if ( strtolower( $header ) == 'x-akismet-webhook' ) { + // This change is due to a webhook request. + return; + } + } + } + + // Assumption alert: + // We want to submit comments to Akismet only when a moderator explicitly spams or approves it - not if the status + // is changed automatically by another plugin. Unfortunately WordPress doesn't provide an unambiguous way to + // determine why the transition_comment_status action was triggered. And there are several different ways by which + // to spam and unspam comments: bulk actions, ajax, links in moderation emails, the dashboard, and perhaps others. + // We'll assume that this is an explicit user action if certain POST/GET variables exist. + if ( + // status=spam: Marking as spam via the REST API or... + // status=unspam: I'm not sure. Maybe this used to be used instead of status=approved? Or the UI for removing from spam but not approving has been since removed?... + // status=approved: Unspamming via the REST API (Calypso) or... + ( isset( $_POST['status'] ) && in_array( $_POST['status'], array( 'spam', 'unspam', 'approved', ) ) ) + // spam=1: Clicking "Spam" underneath a comment in wp-admin and allowing the AJAX request to happen. + || ( isset( $_POST['spam'] ) && (int) $_POST['spam'] == 1 ) + // unspam=1: Clicking "Not Spam" underneath a comment in wp-admin and allowing the AJAX request to happen. Or, clicking "Undo" after marking something as spam. + || ( isset( $_POST['unspam'] ) && (int) $_POST['unspam'] == 1 ) + // comment_status=spam/unspam: It's unclear where this is happening. + || ( isset( $_POST['comment_status'] ) && in_array( $_POST['comment_status'], array( 'spam', 'unspam' ) ) ) + // action=spam: Choosing "Mark as Spam" from the Bulk Actions dropdown in wp-admin (or the "Spam it" link in notification emails). + // action=unspam: Choosing "Not Spam" from the Bulk Actions dropdown in wp-admin. + // action=spamcomment: Following the "Spam" link below a comment in wp-admin (not allowing AJAX request to happen). + // action=unspamcomment: Following the "Not Spam" link below a comment in wp-admin (not allowing AJAX request to happen). + || ( isset( $_GET['action'] ) && in_array( $_GET['action'], array( 'spam', 'unspam', 'spamcomment', 'unspamcomment', ) ) ) + // action=editedcomment: Editing a comment via wp-admin (and possibly changing its status). + || ( isset( $_POST['action'] ) && in_array( $_POST['action'], array( 'editedcomment' ) ) ) + // for=jetpack: Moderation via the WordPress app, Calypso, anything powered by the Jetpack connection. + || ( isset( $_GET['for'] ) && ( 'jetpack' == $_GET['for'] ) && ( ! defined( 'IS_WPCOM' ) || ! IS_WPCOM ) ) + // Certain WordPress.com API requests + || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST ) + // WordPress.org REST API requests + || ( defined( 'REST_REQUEST' ) && REST_REQUEST ) + ) { + if ( $new_status == 'spam' && ( $old_status == 'approved' || $old_status == 'unapproved' || !$old_status ) ) { + return self::submit_spam_comment( $comment->comment_ID ); + } elseif ( $old_status == 'spam' && ( $new_status == 'approved' || $new_status == 'unapproved' ) ) { + return self::submit_nonspam_comment( $comment->comment_ID ); + } + } + + self::update_comment_history( $comment->comment_ID, '', 'status-' . $new_status ); + } + + public static function submit_spam_comment( $comment_id ) { + global $wpdb, $current_user, $current_site; + + $comment_id = (int) $comment_id; + + $comment = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_ID = %d", $comment_id ) ); + + if ( !$comment ) // it was deleted + return; + + if ( 'spam' != $comment->comment_approved ) + return; + + self::update_comment_history( $comment_id, '', 'report-spam' ); + + // If the user hasn't configured Akismet, there's nothing else to do at this point. + if ( ! self::get_api_key() ) { + return; + } + + // use the original version stored in comment_meta if available + $as_submitted = self::sanitize_comment_as_submitted( get_comment_meta( $comment_id, 'akismet_as_submitted', true ) ); + + if ( $as_submitted && is_array( $as_submitted ) && isset( $as_submitted['comment_content'] ) ) + $comment = (object) array_merge( (array)$comment, $as_submitted ); + + $comment->blog = get_option( 'home' ); + $comment->blog_lang = get_locale(); + $comment->blog_charset = get_option('blog_charset'); + $comment->permalink = get_permalink($comment->comment_post_ID); + + if ( is_object($current_user) ) + $comment->reporter = $current_user->user_login; + + if ( is_object($current_site) ) + $comment->site_domain = $current_site->domain; + + $comment->user_role = ''; + if ( ! empty( $comment->user_ID ) ) { + $comment->user_role = Akismet::get_user_roles( $comment->user_ID ); + } + + if ( self::is_test_mode() ) + $comment->is_test = 'true'; + + $post = get_post( $comment->comment_post_ID ); + + if ( ! is_null( $post ) ) { + $comment->comment_post_modified_gmt = $post->post_modified_gmt; + } + + $comment = apply_filters( 'akismet_request_args', $comment, 'submit-spam' ); + + $response = self::http_post( self::build_query( $comment ), 'submit-spam' ); + + update_comment_meta( $comment_id, 'akismet_user_result', 'true' ); + + if ( $comment->reporter ) { + update_comment_meta( $comment_id, 'akismet_user', $comment->reporter ); + } + + do_action('akismet_submit_spam_comment', $comment_id, $response[1]); + } + + public static function submit_nonspam_comment( $comment_id ) { + global $wpdb, $current_user, $current_site; + + $comment_id = (int) $comment_id; + + $comment = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_ID = %d", $comment_id ) ); + if ( !$comment ) // it was deleted + return; + + self::update_comment_history( $comment_id, '', 'report-ham' ); + + // If the user hasn't configured Akismet, there's nothing else to do at this point. + if ( ! self::get_api_key() ) { + return; + } + + // use the original version stored in comment_meta if available + $as_submitted = self::sanitize_comment_as_submitted( get_comment_meta( $comment_id, 'akismet_as_submitted', true ) ); + + if ( $as_submitted && is_array($as_submitted) && isset($as_submitted['comment_content']) ) + $comment = (object) array_merge( (array)$comment, $as_submitted ); + + $comment->blog = get_option( 'home' ); + $comment->blog_lang = get_locale(); + $comment->blog_charset = get_option('blog_charset'); + $comment->permalink = get_permalink( $comment->comment_post_ID ); + $comment->user_role = ''; + + if ( is_object($current_user) ) + $comment->reporter = $current_user->user_login; + + if ( is_object($current_site) ) + $comment->site_domain = $current_site->domain; + + if ( ! empty( $comment->user_ID ) ) { + $comment->user_role = Akismet::get_user_roles( $comment->user_ID ); + } + + if ( Akismet::is_test_mode() ) + $comment->is_test = 'true'; + + $post = get_post( $comment->comment_post_ID ); + + if ( ! is_null( $post ) ) { + $comment->comment_post_modified_gmt = $post->post_modified_gmt; + } + + $comment = apply_filters( 'akismet_request_args', $comment, 'submit-ham' ); + + $response = self::http_post( self::build_query( $comment ), 'submit-ham' ); + + update_comment_meta( $comment_id, 'akismet_user_result', 'false' ); + + if ( $comment->reporter ) { + update_comment_meta( $comment_id, 'akismet_user', $comment->reporter ); + } + + do_action('akismet_submit_nonspam_comment', $comment_id, $response[1]); + } + + public static function cron_recheck() { + global $wpdb; + + $api_key = self::get_api_key(); + + $status = self::verify_key( $api_key ); + if ( get_option( 'akismet_alert_code' ) || $status == 'invalid' ) { + // since there is currently a problem with the key, reschedule a check for 6 hours hence + wp_schedule_single_event( time() + 21600, 'akismet_schedule_cron_recheck' ); + do_action( 'akismet_scheduled_recheck', 'key-problem-' . get_option( 'akismet_alert_code' ) . '-' . $status ); + return false; + } + + delete_option('akismet_available_servers'); + + $comment_errors = $wpdb->get_col( "SELECT comment_id FROM {$wpdb->commentmeta} WHERE meta_key = 'akismet_error' LIMIT 100" ); + + load_plugin_textdomain( 'akismet' ); + + foreach ( (array) $comment_errors as $comment_id ) { + // if the comment no longer exists, or is too old, remove the meta entry from the queue to avoid getting stuck + $comment = get_comment( $comment_id ); + + if ( + ! $comment // Comment has been deleted + || strtotime( $comment->comment_date_gmt ) < strtotime( "-15 days" ) // Comment is too old. + || $comment->comment_approved !== "0" // Comment is no longer in the Pending queue + ) { + delete_comment_meta( $comment_id, 'akismet_error' ); + delete_comment_meta( $comment_id, 'akismet_delayed_moderation_email' ); + continue; + } + + add_comment_meta( $comment_id, 'akismet_rechecking', true ); + $status = self::check_db_comment( $comment_id, 'retry' ); + + $event = ''; + if ( $status == 'true' ) { + $event = 'cron-retry-spam'; + } elseif ( $status == 'false' ) { + $event = 'cron-retry-ham'; + } + + // If we got back a legit response then update the comment history + // other wise just bail now and try again later. No point in + // re-trying all the comments once we hit one failure. + if ( !empty( $event ) ) { + delete_comment_meta( $comment_id, 'akismet_error' ); + self::update_comment_history( $comment_id, '', $event ); + update_comment_meta( $comment_id, 'akismet_result', $status ); + // make sure the comment status is still pending. if it isn't, that means the user has already moved it elsewhere. + $comment = get_comment( $comment_id ); + if ( $comment && 'unapproved' == wp_get_comment_status( $comment_id ) ) { + if ( $status == 'true' ) { + wp_spam_comment( $comment_id ); + } elseif ( $status == 'false' ) { + // comment is good, but it's still in the pending queue. depending on the moderation settings + // we may need to change it to approved. + if ( check_comment($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent, $comment->comment_type) ) + wp_set_comment_status( $comment_id, 1 ); + else if ( get_comment_meta( $comment_id, 'akismet_delayed_moderation_email', true ) ) + wp_notify_moderator( $comment_id ); + } + } + + delete_comment_meta( $comment_id, 'akismet_delayed_moderation_email' ); + } else { + // If this comment has been pending moderation for longer than MAX_DELAY_BEFORE_MODERATION_EMAIL, + // send a moderation email now. + if ( ( intval( gmdate( 'U' ) ) - strtotime( $comment->comment_date_gmt ) ) < self::MAX_DELAY_BEFORE_MODERATION_EMAIL ) { + delete_comment_meta( $comment_id, 'akismet_delayed_moderation_email' ); + wp_notify_moderator( $comment_id ); + } + + delete_comment_meta( $comment_id, 'akismet_rechecking' ); + wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' ); + do_action( 'akismet_scheduled_recheck', 'check-db-comment-' . $status ); + return; + } + delete_comment_meta( $comment_id, 'akismet_rechecking' ); + } + + $remaining = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->commentmeta} WHERE meta_key = 'akismet_error'" ); + if ( $remaining && !wp_next_scheduled('akismet_schedule_cron_recheck') ) { + wp_schedule_single_event( time() + 1200, 'akismet_schedule_cron_recheck' ); + do_action( 'akismet_scheduled_recheck', 'remaining' ); + } + } + + public static function fix_scheduled_recheck() { + $future_check = wp_next_scheduled( 'akismet_schedule_cron_recheck' ); + if ( !$future_check ) { + return; + } + + if ( get_option( 'akismet_alert_code' ) > 0 ) { + return; + } + + $check_range = time() + 1200; + if ( $future_check > $check_range ) { + wp_clear_scheduled_hook( 'akismet_schedule_cron_recheck' ); + wp_schedule_single_event( time() + 300, 'akismet_schedule_cron_recheck' ); + do_action( 'akismet_scheduled_recheck', 'fix-scheduled-recheck' ); + } + } + + public static function add_comment_nonce( $post_id ) { + /** + * To disable the Akismet comment nonce, add a filter for the 'akismet_comment_nonce' tag + * and return any string value that is not 'true' or '' (empty string). + * + * Don't return boolean false, because that implies that the 'akismet_comment_nonce' option + * has not been set and that Akismet should just choose the default behavior for that + * situation. + */ + + if ( ! self::get_api_key() ) { + return; + } + + $akismet_comment_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) ); + + if ( $akismet_comment_nonce_option == 'true' || $akismet_comment_nonce_option == '' ) { + echo '

    '; + wp_nonce_field( 'akismet_comment_nonce_' . $post_id, 'akismet_comment_nonce', FALSE ); + echo '

    '; + } + } + + public static function is_test_mode() { + return defined('AKISMET_TEST_MODE') && AKISMET_TEST_MODE; + } + + public static function allow_discard() { + if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) + return false; + if ( is_user_logged_in() ) + return false; + + return ( get_option( 'akismet_strictness' ) === '1' ); + } + + public static function get_ip_address() { + return isset( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : null; + } + + /** + * Do these two comments, without checking the comment_ID, "match"? + * + * @param mixed $comment1 A comment object or array. + * @param mixed $comment2 A comment object or array. + * @return bool Whether the two comments should be treated as the same comment. + */ + private static function comments_match( $comment1, $comment2 ) { + $comment1 = (array) $comment1; + $comment2 = (array) $comment2; + + // Set default values for these strings that we check in order to simplify + // the checks and avoid PHP warnings. + if ( ! isset( $comment1['comment_author'] ) ) { + $comment1['comment_author'] = ''; + } + + if ( ! isset( $comment2['comment_author'] ) ) { + $comment2['comment_author'] = ''; + } + + if ( ! isset( $comment1['comment_author_email'] ) ) { + $comment1['comment_author_email'] = ''; + } + + if ( ! isset( $comment2['comment_author_email'] ) ) { + $comment2['comment_author_email'] = ''; + } + + $comments_match = ( + isset( $comment1['comment_post_ID'], $comment2['comment_post_ID'] ) + && intval( $comment1['comment_post_ID'] ) == intval( $comment2['comment_post_ID'] ) + && ( + // The comment author length max is 255 characters, limited by the TINYTEXT column type. + // If the comment author includes multibyte characters right around the 255-byte mark, they + // may be stripped when the author is saved in the DB, so a 300+ char author may turn into + // a 253-char author when it's saved, not 255 exactly. The longest possible character is + // theoretically 6 bytes, so we'll only look at the first 248 bytes to be safe. + substr( $comment1['comment_author'], 0, 248 ) == substr( $comment2['comment_author'], 0, 248 ) + || substr( stripslashes( $comment1['comment_author'] ), 0, 248 ) == substr( $comment2['comment_author'], 0, 248 ) + || substr( $comment1['comment_author'], 0, 248 ) == substr( stripslashes( $comment2['comment_author'] ), 0, 248 ) + // Certain long comment author names will be truncated to nothing, depending on their encoding. + || ( ! $comment1['comment_author'] && strlen( $comment2['comment_author'] ) > 248 ) + || ( ! $comment2['comment_author'] && strlen( $comment1['comment_author'] ) > 248 ) + ) + && ( + // The email max length is 100 characters, limited by the VARCHAR(100) column type. + // Same argument as above for only looking at the first 93 characters. + substr( $comment1['comment_author_email'], 0, 93 ) == substr( $comment2['comment_author_email'], 0, 93 ) + || substr( stripslashes( $comment1['comment_author_email'] ), 0, 93 ) == substr( $comment2['comment_author_email'], 0, 93 ) + || substr( $comment1['comment_author_email'], 0, 93 ) == substr( stripslashes( $comment2['comment_author_email'] ), 0, 93 ) + // Very long emails can be truncated and then stripped if the [0:100] substring isn't a valid address. + || ( ! $comment1['comment_author_email'] && strlen( $comment2['comment_author_email'] ) > 100 ) + || ( ! $comment2['comment_author_email'] && strlen( $comment1['comment_author_email'] ) > 100 ) + ) + ); + + return $comments_match; + } + + // Does the supplied comment match the details of the one most recently stored in self::$last_comment? + public static function matches_last_comment( $comment ) { + return self::comments_match( self::$last_comment, $comment ); + } + + private static function get_user_agent() { + return isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : null; + } + + private static function get_referer() { + return isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : null; + } + + // return a comma-separated list of role names for the given user + public static function get_user_roles( $user_id ) { + $comment_user = null; + $roles = false; + + if ( !class_exists('WP_User') ) + return false; + + if ( $user_id > 0 ) { + $comment_user = new WP_User( $user_id ); + if ( isset( $comment_user->roles ) ) + $roles = implode( ',', $comment_user->roles ); + } + + if ( is_multisite() && is_super_admin( $user_id ) ) { + if ( empty( $roles ) ) { + $roles = 'super_admin'; + } else { + $comment_user->roles[] = 'super_admin'; + $roles = implode( ',', $comment_user->roles ); + } + } + + return $roles; + } + + // filter handler used to return a spam result to pre_comment_approved + public static function last_comment_status( $approved, $comment ) { + if ( is_null( self::$last_comment_result ) ) { + // We didn't have reason to store the result of the last check. + return $approved; + } + + // Only do this if it's the correct comment + if ( ! self::matches_last_comment( $comment ) ) { + self::log( "comment_is_spam mismatched comment, returning unaltered $approved" ); + return $approved; + } + + if ( 'trash' === $approved ) { + // If the last comment we checked has had its approval set to 'trash', + // then it failed the comment blacklist check. Let that blacklist override + // the spam check, since users have the (valid) expectation that when + // they fill out their blacklists, comments that match it will always + // end up in the trash. + return $approved; + } + + // bump the counter here instead of when the filter is added to reduce the possibility of overcounting + if ( $incr = apply_filters('akismet_spam_count_incr', 1) ) + update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr ); + + return self::$last_comment_result; + } + + /** + * If Akismet is temporarily unreachable, we don't want to "spam" the blogger with + * moderation emails for comments that will be automatically cleared or spammed on + * the next retry. + * + * For comments that will be rechecked later, empty the list of email addresses that + * the moderation email would be sent to. + * + * @param array $emails An array of email addresses that the moderation email will be sent to. + * @param int $comment_id The ID of the relevant comment. + * @return array An array of email addresses that the moderation email will be sent to. + */ + public static function disable_moderation_emails_if_unreachable( $emails, $comment_id ) { + if ( ! empty( self::$prevent_moderation_email_for_these_comments ) && ! empty( $emails ) ) { + $comment = get_comment( $comment_id ); + + if ( $comment ) { + foreach ( self::$prevent_moderation_email_for_these_comments as $possible_match ) { + if ( self::comments_match( $possible_match, $comment ) ) { + update_comment_meta( $comment_id, 'akismet_delayed_moderation_email', true ); + return array(); + } + } + } + } + + return $emails; + } + + public static function _cmp_time( $a, $b ) { + return $a['time'] > $b['time'] ? -1 : 1; + } + + public static function _get_microtime() { + $mtime = explode( ' ', microtime() ); + return $mtime[1] + $mtime[0]; + } + + /** + * Make a POST request to the Akismet API. + * + * @param string $request The body of the request. + * @param string $path The path for the request. + * @param string $ip The specific IP address to hit. + * @return array A two-member array consisting of the headers and the response body, both empty in the case of a failure. + */ + public static function http_post( $request, $path, $ip=null ) { + + $akismet_ua = sprintf( 'WordPress/%s | Akismet/%s', $GLOBALS['wp_version'], constant( 'AKISMET_VERSION' ) ); + $akismet_ua = apply_filters( 'akismet_ua', $akismet_ua ); + + $host = self::API_HOST; + $api_key = self::get_api_key(); + + if ( $api_key ) { + $request = add_query_arg( 'api_key', $api_key, $request ); + } + + $http_host = $host; + // use a specific IP if provided + // needed by Akismet_Admin::check_server_connectivity() + if ( $ip && long2ip( ip2long( $ip ) ) ) { + $http_host = $ip; + } + + $http_args = array( + 'body' => $request, + 'headers' => array( + 'Content-Type' => 'application/x-www-form-urlencoded; charset=' . get_option( 'blog_charset' ), + 'Host' => $host, + 'User-Agent' => $akismet_ua, + ), + 'httpversion' => '1.0', + 'timeout' => 15 + ); + + $akismet_url = $http_akismet_url = "http://{$http_host}/1.1/{$path}"; + + /** + * Try SSL first; if that fails, try without it and don't try it again for a while. + */ + + $ssl = $ssl_failed = false; + + // Check if SSL requests were disabled fewer than X hours ago. + $ssl_disabled = get_option( 'akismet_ssl_disabled' ); + + if ( $ssl_disabled && $ssl_disabled < ( time() - 60 * 60 * 24 ) ) { // 24 hours + $ssl_disabled = false; + delete_option( 'akismet_ssl_disabled' ); + } + else if ( $ssl_disabled ) { + do_action( 'akismet_ssl_disabled' ); + } + + if ( ! $ssl_disabled && ( $ssl = wp_http_supports( array( 'ssl' ) ) ) ) { + $akismet_url = set_url_scheme( $akismet_url, 'https' ); + + do_action( 'akismet_https_request_pre' ); + } + + $response = wp_remote_post( $akismet_url, $http_args ); + + Akismet::log( compact( 'akismet_url', 'http_args', 'response' ) ); + + if ( $ssl && is_wp_error( $response ) ) { + do_action( 'akismet_https_request_failure', $response ); + + // Intermittent connection problems may cause the first HTTPS + // request to fail and subsequent HTTP requests to succeed randomly. + // Retry the HTTPS request once before disabling SSL for a time. + $response = wp_remote_post( $akismet_url, $http_args ); + + Akismet::log( compact( 'akismet_url', 'http_args', 'response' ) ); + + if ( is_wp_error( $response ) ) { + $ssl_failed = true; + + do_action( 'akismet_https_request_failure', $response ); + + do_action( 'akismet_http_request_pre' ); + + // Try the request again without SSL. + $response = wp_remote_post( $http_akismet_url, $http_args ); + + Akismet::log( compact( 'http_akismet_url', 'http_args', 'response' ) ); + } + } + + if ( is_wp_error( $response ) ) { + do_action( 'akismet_request_failure', $response ); + + return array( '', '' ); + } + + if ( $ssl_failed ) { + // The request failed when using SSL but succeeded without it. Disable SSL for future requests. + update_option( 'akismet_ssl_disabled', time() ); + + do_action( 'akismet_https_disabled' ); + } + + $simplified_response = array( $response['headers'], $response['body'] ); + + self::update_alert( $simplified_response ); + + return $simplified_response; + } + + // given a response from an API call like check_key_status(), update the alert code options if an alert is present. + public static function update_alert( $response ) { + $alert_option_prefix = 'akismet_alert_'; + $alert_header_prefix = 'x-akismet-alert-'; + $alert_header_names = array( + 'code', + 'msg', + 'api-calls', + 'usage-limit', + 'upgrade-plan', + 'upgrade-url', + 'upgrade-type', + ); + + foreach ( $alert_header_names as $alert_header_name ) { + $value = null; + if ( isset( $response[0][ $alert_header_prefix . $alert_header_name ] ) ) { + $value = $response[0][ $alert_header_prefix . $alert_header_name ]; + } + + $option_name = $alert_option_prefix . str_replace( '-', '_', $alert_header_name ); + if ( $value != get_option( $option_name ) ) { + if ( ! $value ) { + delete_option( $option_name ); + } else { + update_option( $option_name, $value ); + } + } + } + } + + /** + * Mark akismet-frontend.js as deferred. Because nothing depends on it, it can run at any time + * after it's loaded, and the browser won't have to wait for it to load to continue + * parsing the rest of the page. + */ + public static function set_form_js_async( $tag, $handle, $src ) { + if ( 'akismet-frontend' !== $handle ) { + return $tag; + } + + return preg_replace( '/^'; + } + + $fields .= '

    '; + + return $fields; + } + + public static function output_custom_form_fields( $post_id ) { + if ( 'fluentform/form_element_start' === current_filter() && did_action( 'fluentform_form_element_start' ) ) { + // Already did this via the legacy filter. + return; + } + + // phpcs:ignore WordPress.Security.EscapeOutput + echo self::get_akismet_form_fields(); + } + + public static function inject_custom_form_fields( $html ) { + $html = str_replace( '', self::get_akismet_form_fields() . '', $html ); + + return $html; + } + + public static function append_custom_form_fields( $html ) { + $html .= self::get_akismet_form_fields(); + + return $html; + } + + /** + * Ensure that any Akismet-added form fields are included in the comment-check call. + * + * @param array $form + * @param array $data Some plugins will supply the POST data via the filter, since they don't + * read it directly from $_POST. + * @return array $form + */ + public static function prepare_custom_form_values( $form, $data = null ) { + if ( 'fluentform/akismet_fields' === current_filter() && did_filter( 'fluentform_akismet_fields' ) ) { + // Already updated the form fields via the legacy filter. + return $form; + } + + if ( is_null( $data ) ) { + // phpcs:ignore WordPress.Security.NonceVerification.Missing + $data = $_POST; + } + + $prefix = 'ak_'; + + // Contact Form 7 uses _wpcf7 as a prefix to know which fields to exclude from comment_content. + if ( 'wpcf7_akismet_parameters' === current_filter() ) { + $prefix = '_wpcf7_ak_'; + } + + foreach ( $data as $key => $val ) { + if ( 0 === strpos( $key, $prefix ) ) { + $form[ 'POST_ak_' . substr( $key, strlen( $prefix ) ) ] = $val; + } + } + + return $form; + } + + private static function bail_on_activation( $message, $deactivate = true ) { +?> + + + + + + + +

    + + + $plugin ) { + if ( $plugin === $akismet ) { + $plugins[$i] = false; + $update = true; + } + } + + if ( $update ) { + update_option( 'active_plugins', array_filter( $plugins ) ); + } + } + exit; + } + + public static function view( $name, array $args = array() ) { + $args = apply_filters( 'akismet_view_arguments', $args, $name ); + + foreach ( $args as $key => $val ) { + $$key = $val; + } + + load_plugin_textdomain( 'akismet' ); + + $file = AKISMET__PLUGIN_DIR . 'views/'. $name . '.php'; + + include( $file ); + } + + /** + * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() + * @static + */ + public static function plugin_activation() { + if ( version_compare( $GLOBALS['wp_version'], AKISMET__MINIMUM_WP_VERSION, '<' ) ) { + load_plugin_textdomain( 'akismet' ); + + $message = ''.sprintf(esc_html__( 'Akismet %s requires WordPress %s or higher.' , 'akismet'), AKISMET_VERSION, AKISMET__MINIMUM_WP_VERSION ).' '.sprintf(__('Please upgrade WordPress to a current version, or downgrade to version 2.4 of the Akismet plugin.', 'akismet'), 'https://codex.wordpress.org/Upgrading_WordPress', 'https://wordpress.org/extend/plugins/akismet/download/'); + + Akismet::bail_on_activation( $message ); + } elseif ( ! empty( $_SERVER['SCRIPT_NAME'] ) && false !== strpos( $_SERVER['SCRIPT_NAME'], '/wp-admin/plugins.php' ) ) { + add_option( 'Activated_Akismet', true ); + } + } + + /** + * Removes all connection options + * @static + */ + public static function plugin_deactivation( ) { + self::deactivate_key( self::get_api_key() ); + + // Remove any scheduled cron jobs. + $akismet_cron_events = array( + 'akismet_schedule_cron_recheck', + 'akismet_scheduled_delete', + ); + + foreach ( $akismet_cron_events as $akismet_cron_event ) { + $timestamp = wp_next_scheduled( $akismet_cron_event ); + + if ( $timestamp ) { + wp_unschedule_event( $timestamp, $akismet_cron_event ); + } + } + } + + /** + * Essentially a copy of WP's build_query but one that doesn't expect pre-urlencoded values. + * + * @param array $args An array of key => value pairs + * @return string A string ready for use as a URL query string. + */ + public static function build_query( $args ) { + return _http_build_query( $args, '', '&' ); + } + + /** + * Log debugging info to the error log. + * + * Enabled when WP_DEBUG_LOG is enabled (and WP_DEBUG, since according to + * core, "WP_DEBUG_DISPLAY and WP_DEBUG_LOG perform no function unless + * WP_DEBUG is true), but can be disabled via the akismet_debug_log filter. + * + * @param mixed $akismet_debug The data to log. + */ + public static function log( $akismet_debug ) { + if ( apply_filters( 'akismet_debug_log', defined( 'WP_DEBUG' ) && WP_DEBUG && defined( 'WP_DEBUG_LOG' ) && WP_DEBUG_LOG && defined( 'AKISMET_DEBUG' ) && AKISMET_DEBUG ) ) { + error_log( print_r( compact( 'akismet_debug' ), true ) ); + } + } + + public static function pre_check_pingback( $method ) { + $pingback_args = array(); + if ( $method !== 'pingback.ping' ) + return; + + // A lot of this code is tightly coupled with the IXR class because the xmlrpc_call action doesn't pass along any information besides the method name. + // This ticket should hopefully fix that: https://core.trac.wordpress.org/ticket/52524 + // Until that happens, when it's a system.multicall, pre_check_pingback will be called once for every internal pingback call. + // Keep track of how many times this function has been called so we know which call to reference in the XML. + static $call_count = 0; + + $call_count++; + + global $wp_xmlrpc_server; + + if ( !is_object( $wp_xmlrpc_server ) ) + return false; + + $is_multicall = false; + $multicall_count = 0; + + if ( 'system.multicall' === $wp_xmlrpc_server->message->methodName ) { + $is_multicall = true; + + if ( 0 === $call_count ) { + // Only pass along the number of entries in the multicall the first time we see it. + $multicall_count = is_countable( $wp_xmlrpc_server->message->params ) ? count( $wp_xmlrpc_server->message->params ) : 0; + } + + /* + * $wp_xmlrpc_server->message looks like this: + * + ( + [message] => + [messageType] => methodCall + [faultCode] => + [faultString] => + [methodName] => system.multicall + [params] => Array + ( + [0] => Array + ( + [methodName] => pingback.ping + [params] => Array + ( + [0] => http://www.example.net/?p=1 // Site that created the pingback. + [1] => https://www.example.com/?p=1 // Post being pingback'd on this site. + ) + ) + [1] => Array + ( + [methodName] => pingback.ping + [params] => Array + ( + [0] => http://www.example.net/?p=1 // Site that created the pingback. + [1] => https://www.example.com/?p=2 // Post being pingback'd on this site. + ) + ) + ) + ) + */ + + // Use the params from the nth pingback.ping call in the multicall. + $pingback_calls_found = 0; + + foreach ( $wp_xmlrpc_server->message->params as $xmlrpc_action ) { + if ( 'pingback.ping' === $xmlrpc_action['methodName'] ) { + $pingback_calls_found++; + } + + if ( $call_count === $pingback_calls_found ) { + $pingback_args = $xmlrpc_action['params']; + break; + } + } + } else { + /* + * $wp_xmlrpc_server->message looks like this: + * + ( + [message] => + [messageType] => methodCall + [faultCode] => + [faultString] => + [methodName] => pingback.ping + [params] => Array + ( + [0] => http://www.example.net/?p=1 // Site that created the pingback. + [1] => https://www.example.com/?p=2 // Post being pingback'd on this site. + ) + ) + */ + $pingback_args = $wp_xmlrpc_server->message->params; + } + + if ( ! empty( $pingback_args[1] ) ) { + $post_id = url_to_postid( $pingback_args[1] ); + + // If pingbacks aren't open on this post, we'll still check whether this request is part of a potential DDOS, + // but indicate to the server that pingbacks are indeed closed so we don't include this request in the user's stats, + // since the user has already done their part by disabling pingbacks. + $pingbacks_closed = false; + + $post = get_post( $post_id ); + + if ( ! $post || ! pings_open( $post ) ) { + $pingbacks_closed = true; + } + + // Note: If is_multicall is true and multicall_count=0, then we know this is at least the 2nd pingback we've processed in this multicall. + + $comment = array( + 'comment_author_url' => $pingback_args[0], + 'comment_post_ID' => $post_id, + 'comment_author' => '', + 'comment_author_email' => '', + 'comment_content' => '', + 'comment_type' => 'pingback', + 'akismet_pre_check' => '1', + 'comment_pingback_target' => $pingback_args[1], + 'pingbacks_closed' => $pingbacks_closed ? '1' : '0', + 'is_multicall' => $is_multicall, + 'multicall_count' => $multicall_count, + ); + + $comment = self::auto_check_comment( $comment, 'xml-rpc' ); + + if ( isset( $comment['akismet_result'] ) && 'true' == $comment['akismet_result'] ) { + // Sad: tightly coupled with the IXR classes. Unfortunately the action provides no context and no way to return anything. + $wp_xmlrpc_server->error( new IXR_Error( 0, 'Invalid discovery target' ) ); + + // Also note that if this was part of a multicall, a spam result will prevent the subsequent calls from being executed. + // This is probably fine, but it raises the bar for what should be acceptable as a false positive. + } + } + } + + /** + * Ensure that we are loading expected scalar values from akismet_as_submitted commentmeta. + * + * @param mixed $meta_value + * @return mixed + */ + private static function sanitize_comment_as_submitted( $meta_value ) { + if ( empty( $meta_value ) ) { + return $meta_value; + } + + $meta_value = (array) $meta_value; + + foreach ( $meta_value as $key => $value ) { + if ( ! is_scalar( $value ) ) { + unset( $meta_value[ $key ] ); + } else { + // These can change, so they're not explicitly listed in comment_as_submitted_allowed_keys. + if ( strpos( $key, 'POST_ak_' ) === 0 ) { + continue; + } + + if ( ! isset( self::$comment_as_submitted_allowed_keys[ $key ] ) ) { + unset( $meta_value[ $key ] ); + } + } + } + + return $meta_value; + } + + public static function predefined_api_key() { + if ( defined( 'WPCOM_API_KEY' ) ) { + return true; + } + + return apply_filters( 'akismet_predefined_api_key', false ); + } + + /** + * Controls the display of a privacy related notice underneath the comment form using the `akismet_comment_form_privacy_notice` option and filter respectively. + * Default is top not display the notice, leaving the choice to site admins, or integrators. + */ + public static function display_comment_form_privacy_notice() { + if ( 'display' !== apply_filters( 'akismet_comment_form_privacy_notice', get_option( 'akismet_comment_form_privacy_notice', 'hide' ) ) ) { + return; + } + echo apply_filters( + 'akismet_comment_form_privacy_notice_markup', + '

    ' . sprintf( + __( 'This site uses Akismet to reduce spam. Learn how your comment data is processed.', 'akismet' ), + 'https://akismet.com/privacy/' + ) . '

    ' + ); + } + + public static function load_form_js() { + if ( + ! is_admin() + && ( ! function_exists( 'amp_is_request' ) || ! amp_is_request() ) + && self::get_api_key() + ) { + wp_register_script( 'akismet-frontend', plugin_dir_url( __FILE__ ) . '_inc/akismet-frontend.js', array(), filemtime( plugin_dir_path( __FILE__ ) . '_inc/akismet-frontend.js' ), true ); + wp_enqueue_script( 'akismet-frontend' ); + } + } + + /** + * Add the form JavaScript when we detect that a supported form shortcode is being parsed. + */ + public static function load_form_js_via_filter( $return_value, $tag, $attr, $m ) { + if ( in_array( $tag, array( 'contact-form', 'gravityform', 'contact-form-7', 'formidable', 'fluentform' ) ) ) { + self::load_form_js(); + } + + return $return_value; + } + + /** + * Was the last entry in the comment history created by Akismet? + * + * @param int $comment_id The ID of the comment. + * @return bool + */ + public static function last_comment_status_change_came_from_akismet( $comment_id ) { + $history = self::get_comment_history( $comment_id ); + + if ( empty( $history ) ) { + return false; + } + + $most_recent_history_event = $history[0]; + + if ( ! isset( $most_recent_history_event['event'] ) ) { + return false; + } + + $akismet_history_events = array( + 'check-error', + 'cron-retry-ham', + 'cron-retry-spam', + 'check-ham', + 'check-spam', + 'recheck-error', + 'recheck-ham', + 'recheck-spam', + 'webhook-ham', + 'webhook-spam', + ); + + if ( in_array( $most_recent_history_event['event'], $akismet_history_events ) ) { + return true; + } + + return false; + } +} diff --git a/assets/wordpress/wp-content/plugins/akismet/index.php b/assets/wordpress/wp-content/plugins/akismet/index.php new file mode 100644 index 0000000..cf879a5 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/index.php @@ -0,0 +1,2 @@ + + + +
    +
    +
    + +
    \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/views/config.php b/assets/wordpress/wp-content/plugins/akismet/views/config.php new file mode 100644 index 0000000..b9e4457 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/config.php @@ -0,0 +1,318 @@ + array( + 'href' => true, + ), +); +?> +
    +
    +
    + +
    +
    +
    + + + + + + + + + +
    +
    +

    + +

    + +
    + + + +
    +
    + +
    + +
    + +
    +
      +
    • +

      + spam ); ?> + spam, 'akismet' ) ); ?> +
    • +
    • +

      + spam ); ?> + spam, 'akismet' ) ); ?> +
    • +
    • +

      + accuracy ); ?>% + + missed_spam, 'akismet' ), number_format( $stat_totals['all']->missed_spam ) ) ) . ', '; + /* translators: %s: number of false positive spam flagged by Akismet */ + echo esc_html( sprintf( _n( '%s false positive', '%s false positives', $stat_totals['all']->false_positives, 'akismet' ), number_format( $stat_totals['all']->false_positives ) ) ); + ?> + +
    • +
    +
    + +
    + + +
    +
    +

    + +

    +
    + +
    +
    + +
    + +
    +

    + +

    +
    + +
    +
    + + + +
    +
    +

    +
    + + + + + + + + + + + + + + +
    +
    +
    + + +
    +
    +

    +
    +
    + +
    +
    + +
    +
    +

    +
    +
    +
    + + + +
    + +
    +
    + +
    +
    + +
    + + %s', + esc_url( admin_url( 'edit-comments.php?comment_status=spam' ) ), + esc_html__( 'spam folder', 'akismet' ) + ); + + // The _n() needs to be on one line so the i18n tooling can extract the translator comment. + /* translators: %1$s: spam folder link, %2$d: delete interval in days */ + $delete_message = _n( 'Spam in the %1$s older than %2$d day is deleted automatically.', 'Spam in the %1$s older than %2$d days is deleted automatically.', $delete_interval, 'akismet' ); + + printf( + wp_kses( $delete_message, $kses_allow_link_href ), + wp_kses( $spam_folder_link, $kses_allow_link_href ), + esc_html( $delete_interval ) + ); + ?> +
    +
    +
    + +
    +
    +

    +
    +
    +
    + + + +
    + +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + +
    + +
    + +
    + + + + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    + +

    +
    + +
    + + + + + + + + + + + next_billing_date ) : ?> + + + + + + + +
    + status === 'active' ) : ?> +
    + +
    + +
    + ( $akismet_user->account_type === 'free-api-key' && $akismet_user->status === 'active' ? __( 'Upgrade', 'akismet' ) : __( 'Change', 'akismet' ) ), + 'redirect' => 'upgrade', + ) + ); + ?> +
    +
    +
    +
    + + +
    +
    diff --git a/assets/wordpress/wp-content/plugins/akismet/views/connect-jp.php b/assets/wordpress/wp-content/plugins/akismet/views/connect-jp.php new file mode 100644 index 0000000..b7b2957 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/connect-jp.php @@ -0,0 +1,98 @@ + +
    + +
    +

    + status, array( 'no-sub', 'missing' ) ) ) { ?> +

    +
    + + + + + +
    + user_email, null, null, null, array( 'class' => 'akismet-jetpack-gravatar' ) ); ?> +

    + ' . esc_html( $akismet_user->user_login ) . '' ); + + ?> +
    + user_email ); ?> +

    + status == 'cancelled' ) { ?> +

    +
    + + + + + +
    + user_email, null, null, null, array( 'class' => 'akismet-jetpack-gravatar' ) ); ?> +

    + user_email ) ); + + ?> +
    + user_email ); ?> +

    + status == 'suspended' ) { ?> +
    +

    +
    +

    + + user_email ) ); + + ?> + + +

    + +

    +
    + + + + +
    + user_email, null, null, null, array( 'class' => 'akismet-jetpack-gravatar' ) ); ?> +

    + ' . esc_html( $akismet_user->user_login ) . '' ); + + ?> +
    + user_email ); ?> +

    + +
    +
    + +
    +
    + + +
    +
    +
    +
    + +
    diff --git a/assets/wordpress/wp-content/plugins/akismet/views/enter.php b/assets/wordpress/wp-content/plugins/akismet/views/enter.php new file mode 100644 index 0000000..70b6f3a --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/enter.php @@ -0,0 +1,14 @@ +
    + +
    +
    + + +

    +
    + + +
    +
    +
    +
    diff --git a/assets/wordpress/wp-content/plugins/akismet/views/get.php b/assets/wordpress/wp-content/plugins/akismet/views/get.php new file mode 100644 index 0000000..49157fd --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/get.php @@ -0,0 +1,18 @@ + 0 ) { + $submit_classes_attr = implode( ' ', $classes ); +} +?> + +
    + + + + +
    diff --git a/assets/wordpress/wp-content/plugins/akismet/views/logo.php b/assets/wordpress/wp-content/plugins/akismet/views/logo.php new file mode 100644 index 0000000..661d0a1 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/logo.php @@ -0,0 +1,13 @@ + +
    + + + + + + + +
    diff --git a/assets/wordpress/wp-content/plugins/akismet/views/notice.php b/assets/wordpress/wp-content/plugins/akismet/views/notice.php new file mode 100644 index 0000000..466a322 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/notice.php @@ -0,0 +1,326 @@ + array( + 'href' => true, + 'target' => true, + ), +); +$kses_allow_strong = array( 'strong' => true ); + +/* + * Some notices (plugin, spam-check, spam-check-cron-disabled, alert and usage-limit) are shown elsewhere in wp-admin, + * so look different to the standard notices. + */ +?> + +
    +
    +
    +
    A
    +
    +
    + +
    +
    +
    + Almost done - configure Akismet and say goodbye to spam', 'akismet' ), + $kses_allow_strong + ); + ?> +
    +
    +
    +
    + + +
    +

    +

    + +

    + +
    + + +
    +

    +

    +
    + + +
    + +

    +

    +

    + https://akismet.com/errors/' . esc_attr( $code ) . '' ); + ?> +

    +
    + + +
    +

    +

    + +

    +
    + + +
    +

    +

    + gethostbynamel function. Akismet cannot work correctly until this is fixed. Please contact your web host or firewall administrator and give them this information about Akismet’s system requirements.', 'akismet' ), esc_url( 'https://akismet.com/akismet-hosting-faq/' ) ), array_merge( $kses_allow_link, $kses_allow_strong, array( 'code' => true ) ) ); + ?> +

    +
    + + +
    +

    +

    + our guide about firewalls.', 'akismet' ), esc_url( 'https://akismet.com/akismet-hosting-faq/' ) ), $kses_allow_link ); + ?> +

    +
    + + +
    +

    +

    + update your payment details.', 'akismet' ), esc_url( 'https://akismet.com/account/' ) ), $kses_allow_link ); + ?> +

    +
    + + +
    +

    +

    + Akismet account page to reactivate your subscription.', 'akismet' ), esc_url( 'https://akismet.com/account/' ) ), $kses_allow_link ); + ?> +

    +
    + + +
    +

    +

    + Akismet support for assistance.', 'akismet' ), esc_url( 'https://akismet.com/contact/' ) ), $kses_allow_link ); + ?> +

    +
    + + +
    +

    +

    + contributing a token amount.', 'akismet' ), esc_url( 'https://akismet.com/pricing' ) ), $kses_allow_link ); + ?> +

    +
    + + +
    +

    +

    + Akismet support for assistance.', 'akismet' ), esc_url( 'https://akismet.com/contact/' ) ), $kses_allow_link ); + ?> +

    +
    + + +
    +

    +

    +

    + choose a plan to get started with Akismet.', 'akismet' ), esc_url( 'https://akismet.com/pricing' ) ), $kses_allow_link ); + ?> +

    +
    + + + get_var( "SELECT comment_ID FROM {$wpdb->comments} WHERE comment_approved = '0' LIMIT 1" ); + + if ( $at_least_one_comment_in_moderation ) { + $check_pending_link = 'edit-comments.php?akismet_recheck=' . wp_create_nonce( 'akismet_recheck' ); + } + ?> +
    +

    + +

    + check pending comments?', 'akismet' ), + esc_url( $check_pending_link ) + ), + $kses_allow_link + ); + ?> +

    + +
    + + +
    +

    +
    + + +
    +

    +

    + contact Akismet support.', 'akismet' ), + 'https://akismet.com/contact/' + ), + $kses_allow_link + ); + ?> +

    +
    + + +
    +

    +

    + our guide about firewalls and check your server configuration.', 'akismet' ), + 'https://blog.akismet.com/akismet-hosting-faq/' + ), + $kses_allow_link + ); + ?> +

    +
    + + +
    + +
    +

    + +

    +

    + '; + echo esc_html( __( 'Learn more about usage limits.', 'akismet' ) ); + echo ''; + + break; + case 'SECOND_MONTH_OVER_LIMIT': + echo esc_html( __( 'Your Akismet usage has been over your plan’s limit for two consecutive months. Next month, we will restrict your account after you reach the limit. Please consider upgrading your plan.', 'akismet' ) ); + echo ' '; + echo ''; + echo esc_html( __( 'Learn more about usage limits.', 'akismet' ) ); + echo ''; + + break; + case 'THIRD_MONTH_APPROACHING_LIMIT': + echo esc_html( __( 'Your Akismet usage is nearing your plan’s limit for the third consecutive month. We will restrict your account after you reach the limit. Upgrade your plan so Akismet can continue blocking spam.', 'akismet' ) ); + echo ' '; + echo ''; + echo esc_html( __( 'Learn more about usage limits.', 'akismet' ) ); + echo ''; + + break; + case 'THIRD_MONTH_OVER_LIMIT': + case 'FOUR_PLUS_MONTHS_OVER_LIMIT': + echo esc_html( __( 'Your Akismet usage has been over your plan’s limit for three consecutive months. We have restricted your account for the rest of the month. Upgrade your plan so Akismet can continue blocking spam.', 'akismet' ) ); + echo ' '; + echo ''; + echo esc_html( __( 'Learn more about usage limits.', 'akismet' ) ); + echo ''; + + break; + + default: + } + ?> +

    +
    +
    + + + +
    +
    + diff --git a/assets/wordpress/wp-content/plugins/akismet/views/predefined.php b/assets/wordpress/wp-content/plugins/akismet/views/predefined.php new file mode 100644 index 0000000..d978aaf --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/predefined.php @@ -0,0 +1,11 @@ +
    +

    +

    + wp-config.php' ); + + ?> +

    +
    \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/views/setup.php b/assets/wordpress/wp-content/plugins/akismet/views/setup.php new file mode 100644 index 0000000..5078009 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/setup.php @@ -0,0 +1,4 @@ +
    +

    + __( 'Set up your Akismet account' , 'akismet' ), 'classes' => array( 'akismet-button', 'akismet-is-primary' ) ) ); ?> +
    diff --git a/assets/wordpress/wp-content/plugins/akismet/views/start.php b/assets/wordpress/wp-content/plugins/akismet/views/start.php new file mode 100644 index 0000000..3e17eb2 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/start.php @@ -0,0 +1,29 @@ + +
    +
    +
    + +
    +
    +
    + +
    + status, array( 'active', 'active-dunning', 'no-sub', 'missing', 'cancelled', 'suspended' ) ) ) { + Akismet::view( 'connect-jp', compact( 'akismet_user' ) ); + } else { + Akismet::view( 'activate' ); + } + + ?> +
    +
    +
    \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/views/stats.php b/assets/wordpress/wp-content/plugins/akismet/views/stats.php new file mode 100644 index 0000000..59a11df --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/stats.php @@ -0,0 +1,12 @@ +
    +
    +
    + true ) ); ?> + +
    +
    + + +
    \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/views/title.php b/assets/wordpress/wp-content/plugins/akismet/views/title.php new file mode 100644 index 0000000..b5abb41 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/views/title.php @@ -0,0 +1,3 @@ +
    +

    +
    \ No newline at end of file diff --git a/assets/wordpress/wp-content/plugins/akismet/wrapper.php b/assets/wordpress/wp-content/plugins/akismet/wrapper.php new file mode 100644 index 0000000..2dfe870 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/akismet/wrapper.php @@ -0,0 +1,214 @@ +Hello, Dolly in the upper right of your admin screen on every page. +Author: Matt Mullenweg +Version: 1.7.2 +Author URI: http://ma.tt/ +*/ + +function hello_dolly_get_lyric() { + /** These are the lyrics to Hello Dolly */ + $lyrics = "Hello, Dolly +Well, hello, Dolly +It's so nice to have you back where you belong +You're lookin' swell, Dolly +I can tell, Dolly +You're still glowin', you're still crowin' +You're still goin' strong +I feel the room swayin' +While the band's playin' +One of our old favorite songs from way back when +So, take her wrap, fellas +Dolly, never go away again +Hello, Dolly +Well, hello, Dolly +It's so nice to have you back where you belong +You're lookin' swell, Dolly +I can tell, Dolly +You're still glowin', you're still crowin' +You're still goin' strong +I feel the room swayin' +While the band's playin' +One of our old favorite songs from way back when +So, golly, gee, fellas +Have a little faith in me, fellas +Dolly, never go away +Promise, you'll never go away +Dolly'll never go away again"; + + // Here we split it into lines. + $lyrics = explode( "\n", $lyrics ); + + // And then randomly choose a line. + return wptexturize( $lyrics[ mt_rand( 0, count( $lyrics ) - 1 ) ] ); +} + +// This just echoes the chosen line, we'll position it later. +function hello_dolly() { + $chosen = hello_dolly_get_lyric(); + $lang = ''; + if ( 'en_' !== substr( get_user_locale(), 0, 3 ) ) { + $lang = ' lang="en"'; + } + + printf( + '

    %s %s

    ', + __( 'Quote from Hello Dolly song, by Jerry Herman:' ), + $lang, + $chosen + ); +} + +// Now we set that function up to execute when the admin_notices action is called. +add_action( 'admin_notices', 'hello_dolly' ); + +// We need some CSS to position the paragraph. +function dolly_css() { + echo " + + "; +} + +add_action( 'admin_head', 'dolly_css' ); diff --git a/assets/wordpress/wp-content/plugins/index.php b/assets/wordpress/wp-content/plugins/index.php new file mode 100644 index 0000000..6220032 --- /dev/null +++ b/assets/wordpress/wp-content/plugins/index.php @@ -0,0 +1,2 @@ + .wp-block-button__link:not(.has-text-color, .has-background):hover { + background-color: var(--wp--preset--color--contrast-2, var(--wp--preset--color--contrast, transparent)); + color: var(--wp--preset--color--base); + border-color: var(--wp--preset--color--contrast-2, var(--wp--preset--color--contrast, currentColor)); +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt new file mode 100644 index 0000000..ed707cd --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2 new file mode 100644 index 0000000..46905a8 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2 new file mode 100644 index 0000000..536d7a5 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2 new file mode 100644 index 0000000..2d280ef Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2 new file mode 100644 index 0000000..f5f2861 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2 new file mode 100644 index 0000000..02203d6 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt new file mode 100644 index 0000000..56e04aa --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/instrument-sans/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2022 The Instrument Sans Project Authors (https://github.com/Instrument/instrument-sans) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2 new file mode 100644 index 0000000..350bbbc Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt new file mode 100644 index 0000000..b525cbf --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/inter/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2 new file mode 100644 index 0000000..184c920 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2 b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2 new file mode 100644 index 0000000..eedcc3f Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt new file mode 100644 index 0000000..85b6b99 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/fonts/jost/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Jost Project Authors (https://github.com/indestructible-type) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp new file mode 100644 index 0000000..4b7fd1a Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp new file mode 100644 index 0000000..c9b8d7a Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/angular-roof.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp new file mode 100644 index 0000000..34b458b Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/art-gallery.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp new file mode 100644 index 0000000..936ecf1 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp new file mode 100644 index 0000000..1da8272 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/green-staircase.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp new file mode 100644 index 0000000..a076a58 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/hotel-facade.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/icon-message.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/icon-message.webp new file mode 100644 index 0000000..f6e5e24 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/icon-message.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/museum.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/museum.webp new file mode 100644 index 0000000..df42352 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/museum.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp new file mode 100644 index 0000000..285e37c Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/windows.webp b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/windows.webp new file mode 100644 index 0000000..39a4e41 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/assets/images/windows.webp differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/functions.php b/assets/wordpress/wp-content/themes/twentytwentyfour/functions.php new file mode 100644 index 0000000..8536cb8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/functions.php @@ -0,0 +1,206 @@ + 'arrow-icon-details', + 'label' => __( 'Arrow icon', 'twentytwentyfour' ), + /* + * Styles for the custom Arrow icon style of the Details block + */ + 'inline_style' => ' + .is-style-arrow-icon-details { + padding-top: var(--wp--preset--spacing--10); + padding-bottom: var(--wp--preset--spacing--10); + } + + .is-style-arrow-icon-details summary { + list-style-type: "\2193\00a0\00a0\00a0"; + } + + .is-style-arrow-icon-details[open]>summary { + list-style-type: "\2192\00a0\00a0\00a0"; + }', + ) + ); + register_block_style( + 'core/post-terms', + array( + 'name' => 'pill', + 'label' => __( 'Pill', 'twentytwentyfour' ), + /* + * Styles variation for post terms + * https://github.com/WordPress/gutenberg/issues/24956 + */ + 'inline_style' => ' + .is-style-pill a, + .is-style-pill span:not([class], [data-rich-text-placeholder]) { + display: inline-block; + background-color: var(--wp--preset--color--base-2); + padding: 0.375rem 0.875rem; + border-radius: var(--wp--preset--spacing--20); + } + + .is-style-pill a:hover { + background-color: var(--wp--preset--color--contrast-3); + }', + ) + ); + register_block_style( + 'core/list', + array( + 'name' => 'checkmark-list', + 'label' => __( 'Checkmark', 'twentytwentyfour' ), + /* + * Styles for the custom checkmark list block style + * https://github.com/WordPress/gutenberg/issues/51480 + */ + 'inline_style' => ' + ul.is-style-checkmark-list { + list-style-type: "\2713"; + } + + ul.is-style-checkmark-list li { + padding-inline-start: 1ch; + }', + ) + ); + register_block_style( + 'core/navigation-link', + array( + 'name' => 'arrow-link', + 'label' => __( 'With arrow', 'twentytwentyfour' ), + /* + * Styles for the custom arrow nav link block style + */ + 'inline_style' => ' + .is-style-arrow-link .wp-block-navigation-item__label:after { + content: "\2197"; + padding-inline-start: 0.25rem; + vertical-align: middle; + text-decoration: none; + display: inline-block; + }', + ) + ); + register_block_style( + 'core/heading', + array( + 'name' => 'asterisk', + 'label' => __( 'With asterisk', 'twentytwentyfour' ), + 'inline_style' => " + .is-style-asterisk:before { + content: ''; + width: 1.5rem; + height: 3rem; + background: var(--wp--preset--color--contrast-2, currentColor); + clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z'); + display: block; + } + + /* Hide the asterisk if the heading has no content, to avoid using empty headings to display the asterisk only, which is an A11Y issue */ + .is-style-asterisk:empty:before { + content: none; + } + + .is-style-asterisk:-moz-only-whitespace:before { + content: none; + } + + .is-style-asterisk.has-text-align-center:before { + margin: 0 auto; + } + + .is-style-asterisk.has-text-align-right:before { + margin-left: auto; + } + + .rtl .is-style-asterisk.has-text-align-left:before { + margin-right: auto; + }", + ) + ); + } +endif; + +add_action( 'init', 'twentytwentyfour_block_styles' ); + +/** + * Enqueue block stylesheets. + */ + +if ( ! function_exists( 'twentytwentyfour_block_stylesheets' ) ) : + /** + * Enqueue custom block stylesheets + * + * @since Twenty Twenty-Four 1.0 + * @return void + */ + function twentytwentyfour_block_stylesheets() { + /** + * The wp_enqueue_block_style() function allows us to enqueue a stylesheet + * for a specific block. These will only get loaded when the block is rendered + * (both in the editor and on the front end), improving performance + * and reducing the amount of data requested by visitors. + * + * See https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/ for more info. + */ + wp_enqueue_block_style( + 'core/button', + array( + 'handle' => 'twentytwentyfour-button-style-outline', + 'src' => get_parent_theme_file_uri( 'assets/css/button-outline.css' ), + 'ver' => wp_get_theme( get_template() )->get( 'Version' ), + 'path' => get_parent_theme_file_path( 'assets/css/button-outline.css' ), + ) + ); + } +endif; + +add_action( 'init', 'twentytwentyfour_block_stylesheets' ); + +/** + * Register pattern categories. + */ + +if ( ! function_exists( 'twentytwentyfour_pattern_categories' ) ) : + /** + * Register pattern categories + * + * @since Twenty Twenty-Four 1.0 + * @return void + */ + function twentytwentyfour_pattern_categories() { + + register_block_pattern_category( + 'twentytwentyfour_page', + array( + 'label' => _x( 'Pages', 'Block pattern category', 'twentytwentyfour' ), + 'description' => __( 'A collection of full page layouts.', 'twentytwentyfour' ), + ) + ); + } +endif; + +add_action( 'init', 'twentytwentyfour_pattern_categories' ); diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/parts/footer.html b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/footer.html new file mode 100644 index 0000000..c21388e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/footer.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/parts/header.html b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/header.html new file mode 100644 index 0000000..2fa483b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/header.html @@ -0,0 +1,26 @@ + +
    + +
    + +
    + + + +
    + +
    + +
    + + + +
    + +
    + +
    + +
    + \ No newline at end of file diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/parts/post-meta.html b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/post-meta.html new file mode 100644 index 0000000..e11eda3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/post-meta.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/parts/sidebar.html b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/sidebar.html new file mode 100644 index 0000000..93c36b9 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/parts/sidebar.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/banner-hero.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/banner-hero.php new file mode 100644 index 0000000..4587ac8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/banner-hero.php @@ -0,0 +1,55 @@ + + + +
    + + +
    + + +

    + + + + + + + +

    + + + + + + + +
    + +
    + +
    + +
    + +
    + + + + + + + +
    + <?php esc_attr_e( 'Building exterior in Toronto, Canada', 'twentytwentyfour' ); ?> +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/banner-project-description.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/banner-project-description.php new file mode 100644 index 0000000..31a44fc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/banner-project-description.php @@ -0,0 +1,44 @@ + + +
    + +
    + +
    + +

    + +
    + + + +
    + + +

    + + +
    + +
    + + + + + + + +
    + <?php esc_attr_e( 'Hyatt Regency San Francisco, San Francisco, United States', 'twentytwentyfour' ); ?> +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php new file mode 100644 index 0000000..f46ecbc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-content-image-on-right.php @@ -0,0 +1,66 @@ + + + +
    + +
    + +
    + +

    + + + +
      + +
    • + + + +
    • + + + +
    • + +
    + + + +
    + +
    + +
    + + + +
    + +
    + +
    + +
    + + + +
    + +
    + <?php esc_attr_e( 'White abstract geometric artwork from Dresden, Germany', 'twentytwentyfour' ); ?> +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-pricing.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-pricing.php new file mode 100644 index 0000000..45f85f5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-pricing.php @@ -0,0 +1,214 @@ + + + +
    + +
    + +
    + +

    + + + +

    + +
    + + + + + + + +
    + +
    + +

    + +

    + + + +
    + + + + + + + +
    + +

    Études Articles per month.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

    + + + +
    + + + + + + + +
    + + + + + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + + + +
    + +

    + +

    + + + +
    + + + + + + + +
    + +

    Études Articles per month.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

    + + + +
    + + + +

    + + + +
    + + + +

    Études app for iOS and Android.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

    + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + + + +
    + +

    + +

    + + + +
    + + + + + + + +
    + +

    Études Articles.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

    + + + +
    + + + +

    + + + +
    + + + +

    Études app for iOS and Android', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

    + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php new file mode 100644 index 0000000..9981065 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-rsvp.php @@ -0,0 +1,57 @@ + + + +
    + +
    + +
    + +
    + + +

    + + + +
    + +

    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + + + +
    + +
    + <?php esc_attr_e( 'A ramp along a curved wall in the Kiasma Museu, Helsinki, Finland', 'twentytwentyfour' ); ?> +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php new file mode 100644 index 0000000..87f3c9f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-services-image-left.php @@ -0,0 +1,48 @@ + + + +
    + +
    + +
    + +
    + <?php esc_attr_e( 'White abstract geometric artwork from Dresden, Germany', 'twentytwentyfour' ); ?> +
    + +
    + + + +
    + +

    + + + +

    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php new file mode 100644 index 0000000..b65eac5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/cta-subscribe-centered.php @@ -0,0 +1,42 @@ + + + +
    + +
    + + + + + +

    + + + +

    + + + +
    + +
    + +
    + +
    + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php new file mode 100644 index 0000000..4370eac --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer-centered-logo-nav.php @@ -0,0 +1,31 @@ + + + +
    + + + + + + + + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php new file mode 100644 index 0000000..cfb15db --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer-colophon-3-col.php @@ -0,0 +1,105 @@ + + + +
    + +
    + +
    + +
    + + + +
    + + + +
    + +
    + +

    + +
    + + +
    + +
    + +

    + + +

    + +
    + +
    + + +
    + +
    + +
    + +
    + +

    + + +

    /

    + +
    + +
    + +
    + +
    + +
    + + + + + + + +
    + +
    + +

    + + +
    + + +

    + WordPress'; + echo sprintf( + /* Translators: Designed with WordPress */ + esc_html__( 'Designed with %1$s', 'twentytwentyfour' ), + $wordpress_link + ); + ?> +

    + +
    + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer.php new file mode 100644 index 0000000..85f310d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/footer.php @@ -0,0 +1,128 @@ + + + +
    + +
    + +
    + +
    + + + + + +
    + +
    + + + +
    +
    + + + +
    + +
    + +
    + +

    + + + +
    + + + + + + + + + +
    + +
    + + + + +
    + +

    + + + +
    + + + + + + + + + +
    + +
    + + + +
    + +

    + + + +
    + + + + + + + + + +
    + +
    + +
    + +
    + +
    + + + +
    + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php new file mode 100644 index 0000000..ee26fca --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-full-screen-image.php @@ -0,0 +1,21 @@ + + + +
    + + +
    + + + +
    +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php new file mode 100644 index 0000000..67ea044 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-2-col.php @@ -0,0 +1,58 @@ + + +
    + +
    + +
    + +
    + +
    + + + + + + + +
    + +
    + +
    + + + +
    + + + + + +
    +
    + + + + + + + +
    +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php new file mode 100644 index 0000000..3280317 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-3-col.php @@ -0,0 +1,110 @@ + + +
    + +
    + +
    + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + + + +
    + + + + + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + + + +
    + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php new file mode 100644 index 0000000..8c89db8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-offset-images-grid-4-col.php @@ -0,0 +1,149 @@ + + + +
    + +
    + +
    + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + + + +
    + + + + + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + + + +
    + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + + + +
    + + + + + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php new file mode 100644 index 0000000..27d6f74 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/gallery-project-layout.php @@ -0,0 +1,65 @@ + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-404.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-404.php new file mode 100644 index 0000000..d033a13 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-404.php @@ -0,0 +1,15 @@ + + + +

    + + +

    + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-comments.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-comments.php new file mode 100644 index 0000000..bd10668 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-comments.php @@ -0,0 +1,47 @@ + + + +
    + +

    + + + + +
    + +
    + + +
    + + +
    + +
    + + + +
    + + +
    + +
    + + + + + + + + + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php new file mode 100644 index 0000000..00bbf97 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-no-results.php @@ -0,0 +1,10 @@ + + +

    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php new file mode 100644 index 0000000..1af3e7d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-portfolio-hero.php @@ -0,0 +1,19 @@ + + + + + + + +
    + +

    Leia Acosta, a passionate photographer who finds inspiration in capturing the fleeting beauty of life.', 'twentytwentyfour' ) ); ?>

    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php new file mode 100644 index 0000000..add4a1c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-post-meta.php @@ -0,0 +1,30 @@ + + + +
    + +
    + + + +

    + + + +

    + + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php new file mode 100644 index 0000000..be2dcb2 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-post-navigation.php @@ -0,0 +1,14 @@ + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-search.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-search.php new file mode 100644 index 0000000..e4aaa64 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-search.php @@ -0,0 +1,9 @@ + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php new file mode 100644 index 0000000..abcb01b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php @@ -0,0 +1,84 @@ + + +
    + +
    + + + +
    + +

    + + + +
    + +
    + + + +
    + + + +
    + +

    + + + +
    + + + +
    + + + +
    + +
    + +

    + + + +

    + +
    + + + + + + +
    + + + +
    + + + +
    + +

    + + + +
    + + + + + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-about-business.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-about-business.php new file mode 100644 index 0000000..ad62698 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-about-business.php @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php new file mode 100644 index 0000000..5cef5d4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-blogging.php @@ -0,0 +1,83 @@ + + + + + +
    + +
    + +
    +
    + + + +
    + +
    + + +
    + + + + + + +
    + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    + + + +
    + +
    + + + +
    +
    + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-business.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-business.php new file mode 100644 index 0000000..415c42f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-business.php @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php new file mode 100644 index 0000000..a9ce9d7 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php @@ -0,0 +1,14 @@ + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php new file mode 100644 index 0000000..40d4fa1 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio.php @@ -0,0 +1,14 @@ + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php new file mode 100644 index 0000000..5ee552e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php @@ -0,0 +1,47 @@ + + + +
    + +
    + +
    + +
    + + + + + + + + + + + + + + + +
    + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php new file mode 100644 index 0000000..b0bf21b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-portfolio-overview.php @@ -0,0 +1,17 @@ + + + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php new file mode 100644 index 0000000..8b3ba83 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/page-rsvp-landing.php @@ -0,0 +1,56 @@ + + + +
    + +
    + +
    + +
    + +

    + + +
    + +

    + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + + +
    + +
    + <?php esc_attr_e( 'Green staircase at Western University, London, Canada', 'twentytwentyfour' ); ?> +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-1-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-1-col.php new file mode 100644 index 0000000..051ed14 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-1-col.php @@ -0,0 +1,43 @@ + + + +
    + + + + + +
    + + + +
    + + + + + + +
    + + + + + + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-3-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-3-col.php new file mode 100644 index 0000000..62a48c4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-3-col.php @@ -0,0 +1,52 @@ + + + +
    + + + + + +
    + + + + + + +
    + + + + + + + + + +
    + + + + + + + + + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php new file mode 100644 index 0000000..dd2881d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-grid-2-col.php @@ -0,0 +1,80 @@ + + + +
    + +

    + + + + + + + +
    + +
    + +
    + + + + + + + + +
    + + + + + + +
    + + +
    + +
    + + + +
    + +
    + + + + + + + + +
    + + + + + +
    + + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php new file mode 100644 index 0000000..48bf4d0 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-images-only-3-col.php @@ -0,0 +1,35 @@ + + + +
    + + + + + +
    + + + + + + + + + + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php new file mode 100644 index 0000000..808754b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-images-only-offset-4-col.php @@ -0,0 +1,83 @@ + + + +
    + +
    + +
    + +
    + + + +
    + +
    + + + +
    + + + + + +
    + + + +
    + + + + + +
    + + + +
    + +
    + + + +
    + +
    + + + +
    + + + + + +
    + + + +
    + + + + + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-list.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-list.php new file mode 100644 index 0000000..5db93af --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/posts-list.php @@ -0,0 +1,62 @@ + + + +
    + +

    + + + +
    + +
    + + +
    + + + +
    + +
    + +
    + + + +
    + +
    + +
    + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/team-4-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/team-4-col.php new file mode 100644 index 0000000..78211d2 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/team-4-col.php @@ -0,0 +1,129 @@ + + + +
    + +
    + +

    + + + +

    + +
    + + + + + + + +
    + +
    + +
    + +
    + + + +
    + +

    + +

    + + + +

    + +
    + +
    + + + +
    + +
    + +
    + + + +
    + +

    + +

    + + + +

    + +
    + +
    + + + +
    + +
    + +
    + + + +
    + +

    + +

    + + + +

    + +
    + +
    + + + +
    + +
    + +
    + + + +
    + +

    + +

    + + + +

    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php new file mode 100644 index 0000000..6d193a4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-archive-blogging.php @@ -0,0 +1,21 @@ + + + + + +
    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php new file mode 100644 index 0000000..aa347ad --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-archive-portfolio.php @@ -0,0 +1,23 @@ + + + + + +
    + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php new file mode 100644 index 0000000..4a96d74 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-blogging.php @@ -0,0 +1,21 @@ + + + + + +
    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-business.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-business.php new file mode 100644 index 0000000..e84a5ac --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-business.php @@ -0,0 +1,19 @@ + + + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php new file mode 100644 index 0000000..4fc4f07 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-home-portfolio.php @@ -0,0 +1,22 @@ + + + + + +
    + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php new file mode 100644 index 0000000..b810186 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-index-blogging.php @@ -0,0 +1,23 @@ + + + + + +
    + +

    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php new file mode 100644 index 0000000..7b78323 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-index-portfolio.php @@ -0,0 +1,24 @@ + + + + + +
    + +

    + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php new file mode 100644 index 0000000..ec9a29b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-search-blogging.php @@ -0,0 +1,26 @@ + + + + + +
    + +
    + + +
    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php new file mode 100644 index 0000000..1c60eb1 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-search-portfolio.php @@ -0,0 +1,27 @@ + + + + + +
    + + + +
    + +
    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php new file mode 100644 index 0000000..ba54d58 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/template-single-portfolio.php @@ -0,0 +1,36 @@ + + + + + +
    + + + + + + + +
    + +
    + + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php new file mode 100644 index 0000000..8e63924 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php @@ -0,0 +1,46 @@ + + + +
    + +
    + +

    + +

    + + + + + + + +
    + +
    + +
    + + + +

    + + + +

    + +
    + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php new file mode 100644 index 0000000..12a0772 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php @@ -0,0 +1,115 @@ + + + +
    + +
    + +
    + + +

    + + + +

    + +
    + + + + + + + +
    + +
    + +

    + + + +
      + + +
    • + + + +
    • + + + +
    • + + +
    + +
    + + + +
    + +
    + <?php esc_attr_e( 'Tourist taking photo of a building', 'twentytwentyfour' ); ?> +
    + +
    + +
    + + + + + + + +
    + +
    + +
    + <?php esc_attr_e( 'Windows of a building in Nuremberg, Germany', 'twentytwentyfour' ); ?> +
    + +
    + + + +
    + +

    + + + +
      + +
    • + + + +
    • + + + +
    • + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php new file mode 100644 index 0000000..c24a51a --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php @@ -0,0 +1,30 @@ + + + +
    + + +

    + + ' . esc_html__( 'Money Studies', 'twentytwentyfour' ) . ''; + echo sprintf( + /* Translators: About text placeholder */ + esc_html__( 'I write about finance, management and economy, my book “%1$s” is out now.', 'twentytwentyfour' ), + $about_link + ); + ?> + +

    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php new file mode 100644 index 0000000..ce7751e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php @@ -0,0 +1,29 @@ + + + +
    + +
    + + + + + +

    Études is not confined to the past—we are passionate about the cutting edge designs shaping our world today.', 'twentytwentyfour' ) ); ?>

    + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-faq.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-faq.php new file mode 100644 index 0000000..8bf0428 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-faq.php @@ -0,0 +1,65 @@ + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php new file mode 100644 index 0000000..f03eaf3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-feature-grid-3-col.php @@ -0,0 +1,118 @@ + + + +
    + +
    + +

    + + + + + + + +

    + +
    + + + + + + + +
    + +
    + +

    + + + +

    + +
    + + + +
    + +

    + + + +

    + +
    + + + +
    + +

    + + + +

    + +
    + +
    + + + + + + + +
    + +
    + +

    + + + +

    + +
    + + + +
    + +

    + + + +

    + +
    + + + +
    + +

    + + + +

    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-project-details.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-project-details.php new file mode 100644 index 0000000..b75f869 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-project-details.php @@ -0,0 +1,53 @@ + + + +
    + +
    + +
    + +

    + +
    + + + +
    + + +

    + + + +
    + +
    + +

    + +
    + + + +
    + +

    + +
    + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php new file mode 100644 index 0000000..f4c48f7 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/patterns/text-title-left-image-right.php @@ -0,0 +1,58 @@ + + + +
    + +
    + +
    + +
    + + +

    + + + +
    + + +

    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + + + +
    + +
    + <?php esc_attr_e( 'A ramp along a curved wall in the Kiasma Museu, Helsinki, Finland', 'twentytwentyfour' ); ?> +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/readme.txt b/assets/wordpress/wp-content/themes/twentytwentyfour/readme.txt new file mode 100644 index 0000000..50c9ff5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/readme.txt @@ -0,0 +1,81 @@ +=== Twenty Twenty-Four === +Contributors: wordpressdotorg +Requires at least: 6.4 +Tested up to: 6.5 +Requires PHP: 7.0 +Stable tag: 1.1 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html + +== Description == + +Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4. + +== Changelog == + += 1.1 = +* Released: April 2, 2024 + +https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.1 + += 1.0 = +* Released: November 7, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.0 + +== Copyright == + +Twenty Twenty-Four WordPress Theme, (C) 2023 WordPress.org +Twenty Twenty-Four is distributed under the terms of the GNU GPL. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + + +This theme bundles the following third-party resources: + +=== Fonts === + +Cardo Font +Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net) +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: http://scholarsfonts.net + +Instrument Sans Font +Copyright 2022 The Instrument Sans Project Authors. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/Instrument/instrument-sans + +Inter Font +Copyright 2020 The Inter Project Authors. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/rsms/inter + +Jost Font +Copyright 2020 The Jost Project Authors. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/indestructible-type/Jost + +=== Images === + +License: CC0 https://creativecommons.org/publicdomain/zero/1.0/ + +museum.webp - https://www.rawpixel.com/image/3297419/free-photo-image-interior-hallway-architecture +tourist-and-building.webp - https://www.rawpixel.com/image/5928004/photo-image-public-domain-hand-person +building-exterior.webp - https://www.rawpixel.com/image/430335/free-photo-image-architecture-building-roof +windows.webp - https://www.rawpixel.com/image/3286615/free-photo-image-texture-architecture-building +abstract-geometric-art.webp - https://www.rawpixel.com/image/3283970/free-photo-image-pattern-artwork-abstract +angular-roof.webp - https://www.rawpixel.com/image/3289063/free-photo-image-architectural-detail-architecture +art-gallery.webp - https://www.rawpixel.com/image/3286187/free-photo-image-person-stairs-architecture +green-staircase.webp - https://www.rawpixel.com/image/430558/free-photo-image-abstract-architecture-art-public-domain +hotel-facade.webp - https://www.rawpixel.com/image/3286725/free-photo-image-black-and-white-background-photos + +License: UNICODE LICENSE V3 https://www.unicode.org/license.txt +icon-message.webp diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/screenshot.png b/assets/wordpress/wp-content/themes/twentytwentyfour/screenshot.png new file mode 100644 index 0000000..74fa4c7 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentyfour/screenshot.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/style.css b/assets/wordpress/wp-content/themes/twentytwentyfour/style.css new file mode 100644 index 0000000..75c9804 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/style.css @@ -0,0 +1,15 @@ +/* +Theme Name: Twenty Twenty-Four +Theme URI: https://wordpress.org/themes/twentytwentyfour/ +Author: the WordPress team +Author URI: https://wordpress.org +Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4. +Requires at least: 6.4 +Tested up to: 6.5 +Requires PHP: 7.0 +Version: 1.1 +License: GNU General Public License v2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html +Text Domain: twentytwentyfour +Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news +*/ diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/ember.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/ember.json new file mode 100644 index 0000000..f4e612c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/ember.json @@ -0,0 +1,249 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Ember", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#D73301", + "#F9F8F5" + ], + "slug": "duotone-2", + "name": "Orange and white" + } + ], + "gradients": [ + { + "slug": "gradient-1", + "gradient": "linear-gradient(to bottom, #f6decd 0%, #dbab88 100%)", + "name": "Vertical linen to beige" + }, + { + "slug": "gradient-2", + "gradient": "linear-gradient(to bottom, #A4A4A4 0%, #dbab88 100%)", + "name": "Vertical taupe to beige" + }, + { + "slug": "gradient-3", + "gradient": "linear-gradient(to bottom, #353535 0%, #dbab88 100%)", + "name": "Vertical sable to beige" + }, + { + "slug": "gradient-4", + "gradient": "linear-gradient(to bottom, #111111 0%, #dbab88 100%)", + "name": "Vertical ebony to beige" + }, + { + "slug": "gradient-5", + "gradient": "linear-gradient(to bottom, #353535 0%, #A4A4A4 100%)", + "name": "Vertical sable to beige" + }, + { + "slug": "gradient-6", + "gradient": "linear-gradient(to bottom, #111111 0%, #353535 100%)", + "name": "Vertical ebony to sable" + }, + { + "slug": "gradient-7", + "gradient": "linear-gradient(to bottom, #dbab88 50%, #f6decd 50%)", + "name": "Vertical hard beige to linen" + }, + { + "slug": "gradient-8", + "gradient": "linear-gradient(to bottom, #A4A4A4 50%, #dbab88 50%)", + "name": "Vertical hard taupe to beige" + }, + { + "slug": "gradient-9", + "gradient": "linear-gradient(to bottom, #353535 50%, #dbab88 50%)", + "name": "Vertical hard sable to beige" + }, + { + "slug": "gradient-10", + "gradient": "linear-gradient(to bottom, #111111 50%, #dbab88 50%)", + "name": "Vertical hard ebony to beige" + }, + { + "slug": "gradient-11", + "gradient": "linear-gradient(to bottom, #353535 50%, #A4A4A4 50%)", + "name": "Vertical hard sable to taupe" + }, + { + "slug": "gradient-12", + "gradient": "linear-gradient(to bottom, #111111 50%, #353535 50%)", + "name": "Vertical hard ebony to sable" + } + ], + "palette": [ + { + "color": "#F9F8F5", + "name": "Base", + "slug": "base" + }, + { + "color": "#D73301", + "name": "Contrast / 2", + "slug": "contrast-2" + }, + { + "color": "#000", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#f6decd", + "name": "Base / Two", + "slug": "base-2" + } + ] + }, + "typography": { + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "Instrument Sans", + "fontStyle": "normal", + "fontWeight": "400 700", + "src": [ + "file:./assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2" + ] + }, + { + "fontFamily": "Instrument Sans", + "fontStyle": "italic", + "fontWeight": "400 700", + "src": [ + "file:./assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2" + ] + } + ], + "fontFamily": "\"Instrument Sans\", sans-serif", + "name": "Instrument Sans", + "slug": "body" + }, + { + "fontFace": [ + { + "fontFamily": "Jost", + "fontStyle": "normal", + "fontWeight": "100 900", + "src": ["file:./assets/fonts/jost/Jost-VariableFont_wght.woff2"] + }, + { + "fontFamily": "Jost", + "fontStyle": "italic", + "fontWeight": "100 900", + "src": [ + "file:./assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2" + ] + } + ], + "fontFamily": "\"Jost\", sans-serif", + "name": "Jost", + "slug": "heading" + }, + { + "fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif", + "name": "System Sans-serif", + "slug": "system-sans-serif" + }, + { + "fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol", + "name": "System Serif", + "slug": "system-serif" + } + ] + } + }, + "styles": { + "blocks": { + "core/button": { + "variations": { + "outline": { + "spacing": { + "padding": { + "bottom": "calc(0.9rem - 2px)", + "left": "calc(2rem - 2px)", + "right": "calc(2rem - 2px)", + "top": "calc(0.9rem - 2px)" + } + }, + "border": { + "width": "2px" + } + } + } + }, + "core/image": { + "filter": { + "duotone": "var(--wp--preset--duotone--duotone-2)" + } + }, + "core/pullquote": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal", + "fontWeight": "normal", + "lineHeight": "1.2" + } + }, + "core/quote": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal" + }, + "variations": { + "plain": { + "typography": { + "fontStyle": "normal", + "fontWeight": "400" + } + } + } + }, + "core/site-title": { + "typography": { + "fontWeight": "400" + } + }, + "core/navigation": { + "typography": { + "fontWeight": "400" + } + } + }, + "elements": { + "button": { + "border": { + "radius": "100px" + }, + "color": { + "background": "var(--wp--preset--color--contrast-2)", + "text": "var(--wp--preset--color--base)" + }, + "spacing": { + "padding": { + "bottom": "0.9rem", + "left": "2rem", + "right": "2rem", + "top": "0.9rem" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast)" + } + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/fossil.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/fossil.json new file mode 100644 index 0000000..44e24fc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/fossil.json @@ -0,0 +1,279 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Fossil", + "settings": { + "color": { + "gradients": [ + { + "slug": "gradient-1", + "gradient": "linear-gradient(to bottom, #E1DFDB 0%, #D6D2CE 100%)", + "name": "Vertical linen to beige" + }, + { + "slug": "gradient-2", + "gradient": "linear-gradient(to bottom, #958D86 0%, #D6D2CE 100%)", + "name": "Vertical taupe to beige" + }, + { + "slug": "gradient-3", + "gradient": "linear-gradient(to bottom, #65574E 0%, #D6D2CE 100%)", + "name": "Vertical sable to beige" + }, + { + "slug": "gradient-4", + "gradient": "linear-gradient(to bottom, #1A1514 0%, #D6D2CE 100%)", + "name": "Vertical ebony to beige" + }, + { + "slug": "gradient-5", + "gradient": "linear-gradient(to bottom, #65574E 0%, #958D86 100%)", + "name": "Vertical sable to beige" + }, + { + "slug": "gradient-6", + "gradient": "linear-gradient(to bottom, #1A1514 0%, #65574E 100%)", + "name": "Vertical ebony to sable" + }, + { + "slug": "gradient-7", + "gradient": "linear-gradient(to bottom, #D6D2CE 50%, #E1DFDB 50%)", + "name": "Vertical hard beige to linen" + }, + { + "slug": "gradient-8", + "gradient": "linear-gradient(to bottom, #958D86 50%, #D6D2CE 50%)", + "name": "Vertical hard taupe to beige" + }, + { + "slug": "gradient-9", + "gradient": "linear-gradient(to bottom, #65574E 50%, #D6D2CE 50%)", + "name": "Vertical hard sable to beige" + }, + { + "slug": "gradient-10", + "gradient": "linear-gradient(to bottom, #1A1514 50%, #D6D2CE 50%)", + "name": "Vertical hard ebony to beige" + }, + { + "slug": "gradient-11", + "gradient": "linear-gradient(to bottom, #65574E 50%, #958D86 50%)", + "name": "Vertical hard sable to taupe" + }, + { + "slug": "gradient-12", + "gradient": "linear-gradient(to bottom, #1A1514 50%, #65574E 50%)", + "name": "Vertical hard ebony to sable" + } + ], + "palette": [ + { + "color": "#D6D2CE", + "name": "Base", + "slug": "base" + }, + { + "color": "#E1DFDB", + "name": "Base / Two", + "slug": "base-2" + }, + { + "color": "#1A1514", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#65574E", + "name": "Contrast / Two", + "slug": "contrast-2" + }, + { + "color": "#958D86", + "name": "Contrast / Three", + "slug": "contrast-3" + } + ] + }, + "typography": { + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "Inter", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "300 900", + "src": [ + "file:./assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2" + ] + } + ], + "fontFamily": "\"Inter\", sans-serif", + "name": "Inter", + "slug": "heading" + }, + { + "fontFace": [ + { + "fontFamily": "Cardo", + "fontStyle": "normal", + "fontWeight": "400", + "src": ["file:./assets/fonts/cardo/cardo_normal_400.woff2"] + }, + { + "fontFamily": "Cardo", + "fontStyle": "italic", + "fontWeight": "400", + "src": ["file:./assets/fonts/cardo/cardo_italic_400.woff2"] + }, + { + "fontFamily": "Cardo", + "fontStyle": "normal", + "fontWeight": "700", + "src": ["file:./assets/fonts/cardo/cardo_normal_700.woff2"] + } + ], + "fontFamily": "Cardo", + "name": "Cardo", + "slug": "body" + }, + { + "fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif", + "name": "System Sans-serif", + "slug": "system-sans-serif" + }, + { + "fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol", + "name": "System Serif", + "slug": "system-serif" + } + ], + "fontSizes": [ + { + "fluid": false, + "name": "Small", + "size": "1rem", + "slug": "small" + }, + { + "fluid": false, + "name": "Medium", + "size": "1.2rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.5rem", + "max": "2rem" + }, + "name": "Large", + "size": "2rem", + "slug": "large" + }, + { + "fluid": { + "min": "2rem", + "max": "2.65rem" + }, + "name": "Extra Large", + "size": "2.65rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "2.65rem", + "max": "3.5rem" + }, + "name": "Extra Extra Large", + "size": "3.5rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/button": { + "variations": { + "outline": { + "spacing": { + "padding": { + "bottom": "calc(0.9rem - 2px)", + "left": "calc(2rem - 2px)", + "right": "calc(2rem - 2px)", + "top": "calc(0.9rem - 2px)" + } + }, + "border": { + "width": "2px" + } + } + } + }, + "core/pullquote": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal", + "fontWeight": "normal", + "lineHeight": "1.2" + } + }, + "core/quote": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal" + }, + "variations": { + "plain": { + "typography": { + "fontStyle": "normal", + "fontWeight": "400" + } + } + } + }, + "core/site-title": { + "typography": { + "fontWeight": "400" + } + } + }, + "elements": { + "button": { + "border": { + "radius": "100px", + "color": "var(--wp--preset--color--contrast-2)" + }, + "color": { + "background": "var(--wp--preset--color--contrast-2)", + "text": "var(--wp--preset--color--white)" + }, + "spacing": { + "padding": { + "bottom": "0.9rem", + "left": "2rem", + "right": "2rem", + "top": "0.9rem" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast)" + } + } + }, + "heading": { + "typography": { + "fontWeight": "normal", + "letterSpacing": "0" + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/ice.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/ice.json new file mode 100644 index 0000000..e7896bc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/ice.json @@ -0,0 +1,280 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Ice", + "settings": { + "color": { + "gradients": [ + { + "slug": "gradient-1", + "gradient": "linear-gradient(to bottom, #cbd9e1 0%, #EBEBEF 100%)", + "name": "Vertical azure to ice" + }, + { + "slug": "gradient-2", + "gradient": "linear-gradient(to bottom, #466577 0%, #EBEBEF 100%)", + "name": "Vertical slate to ice" + }, + { + "slug": "gradient-3", + "gradient": "linear-gradient(to bottom, #37505d 0%, #EBEBEF 100%)", + "name": "Vertical ocean to ice" + }, + { + "slug": "gradient-4", + "gradient": "linear-gradient(to bottom, #1C2930 0%, #EBEBEF 100%)", + "name": "Vertical ink to ice" + }, + { + "slug": "gradient-5", + "gradient": "linear-gradient(to bottom, #37505d 0%, #466577 100%)", + "name": "Vertical ocean to slate" + }, + { + "slug": "gradient-6", + "gradient": "linear-gradient(to bottom, #1C2930 0%, #37505d 100%)", + "name": "Vertical ink to ocean" + }, + { + "slug": "gradient-7", + "gradient": "linear-gradient(to bottom, #EBEBEF 50%, #cbd9e1 50%)", + "name": "Vertical hard ice to azure" + }, + { + "slug": "gradient-8", + "gradient": "linear-gradient(to bottom, #466577 50%, #EBEBEF 50%)", + "name": "Vertical hard slate to ice" + }, + { + "slug": "gradient-9", + "gradient": "linear-gradient(to bottom, #37505d 50%, #EBEBEF 50%)", + "name": "Vertical hard ocean to ice" + }, + { + "slug": "gradient-10", + "gradient": "linear-gradient(to bottom, #1C2930 50%, #EBEBEF 50%)", + "name": "Vertical hard ink to ice" + }, + { + "slug": "gradient-11", + "gradient": "linear-gradient(to bottom, #37505d 50%, #466577 50%)", + "name": "Vertical hard ocean to slate" + }, + { + "slug": "gradient-12", + "gradient": "linear-gradient(to bottom, #1C2930 50%, #37505d 50%)", + "name": "Vertical hard ink to ocean" + } + ], + "palette": [ + { + "color": "#EBEBEF", + "name": "Base", + "slug": "base" + }, + { + "color": "#DCE0E6", + "name": "Base / Two", + "slug": "base-2" + }, + { + "color": "#1C2930", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#37505d", + "name": "Contrast / Two", + "slug": "contrast-2" + }, + { + "color": "#96A5B2", + "name": "Contrast / Three", + "slug": "contrast-3" + } + ] + }, + "typography": { + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "Inter", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "300 900", + "src": [ + "file:./assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2" + ] + } + ], + "fontFamily": "\"Inter\", sans-serif", + "name": "Inter", + "slug": "heading" + }, + { + "fontFace": [ + { + "fontFamily": "Jost", + "fontStyle": "normal", + "fontWeight": "100 900", + "src": ["file:./assets/fonts/jost/Jost-VariableFont_wght.woff2"] + }, + { + "fontFamily": "Jost", + "fontStyle": "italic", + "fontWeight": "100 900", + "src": [ + "file:./assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2" + ] + } + ], + "fontFamily": "\"Jost\", sans-serif", + "name": "Jost", + "slug": "body" + }, + { + "fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif", + "name": "System Sans-serif", + "slug": "system-sans-serif" + }, + { + "fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol", + "name": "System Serif", + "slug": "system-serif" + } + ], + "fontSizes": [ + { + "fluid": false, + "name": "Small", + "size": "1rem", + "slug": "small" + }, + { + "fluid": false, + "name": "Medium", + "size": "1.2rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.5rem", + "max": "2rem" + }, + "name": "Large", + "size": "2rem", + "slug": "large" + }, + { + "fluid": { + "min": "2rem", + "max": "2.65rem" + }, + "name": "Extra Large", + "size": "2.65rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "2.65rem", + "max": "3.5rem" + }, + "name": "Extra Extra Large", + "size": "3.5rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/button": { + "variations": { + "outline": { + "spacing": { + "padding": { + "bottom": "calc(1rem - 1px)", + "left": "calc(2.2rem - 1px)", + "right": "calc(2.2rem - 1px)", + "top": "calc(1rem - 1px)" + } + }, + "border": { + "width": "1px" + } + } + } + }, + "core/pullquote": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal", + "fontWeight": "normal", + "lineHeight": "1.2" + } + }, + "core/quote": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal" + }, + "variations": { + "plain": { + "typography": { + "fontStyle": "normal", + "fontWeight": "400" + } + } + } + }, + "core/site-title": { + "typography": { + "fontWeight": "400" + } + } + }, + "elements": { + "button": { + "border": { + "radius": "4px", + "color": "var(--wp--preset--color--contrast-2)" + }, + "color": { + "background": "var(--wp--preset--color--contrast-2)", + "text": "var(--wp--preset--color--white)" + }, + "spacing": { + "padding": { + "bottom": "1rem", + "left": "2.2rem", + "right": "2.2rem", + "top": "1rem" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "0.75rem", + "fontStyle": "normal", + "textTransform": "uppercase", + "letterSpacing": "0.1rem" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast)" + }, + "border": { + "color": "var(--wp--preset--color--contrast)" + } + } + }, + "heading": { + "typography": { + "fontWeight": "normal", + "letterSpacing": "0" + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/maelstrom.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/maelstrom.json new file mode 100644 index 0000000..1f99cf5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/maelstrom.json @@ -0,0 +1,205 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Maelstrom", + "settings": { + "color": { + "palette": [ + { + "color": "#38629F", + "name": "Base", + "slug": "base" + }, + { + "color": "#244E8A", + "name": "Base / Two", + "slug": "base-2" + }, + { + "color": "#FFFFFFA1", + "name": "Contrast / 2", + "slug": "contrast-2" + }, + { + "color": "#FFFFFF", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#D5E0F0", + "name": "Contrast / 3", + "slug": "contrast-3" + } + ] + }, + "typography": { + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "Cardo", + "fontStyle": "normal", + "fontWeight": "400", + "src": ["file:./assets/fonts/cardo/cardo_normal_400.woff2"] + }, + { + "fontFamily": "Cardo", + "fontStyle": "italic", + "fontWeight": "400", + "src": ["file:./assets/fonts/cardo/cardo_italic_400.woff2"] + }, + { + "fontFamily": "Cardo", + "fontStyle": "normal", + "fontWeight": "700", + "src": ["file:./assets/fonts/cardo/cardo_normal_700.woff2"] + } + ], + "fontFamily": "Cardo", + "name": "Cardo", + "slug": "body" + }, + { + "fontFace": [ + { + "fontFamily": "Jost", + "fontStyle": "normal", + "fontWeight": "100 900", + "src": ["file:./assets/fonts/jost/Jost-VariableFont_wght.woff2"] + }, + { + "fontFamily": "Jost", + "fontStyle": "italic", + "fontWeight": "100 900", + "src": [ + "file:./assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2" + ] + } + ], + "fontFamily": "\"Jost\", sans-serif", + "name": "Jost", + "slug": "heading" + }, + { + "fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif", + "name": "System Sans-serif", + "slug": "system-sans-serif" + }, + { + "fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol", + "name": "System Serif", + "slug": "system-serif" + } + ], + "fontSizes": [ + { + "fluid": false, + "name": "Small", + "size": "1rem", + "slug": "small" + }, + { + "fluid": false, + "name": "Medium", + "size": "1.2rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.5rem", + "max": "2rem" + }, + "name": "Large", + "size": "2rem", + "slug": "large" + }, + { + "fluid": { + "min": "2rem", + "max": "2.65rem" + }, + "name": "Extra Large", + "size": "2.65rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "2.65rem", + "max": "3.5rem" + }, + "name": "Extra Extra Large", + "size": "3.5rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/button": { + "variations": { + "outline": { + "spacing": { + "padding": { + "bottom": "calc(0.8rem - 2px)", + "left": "calc(1.6rem - 2px)", + "right": "calc(1.6rem - 2px)", + "top": "calc(0.8rem - 2px)" + } + }, + "border": { + "width": "2px" + } + } + } + }, + "core/site-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontWeight": "normal" + } + }, + "core/navigation": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "normal" + } + } + }, + "elements": { + "button": { + "border": { + "radius": "6px" + }, + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base-2)" + }, + "spacing": { + "padding": { + "bottom": "0.98rem", + "left": "1.6rem", + "right": "1.6rem", + "top": "0.8rem" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast)" + } + } + }, + "heading": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "letterSpacing": "0" + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/mint.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/mint.json new file mode 100644 index 0000000..9d306e5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/mint.json @@ -0,0 +1,169 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Mint", + "settings": { + "color": { + "palette": [ + { + "color": "#e4efeb", + "name": "Base", + "slug": "base" + }, + { + "color": "#f1fefb", + "name": "Base / Two", + "slug": "base-2" + }, + { + "color": "#000000", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#353535", + "name": "Contrast / Two", + "slug": "contrast-2" + }, + { + "color": "#A4A4A4", + "name": "Contrast / Three", + "slug": "contrast-3" + } + ] + }, + "typography": { + "fluid": true, + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "Instrument Sans", + "fontStyle": "normal", + "fontWeight": "400 700", + "src": [ + "file:./assets/fonts/instrument-sans/InstrumentSans-VariableFont_wdth,wght.woff2" + ] + }, + { + "fontFamily": "Instrument Sans", + "fontStyle": "italic", + "fontWeight": "400 700", + "src": [ + "file:./assets/fonts/instrument-sans/InstrumentSans-Italic-VariableFont_wdth,wght.woff2" + ] + } + ], + "fontFamily": "\"Instrument Sans\", sans-serif", + "name": "Instrument Sans", + "slug": "heading" + }, + { + "fontFace": [ + { + "fontFamily": "Jost", + "fontStyle": "normal", + "fontWeight": "100 900", + "src": ["file:./assets/fonts/jost/Jost-VariableFont_wght.woff2"] + }, + { + "fontFamily": "Jost", + "fontStyle": "italic", + "fontWeight": "100 900", + "src": [ + "file:./assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2" + ] + } + ], + "fontFamily": "\"Jost\", sans-serif", + "name": "Jost", + "slug": "body" + }, + { + "fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif", + "name": "System Sans-serif", + "slug": "system-sans-serif" + }, + { + "fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol", + "name": "System Serif", + "slug": "system-serif" + } + ] + } + }, + "styles": { + "blocks": { + "core/navigation": { + "typography": { + "fontStyle": "normal", + "fontWeight": "400" + } + }, + "core/pullquote": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "var(--wp--preset--font-size--x-large)", + "fontStyle": "normal", + "fontWeight": "600", + "lineHeight": "1.3" + } + }, + "core/quote": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "normal", + "fontWeight": "400" + } + }, + "core/site-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)" + } + } + }, + "elements": { + "caption": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)" + } + }, + "h1": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)" + } + }, + "h2": { + "typography": { + "fontSize": "2.1rem" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "h4": { + "typography": { + "fontSize": "1.6rem" + } + }, + "h5": { + "typography": { + "fontSize": "1.4rem" + } + }, + "heading": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontStyle": "normal", + "fontWeight": "600" + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/onyx.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/onyx.json new file mode 100644 index 0000000..41afbd8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/onyx.json @@ -0,0 +1,165 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Onyx", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#272727", + "#f9f9f9" + ], + "slug": "duotone-1", + "name": "Dark gray and white" + }, + { + "colors": [ + "#272727", + "#5F584F" + ], + "slug": "duotone-2", + "name": "Dark gray and walnut" + }, + { + "colors": [ + "#272727", + "#973C20" + ], + "slug": "duotone-3", + "name": "Dark gray and cinnamon" + }, + { + "colors": [ + "#272727", + "#4D5B48" + ], + "slug": "duotone-4", + "name": "Dark gray and olive" + }, + { + "colors": [ + "#272727", + "#4F5959" + ], + "slug": "duotone-5", + "name": "Dark gray and steel" + } + ], + "gradients": [ + { + "slug": "gradient-1", + "gradient": "linear-gradient(to bottom, #5F584F 0%, #272727 100%)", + "name": "Vertical soft driftwood to dark gray" + }, + { + "slug": "gradient-2", + "gradient": "linear-gradient(to bottom, #6D533C 0%, #272727 100%)", + "name": "Vertical soft walnut to dark gray" + }, + { + "slug": "gradient-3", + "gradient": "linear-gradient(to bottom, #973C20 0%, #272727 100%)", + "name": "Vertical soft cinnamon to dark gray" + }, + { + "slug": "gradient-4", + "gradient": "linear-gradient(to bottom, #4D5B48 0%, #272727 100%)", + "name": "Vertical soft olive to dark gray" + }, + { + "slug": "gradient-5", + "gradient": "linear-gradient(to bottom, #4F5959 0%, #272727 100%)", + "name": "Vertical soft steel to dark gray" + }, + { + "slug": "gradient-6", + "gradient": "linear-gradient(to bottom, #909090 0%, #272727 100%)", + "name": "Vertical soft pewter to dark gray" + }, + { + "slug": "gradient-7", + "gradient": "linear-gradient(to bottom, #5F584F 50%, #272727 50%)", + "name": "Vertical hard beige to dark gray" + }, + { + "slug": "gradient-8", + "gradient": "linear-gradient(to bottom, #6D533C 50%, #272727 50%)", + "name": "Vertical hard walnut to dark gray" + }, + { + "slug": "gradient-9", + "gradient": "linear-gradient(to bottom, #973C20 50%, #272727 50%)", + "name": "Vertical hard cinnamon to dark gray" + }, + { + "slug": "gradient-10", + "gradient": "linear-gradient(to bottom, #4D5B48 50%, #272727 50%)", + "name": "Vertical hard olive to dark gray" + }, + { + "slug": "gradient-11", + "gradient": "linear-gradient(to bottom, #4F5959 50%, #272727 50%)", + "name": "Vertical hard steel to dark gray" + }, + { + "slug": "gradient-12", + "gradient": "linear-gradient(to bottom, #A4A4A4 50%, #272727 50%)", + "name": "Vertical hard pewter to dark gray" + } + ], + "palette": [ + { + "color": "#272727", + "name": "Base", + "slug": "base" + }, + { + "color": "#303030", + "name": "Base / Two", + "slug": "base-2" + }, + { + "color": "#f9f9f9", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#B7B7B7", + "name": "Contrast / Two", + "slug": "contrast-2" + }, + { + "color": "#909090", + "name": "Contrast / Three", + "slug": "contrast-3" + }, + { + "color": "#5F584F", + "name": "Accent", + "slug": "accent" + }, + { + "color": "#6D533C", + "name": "Accent / Two", + "slug": "accent-2" + }, + { + "color": "#973C20", + "name": "Accent / Three", + "slug": "accent-3" + }, + { + "color": "#4D5B48", + "name": "Accent / Four", + "slug": "accent-4" + }, + { + "color": "#4F5959", + "name": "Accent / Five", + "slug": "accent-5" + } + ] + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/styles/rust.json b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/rust.json new file mode 100644 index 0000000..e3410b6 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/styles/rust.json @@ -0,0 +1,145 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Rust", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#A62B0C", + "#F3F0E7" + ], + "slug": "duotone-1", + "name": "Dark rust to beige" + } + ], + "gradients": [ + { + "slug": "gradient-1", + "gradient": "linear-gradient(to bottom, #A62A0C42 0%, #F3F0E7 100%)", + "name": "Vertical transparent rust to beige" + }, + { + "slug": "gradient-7", + "gradient": "linear-gradient(to bottom, #A62A0C42 50%, #F3F0E7 50%)", + "name": "Vertical hard transparent rust to beige" + }, + { + "slug": "gradient-2", + "gradient": "linear-gradient(to bottom, #A62B0C 0%, #F3F0E7 100%)", + "name": "Vertical rust to beige" + }, + { + "slug": "gradient-8", + "gradient": "linear-gradient(to bottom, #A62B0C 50%, #F3F0E7 50%)", + "name": "Vertical hard rust to beige" + } + ], + "palette": [ + { + "color": "#F3F0E7", + "name": "Base", + "slug": "base" + }, + { + "color": "#ECEADF", + "name": "Base / 2", + "slug": "base-2" + }, + { + "color": "#A62B0C", + "name": "Contrast", + "slug": "contrast" + } + ] + } + }, + "styles": { + "blocks": { + "core/calendar": { + "css": ".wp-block-calendar table:where(:not(.has-text-color)) th{background-color:var(--wp--preset--color--contrast);color:var(--wp--preset--color--base);border-color:var(--wp--preset--color--contrast)} & table:where(:not(.has-text-color)) td{border-color:var(--wp--preset--color--contrast)}" + }, + "core/comment-date": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + }, + "core/comment-edit-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + }, + "core/comment-reply-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + }, + "core/post-date": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + }, + "core/post-terms": { + "css":"& .wp-block-post-terms__prefix{color: var(--wp--preset--color--contrast);}" + }, + "core/quote": { + "color": { + "background": "var(--wp--preset--color--base)" + } + }, + "core/site-tagline": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + }, + "elements": { + "button": { + ":focus": { + "color": { + "background": "var(--wp--preset--color--contrast)" + }, + "border": { + "color": "var(--wp--preset--color--contrast)" + } + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast)" + }, + "border": { + "color": "var(--wp--preset--color--contrast)" + } + } + }, + "caption": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/404.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/404.html new file mode 100644 index 0000000..37abd55 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/404.html @@ -0,0 +1,9 @@ + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/archive.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/archive.html new file mode 100644 index 0000000..e430722 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/archive.html @@ -0,0 +1,13 @@ + + + +
    + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/home.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/home.html new file mode 100644 index 0000000..7c364b8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/home.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/index.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/index.html new file mode 100644 index 0000000..fd93725 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/index.html @@ -0,0 +1,12 @@ + + + +
    + +

    Posts

    + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-no-title.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-no-title.html new file mode 100644 index 0000000..f221eaf --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-no-title.html @@ -0,0 +1,9 @@ + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-wide.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-wide.html new file mode 100644 index 0000000..21478ea --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-wide.html @@ -0,0 +1,33 @@ + + + +
    + +
    + +
    + + + +
    + +
    + +
    + +
    + + + +
    + +
    + +
    + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html new file mode 100644 index 0000000..f57b2ba --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page-with-sidebar.html @@ -0,0 +1,54 @@ + + + +
    + + +
    + +
    +
    + + + +
    + +
    + + + + + + + + + +
    + +
    + + + +
    +
    + + + +
    + +
    + + + +
    +
    + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page.html new file mode 100644 index 0000000..0486031 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/page.html @@ -0,0 +1,26 @@ + + + +
    + +
    + + + + + + + + + + + +
    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/search.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/search.html new file mode 100644 index 0000000..c4d2f90 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/search.html @@ -0,0 +1,17 @@ + + + +
    + + + +
    + +
    + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html new file mode 100644 index 0000000..990a3a8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/single-with-sidebar.html @@ -0,0 +1,61 @@ + + + +
    + +
    + +
    + +
    + + + + + + + + + + +
    + + + +
    + + + +
    + + + +
    + + + + + + + + + + + + +
    + +
    + + + +
    + +
    + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/templates/single.html b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/single.html new file mode 100644 index 0000000..e263370 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/templates/single.html @@ -0,0 +1,49 @@ + + + +
    + +
    + + + +
    + + + +
    + +
    + + + + + +
    + + + +
    + + + + + +
    + + + + + + +
    + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentyfour/theme.json b/assets/wordpress/wp-content/themes/twentytwentyfour/theme.json new file mode 100644 index 0000000..fe6bd3b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentyfour/theme.json @@ -0,0 +1,956 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "patterns": [ + "three-columns-of-services", + "clients-section" + ], + "settings": { + "appearanceTools": true, + "color": { + "defaultDuotone": false, + "defaultPalette": false, + "defaultGradients": false, + "duotone": [ + { + "colors": ["#111111", "#ffffff"], + "slug": "duotone-1", + "name": "Black and white" + }, + { + "colors": ["#111111", "#C2A990"], + "slug": "duotone-2", + "name": "Black and sandstone" + }, + { + "colors": ["#111111", "#D8613C"], + "slug": "duotone-3", + "name": "Black and rust" + }, + { + "colors": ["#111111", "#B1C5A4"], + "slug": "duotone-4", + "name": "Black and sage" + }, + { + "colors": ["#111111", "#B5BDBC"], + "slug": "duotone-5", + "name": "Black and pastel blue" + } + ], + "gradients": [ + { + "slug": "gradient-1", + "gradient": "linear-gradient(to bottom, #cfcabe 0%, #F9F9F9 100%)", + "name": "Vertical soft beige to white" + }, + { + "slug": "gradient-2", + "gradient": "linear-gradient(to bottom, #C2A990 0%, #F9F9F9 100%)", + "name": "Vertical soft sandstone to white" + }, + { + "slug": "gradient-3", + "gradient": "linear-gradient(to bottom, #D8613C 0%, #F9F9F9 100%)", + "name": "Vertical soft rust to white" + }, + { + "slug": "gradient-4", + "gradient": "linear-gradient(to bottom, #B1C5A4 0%, #F9F9F9 100%)", + "name": "Vertical soft sage to white" + }, + { + "slug": "gradient-5", + "gradient": "linear-gradient(to bottom, #B5BDBC 0%, #F9F9F9 100%)", + "name": "Vertical soft mint to white" + }, + { + "slug": "gradient-6", + "gradient": "linear-gradient(to bottom, #A4A4A4 0%, #F9F9F9 100%)", + "name": "Vertical soft pewter to white" + }, + { + "slug": "gradient-7", + "gradient": "linear-gradient(to bottom, #cfcabe 50%, #F9F9F9 50%)", + "name": "Vertical hard beige to white" + }, + { + "slug": "gradient-8", + "gradient": "linear-gradient(to bottom, #C2A990 50%, #F9F9F9 50%)", + "name": "Vertical hard sandstone to white" + }, + { + "slug": "gradient-9", + "gradient": "linear-gradient(to bottom, #D8613C 50%, #F9F9F9 50%)", + "name": "Vertical hard rust to white" + }, + { + "slug": "gradient-10", + "gradient": "linear-gradient(to bottom, #B1C5A4 50%, #F9F9F9 50%)", + "name": "Vertical hard sage to white" + }, + { + "slug": "gradient-11", + "gradient": "linear-gradient(to bottom, #B5BDBC 50%, #F9F9F9 50%)", + "name": "Vertical hard mint to white" + }, + { + "slug": "gradient-12", + "gradient": "linear-gradient(to bottom, #A4A4A4 50%, #F9F9F9 50%)", + "name": "Vertical hard pewter to white" + } + ], + "palette": [ + { + "color": "#f9f9f9", + "name": "Base", + "slug": "base" + }, + { + "color": "#ffffff", + "name": "Base / Two", + "slug": "base-2" + }, + { + "color": "#111111", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#636363", + "name": "Contrast / Two", + "slug": "contrast-2" + }, + { + "color": "#A4A4A4", + "name": "Contrast / Three", + "slug": "contrast-3" + }, + { + "color": "#cfcabe", + "name": "Accent", + "slug": "accent" + }, + { + "color": "#c2a990", + "name": "Accent / Two", + "slug": "accent-2" + }, + { + "color": "#d8613c", + "name": "Accent / Three", + "slug": "accent-3" + }, + { + "color": "#b1c5a4", + "name": "Accent / Four", + "slug": "accent-4" + }, + { + "color": "#b5bdbc", + "name": "Accent / Five", + "slug": "accent-5" + } + ] + }, + "layout": { + "contentSize": "620px", + "wideSize": "1280px" + }, + "spacing": { + "spacingScale": { + "steps": 0 + }, + "spacingSizes": [ + { + "name": "1", + "size": "1rem", + "slug": "10" + }, + { + "name": "2", + "size": "min(1.5rem, 2vw)", + "slug": "20" + }, + { + "name": "3", + "size": "min(2.5rem, 3vw)", + "slug": "30" + }, + { + "name": "4", + "size": "min(4rem, 5vw)", + "slug": "40" + }, + { + "name": "5", + "size": "min(6.5rem, 8vw)", + "slug": "50" + }, + { + "name": "6", + "size": "min(10.5rem, 13vw)", + "slug": "60" + } + ], + "units": ["%", "px", "em", "rem", "vh", "vw"] + }, + "typography": { + "fluid": true, + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "Inter", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "300 900", + "src": [ + "file:./assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2" + ] + } + ], + "fontFamily": "\"Inter\", sans-serif", + "name": "Inter", + "slug": "body" + }, + { + "fontFace": [ + { + "fontFamily": "Cardo", + "fontStyle": "normal", + "fontWeight": "400", + "src": ["file:./assets/fonts/cardo/cardo_normal_400.woff2"] + }, + { + "fontFamily": "Cardo", + "fontStyle": "italic", + "fontWeight": "400", + "src": ["file:./assets/fonts/cardo/cardo_italic_400.woff2"] + }, + { + "fontFamily": "Cardo", + "fontStyle": "normal", + "fontWeight": "700", + "src": ["file:./assets/fonts/cardo/cardo_normal_700.woff2"] + } + ], + "fontFamily": "Cardo", + "name": "Cardo", + "slug": "heading" + }, + { + "fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif", + "name": "System Sans-serif", + "slug": "system-sans-serif" + }, + { + "fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol", + "name": "System Serif", + "slug": "system-serif" + } + ], + "fontSizes": [ + { + "fluid": false, + "name": "Small", + "size": "0.9rem", + "slug": "small" + }, + { + "fluid": false, + "name": "Medium", + "size": "1.05rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.39rem", + "max": "1.85rem" + }, + "name": "Large", + "size": "1.85rem", + "slug": "large" + }, + { + "fluid": { + "min": "1.85rem", + "max": "2.5rem" + }, + "name": "Extra Large", + "size": "2.5rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "2.5rem", + "max": "3.27rem" + }, + "name": "Extra Extra Large", + "size": "3.27rem", + "slug": "xx-large" + } + ], + "writingMode": true + }, + "useRootPaddingAwareAlignments": true + }, + "styles": { + "blocks": { + "core/avatar": { + "border": { + "radius": "90px" + } + }, + "core/button": { + "variations": { + "outline": { + "spacing": { + "padding": { + "bottom": "calc(0.6rem - 1px)", + "left": "calc(1rem - 1px)", + "right": "calc(1rem - 1px)", + "top": "calc(0.6rem - 1px)" + } + }, + "border": { + "width": "1px" + } + } + } + }, + "core/buttons": { + "spacing": { + "blockGap": "0.7rem" + } + }, + "core/calendar": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "css": ".wp-block-calendar table:where(:not(.has-text-color)) th{background-color:var(--wp--preset--color--contrast-2);color:var(--wp--preset--color--base);border-color:var(--wp--preset--color--contrast-2)} & table:where(:not(.has-text-color)) td{border-color:var(--wp--preset--color--contrast-2)}" + }, + "core/categories": { + "spacing": { + "padding": { + "left": "0px", + "right": "0px" + } + }, + "css": "& {list-style-type:none;} & li{margin-bottom: 0.5rem;}" + }, + "core/code": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "radius": "var(--wp--preset--spacing--20)" + }, + "color": { + "background": "var(--wp--preset--color--base-2)", + "text": "var(--wp--preset--color--contrast-2)" + }, + "spacing": { + "padding": { + "bottom": "calc(var(--wp--preset--spacing--30) + 0.75rem)", + "left": "calc(var(--wp--preset--spacing--30) + 0.75rem)", + "right": "calc(var(--wp--preset--spacing--30) + 0.75rem)", + "top": "calc(var(--wp--preset--spacing--30) + 0.75rem)" + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "fontStyle": "normal", + "fontWeight": "400", + "lineHeight": "1.6" + } + }, + "core/comment-author-name": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "typography": { + "textDecoration": "none" + }, + ":hover": { + "typography": { + "textDecoration": "underline" + } + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal", + "fontWeight": "600" + } + }, + "core/comment-content": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + }, + "spacing": { + "margin": { + "top": "var(--wp--preset--spacing--20)", + "bottom": "var(--wp--preset--spacing--20)" + } + } + }, + "core/comment-date": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "typography": { + "textDecoration": "none" + }, + ":hover": { + "typography": { + "textDecoration": "underline" + } + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + }, + "spacing": { + "margin": { + "top": "0px", + "bottom": "0px" + } + } + }, + "core/comment-edit-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "typography": { + "textDecoration": "none" + }, + ":hover": { + "typography": { + "textDecoration": "underline" + } + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comment-reply-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "typography": { + "textDecoration": "none" + }, + ":hover": { + "typography": { + "textDecoration": "underline" + } + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-comments-form": { + "css": "& textarea, input{border-radius:.33rem}" + }, + "core/comments-pagination": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comments-pagination-next": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comments-pagination-numbers": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comments-pagination-previous": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/footnotes": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/gallery": { + "spacing": { + "margin": { + "bottom": "var(--wp--preset--spacing--50)" + } + } + }, + "core/image": { + "variations": { + "rounded": { + "border": { + "radius": "var(--wp--preset--spacing--20)" + } + } + } + }, + "core/list": { + "spacing": { + "padding": { + "left": "var(--wp--preset--spacing--10)" + } + } + }, + "core/loginout": { + "css": "& input{border-radius:.33rem;padding:calc(0.667em + 2px);border:1px solid #949494;}" + }, + "core/navigation": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontWeight": "500" + } + }, + "core/post-author": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-author-name": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-date": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-excerpt": { + "typography": { + "lineHeight": "1.6" + } + }, + "core/post-featured-image": { + "border": { + "radius": "var(--wp--preset--spacing--20)" + } + }, + "core/post-terms": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + }, + "css":"& .wp-block-post-terms__prefix{color: var(--wp--preset--color--contrast-2);}" + }, + "core/post-title": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + "typography": { + "textDecoration": "none" + } + } + } + }, + "core/pullquote": { + "border": { + "radius": "var(--wp--preset--spacing--20)" + }, + "elements": { + "cite": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "var(--wp--preset--font-size--medium)", + "fontStyle": "normal" + } + } + }, + "spacing": { + "padding": { + "bottom": "var(--wp--preset--spacing--40)", + "top": "var(--wp--preset--spacing--40)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--x-large)", + "fontStyle": "italic", + "fontWeight": "400", + "letterSpacing": "0em", + "lineHeight": "1.5" + } + }, + "core/query-title": { + "css": "& span {font-style: italic;}" + }, + "core/query-no-results": { + "spacing": { + "padding": { + "top": "var(--wp--preset--spacing--30)" + } + } + }, + "core/quote": { + "border": { + "radius": "var(--wp--preset--spacing--20)" + }, + "color": { + "background": "var(--wp--preset--color--base-2)" + }, + "css": "& :where(p) {margin-block-start:0;margin-block-end:calc(var(--wp--preset--spacing--10) + 0.5rem);} & :where(:last-child) {margin-block-end:0;} &.has-text-align-right.is-style-plain, .rtl .is-style-plain.wp-block-quote:not(.has-text-align-center):not(.has-text-align-left){border-width: 0 2px 0 0;padding-left:calc(var(--wp--preset--spacing--20) + 0.5rem);padding-right:calc(var(--wp--preset--spacing--20) + 0.5rem);} &.has-text-align-left.is-style-plain, body:not(.rtl) .is-style-plain.wp-block-quote:not(.has-text-align-center):not(.has-text-align-right){border-width: 0 0 0 2px;padding-left:calc(var(--wp--preset--spacing--20) + 0.5rem);padding-right:calc(var(--wp--preset--spacing--20) + 0.5rem)}", + "elements": { + "cite": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal" + } + } + }, + "spacing": { + "padding": { + "bottom": "calc(var(--wp--preset--spacing--30) + 0.75rem)", + "left": "calc(var(--wp--preset--spacing--30) + 0.75rem)", + "right": "calc(var(--wp--preset--spacing--30) + 0.75rem)", + "top": "calc(var(--wp--preset--spacing--30) + 0.75rem)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontStyle": "italic", + "lineHeight": "1.3" + }, + "variations": { + "plain": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "radius": "0", + "style": "solid", + "width": "0" + }, + "color": { + "background": "transparent" + }, + "spacing": { + "padding": { + "bottom": "var(--wp--preset--spacing--20)", + "left": "var(--wp--preset--spacing--20)", + "right": "var(--wp--preset--spacing--20)", + "top": "var(--wp--preset--spacing--20)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontStyle": "normal", + "fontSize": "var(--wp--preset--font-size--medium)", + "lineHeight": "1.5" + } + } + } + }, + "core/search": { + "css": "& .wp-block-search__input{border-radius:.33rem}", + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + }, + "elements": { + "button": { + "border": { + "radius": { "ref": "styles.elements.button.border.radius" } + } + } + } + }, + "core/separator": { + "border": { + "color": "currentColor", + "style": "solid", + "width": "0 0 1px 0" + }, + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "css": " &:not(.is-style-wide):not(.is-style-dots):not(.alignwide):not(.alignfull){width: var(--wp--preset--spacing--60)}" + }, + "core/site-tagline": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/site-title": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "1.2rem", + "fontStyle": "normal", + "fontWeight": "600" + } + } + }, + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "button": { + ":active": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" + } + }, + ":focus": { + "color": { + "background": "var(--wp--preset--color--contrast-2)", + "text": "var(--wp--preset--color--base)" + }, + "outline": { + "color": "var(--wp--preset--color--contrast)", + "offset": "2px" + }, + "border": { + "color": "var(--wp--preset--color--contrast-2)" + } + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast-2)", + "text": "var(--wp--preset--color--base)" + }, + "border": { + "color": "var(--wp--preset--color--contrast-2)" + } + }, + "border": { + "radius": ".33rem", + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" + }, + "spacing": { + "padding": { + "bottom": "0.6rem", + "left": "1rem", + "right": "1rem", + "top": "0.6rem" + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal", + "fontWeight": "500" + } + }, + "caption": { + "color": { + "text": "var(--wp--preset--color--contrast-2)" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "0.8rem" + } + }, + "h1": { + "typography": { + "fontSize": "var(--wp--preset--font-size--xx-large)", + "lineHeight": "1.15" + } + }, + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "h4": { + "typography": { + "fontSize": "clamp(1.1rem, 1.1rem + ((1vw - 0.2rem) * 0.767), 1.5rem)" + } + }, + "h5": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "h6": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "heading": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--heading)", + "fontWeight": "400", + "lineHeight": "1.2" + } + }, + "link": { + ":hover": { + "typography": { + "textDecoration": "none" + } + }, + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + }, + "spacing": { + "blockGap": "1.2rem", + "padding": { + "left": "var(--wp--preset--spacing--50)", + "right": "var(--wp--preset--spacing--50)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--body)", + "fontSize": "var(--wp--preset--font-size--medium)", + "fontStyle": "normal", + "fontWeight": "400", + "lineHeight": "1.55" + }, + "css": ":where(.wp-site-blocks *:focus){outline-width:2px;outline-style:solid}" + }, + "templateParts": [ + { + "area": "header", + "name": "header", + "title": "Header" + }, + { + "area": "footer", + "name": "footer", + "title": "Footer" + }, + { + "area": "uncategorized", + "name": "sidebar", + "title": "Sidebar" + }, + { + "area": "uncategorized", + "name": "post-meta", + "title": "Post Meta" + } + ], + "customTemplates": [ + { + "name": "page-no-title", + "postTypes": ["page"], + "title": "Page No Title" + }, + { + "name": "page-with-sidebar", + "postTypes": ["page"], + "title": "Page with Sidebar" + }, + { + "name": "page-wide", + "postTypes": ["page"], + "title": "Page with Wide Image" + }, + { + "name": "single-with-sidebar", + "postTypes": ["post"], + "title": "Single with Sidebar" + } + ] +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2 new file mode 100644 index 0000000..262239c Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2 new file mode 100644 index 0000000..2787a75 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2 new file mode 100644 index 0000000..6220e15 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2 new file mode 100644 index 0000000..9e5a00f Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt new file mode 100644 index 0000000..02d522f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt @@ -0,0 +1,94 @@ +Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com). Copyright 2019 Google LLC. +Copyright 2014-2018 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. Copyright 2019 Google LLC. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2 new file mode 100644 index 0000000..6124ae1 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2 new file mode 100644 index 0000000..21d9681 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2 new file mode 100644 index 0000000..b714a13 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2 new file mode 100644 index 0000000..64ad179 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt new file mode 100644 index 0000000..245d5f4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt @@ -0,0 +1,93 @@ +Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf new file mode 100644 index 0000000..ec3164e Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt new file mode 100644 index 0000000..b525cbf --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md new file mode 100644 index 0000000..7cd3e74 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md @@ -0,0 +1,93 @@ +Copyright 2014 - 2021 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + +5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 new file mode 100644 index 0000000..2387849 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 new file mode 100644 index 0000000..4cbd4c3 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 new file mode 100644 index 0000000..28701e6 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 new file mode 100644 index 0000000..3b74d30 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/parts/comments.html b/assets/wordpress/wp-content/themes/twentytwentythree/parts/comments.html new file mode 100644 index 0000000..a5bc7d8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/parts/comments.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/parts/footer.html b/assets/wordpress/wp-content/themes/twentytwentythree/parts/footer.html new file mode 100644 index 0000000..256c8db --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/parts/footer.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/parts/header.html b/assets/wordpress/wp-content/themes/twentytwentythree/parts/header.html new file mode 100644 index 0000000..8e4f17b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/parts/header.html @@ -0,0 +1,10 @@ + +
    + +
    + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/parts/post-meta.html b/assets/wordpress/wp-content/themes/twentytwentythree/parts/post-meta.html new file mode 100644 index 0000000..de968be --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/parts/post-meta.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/patterns/call-to-action.php b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/call-to-action.php new file mode 100644 index 0000000..119677d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/call-to-action.php @@ -0,0 +1,41 @@ + + +
    + +
    + +

    +

    + + + +
    + +
    + + + +
    + +
    + +
    + + + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/patterns/footer-default.php b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/footer-default.php new file mode 100644 index 0000000..d197bf5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/footer-default.php @@ -0,0 +1,28 @@ + + +
    + +
    + + +

    + WordPress' + ) + ?> +

    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-404.php b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-404.php new file mode 100644 index 0000000..ae7dbb1 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-404.php @@ -0,0 +1,28 @@ + + + + + + +

    + + + +
    + +

    + + + +
    + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-comments.php b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-comments.php new file mode 100644 index 0000000..84d4a78 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-comments.php @@ -0,0 +1,57 @@ + + +
    + +
    + +

    + + + + + + +
    + +
    + +
    + + + +
    + + + +
    + + +
    + + + + + +
    + +
    + + + + + + + + + + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-no-results.php b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-no-results.php new file mode 100644 index 0000000..d3f7ae0 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/hidden-no-results.php @@ -0,0 +1,14 @@ + + +

    + +

    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/patterns/post-meta.php b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/post-meta.php new file mode 100644 index 0000000..b704064 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/patterns/post-meta.php @@ -0,0 +1,76 @@ + + + + + + +
    + +
    + + + +
    + +
    + +
    + +

    + +

    + + + + + +

    + +

    + + + +
    + + + +
    + +

    + +

    + + + +
    + +
    + + + +
    + +
    + +

    + +

    + + + +
    + +
    + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/readme.txt b/assets/wordpress/wp-content/themes/twentytwentythree/readme.txt new file mode 100644 index 0000000..c845ea5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/readme.txt @@ -0,0 +1,81 @@ +=== Twenty Twenty-Three === +Contributors: wordpressdotorg +Requires at least: 6.1 +Tested up to: 6.5 +Requires PHP: 5.6 +Stable tag: 1.4 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html + +== Description == + +Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. + +Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself. + +== Changelog == + += 1.4 = +* Released: April 2, 2024 + +https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.4 + += 1.3 = +* Released: November 7, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.3 + += 1.2 = +* Released: August 8, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.2 + += 1.1 = +* Released: March 28, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.1 + += 1.0 = +* Released: November 1, 2022 + +https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.0 + +== Copyright == + +Twenty Twenty-Three WordPress Theme, (C) 2022-2024 WordPress.org +Twenty Twenty-Three is distributed under the terms of the GNU GPL. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + + +This theme bundles the following third-party resources: + +DM Sans Font +Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) +Copyright 2019 Google LLC +Copyright 2014-2018 Adobe (http://www.adobe.com/) +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/googlefonts/dm-fonts + +IBM Plex Font +Copyright 2017 IBM Corp. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/IBM/plex + +Inter Font +Copyright (c) 2016-2020 The Inter Project Authors. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/rsms/inter + +Source Serif Font +Copyright 2014-2021 Adobe (http://www.adobe.com/) +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/adobe-fonts/source-serif diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/screenshot.png b/assets/wordpress/wp-content/themes/twentytwentythree/screenshot.png new file mode 100644 index 0000000..dee93e4 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentythree/screenshot.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/style.css b/assets/wordpress/wp-content/themes/twentytwentythree/style.css new file mode 100644 index 0000000..273c757 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/style.css @@ -0,0 +1,15 @@ +/* +Theme Name: Twenty Twenty-Three +Theme URI: https://wordpress.org/themes/twentytwentythree +Author: the WordPress team +Author URI: https://wordpress.org +Description: Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself. +Requires at least: 6.1 +Tested up to: 6.5 +Requires PHP: 5.6 +Version: 1.4 +License: GNU General Public License v2 or later +License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +Text Domain: twentytwentythree +Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news +*/ diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/aubergine.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/aubergine.json new file mode 100644 index 0000000..235b04b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/aubergine.json @@ -0,0 +1,292 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Aubergine", + "settings": { + "color": { + "gradients": [ + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--secondary) 0%,var(--wp--preset--color--base) 100%)", + "name": "Secondary to Base", + "slug": "secondary-base" + }, + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--base) 0 min(24rem, 10%), var(--wp--preset--color--secondary) 0% 30%, var(--wp--preset--color--base) 100%)", + "name": "Base to Secondary to Base", + "slug": "base-secondary-base" + }, + { + "gradient": "linear-gradient(90deg, var(--wp--preset--color--tertiary) 5.74%, var(--wp--preset--color--primary) 100%)", + "name": "Tertiary to Primary", + "slug": "tertiary-primary" + }, + { + "gradient": "linear-gradient(90deg, var(--wp--preset--color--primary) 5.74%, var(--wp--preset--color--tertiary) 100%)", + "name": "Primary to Tertiary", + "slug": "primary-tertiary" + } + ], + "palette": [ + { + "color": "#1B1031", + "name": "Base", + "slug": "base" + }, + { + "color": "#FFFFFF", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#FF746D", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#551C5E", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#FB326B", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "typography": { + "fontSizes": [ + { + "fluid": { + "min": "0.875rem", + "max": "1rem" + }, + "size": "1rem", + "slug": "small" + }, + { + "fluid": { + "min": "1rem", + "max": "1.125rem" + }, + "size": "1.125rem", + "slug": "medium" + }, + { + "size": "1.75rem", + "slug": "large", + "fluid": false + }, + { + "size": "3.25rem", + "slug": "x-large", + "fluid": false + }, + { + "size": "10rem", + "slug": "xx-large", + "fluid": { + "min": "10rem", + "max": "16.3rem" + } + } + ] + } + }, + "styles": { + "blocks": { + "core/comment-reply-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "fontStyle": "italic" + } + } + } + }, + "core/group": { + "border": { + "color": "var(--wp--preset--color--primary)" + } + }, + "core/navigation": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/post-author": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "fontStyle": "italic" + } + }, + "core/post-content": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "core/post-date": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "typography": { + "letterSpacing": "0.09rem", + "textTransform": "uppercase" + } + } + } + }, + "core/post-terms": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "fontStyle": "italic" + } + } + } + }, + "core/post-title": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + }, + "typography": { + "fontSize": "clamp(2.625rem, calc(2.625rem + ((1vw - 0.48rem) * 8.4135)), 3.25rem)" + } + }, + "core/query": { + "elements": { + "h3": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "700" + } + }, + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "core/separator": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "core/site-title": { + "border": { + "color": "var(--wp--preset--color--primary)", + "style": "solid", + "width": "0 0 2px 0" + }, + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + ":focus": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "textDecoration": "none" + } + }, + ":hover": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "textDecoration": "none" + } + } + } + }, + "typography": { + "letterSpacing": "0.09rem", + "textTransform": "uppercase" + } + } + }, + "color": { + "gradient": "var(--wp--preset--gradient--base-secondary-base) no-repeat" + }, + "elements": { + "button": { + "border": { + "radius": "99999px" + }, + "color": { + "gradient": "var(--wp--preset--gradient--tertiary-primary)", + "text": "var(--wp--preset--color--base)" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--primary)", + "gradient": "none", + "text": "var(--wp--preset--color--secondary)" + } + }, + ":focus": { + "color": { + "background": "var(--wp--preset--color--primary)", + "gradient": "none", + "text": "var(--wp--preset--color--secondary)" + } + }, + ":active": { + "color": { + "background": "var(--wp--preset--color--primary)", + "gradient": "none", + "text": "var(--wp--preset--color--secondary)" + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--base)" + } + } + }, + "heading": { + "typography": { + "letterSpacing": "-0.019rem" + } + }, + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/block-out.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/block-out.json new file mode 100644 index 0000000..4b09b8e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/block-out.json @@ -0,0 +1,245 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Block out", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#E2161D", + "#FF9C9C" + ], + "slug": "default-filter", + "name": "Default filter" + } + ], + "palette": [ + { + "color": "#ff5252", + "name": "Base", + "slug": "base" + }, + { + "color": "#252525", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#ffffff", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#ff2d34", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#ff7e7e", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "layout": { + "contentSize": "800px" + }, + "typography": { + "fontSizes": [ + { + "fluid": { + "max": "1rem", + "min": "0.875rem" + }, + "size": "1rem", + "slug": "small" + }, + { + "fluid": { + "max": "1.125rem", + "min": "1rem" + }, + "size": "1.125rem", + "slug": "medium" + }, + { + "fluid": false, + "size": "1.75rem", + "slug": "large" + }, + { + "fluid": false, + "size": "2.25rem", + "slug": "x-large" + }, + { + "fluid": { + "max": "7rem", + "min": "4.3rem" + }, + "size": "7rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/avatar": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/image": { + "border": { + "radius": "8px" + }, + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/navigation": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "core/post-content": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + }, + "h1": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + }, + "core/post-featured-image": { + "border": { + "radius": "8px" + }, + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/post-title": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "core/quote": { + "border": { + "width": "1px" + } + }, + "core/search": { + "border": { + "radius": "8px" + } + }, + "core/site-logo": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/site-title": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "spacing": { + "padding": { + "bottom": "var(--wp--preset--spacing--30)", + "top": "var(--wp--preset--spacing--30)" + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--xx-large)", + "lineHeight": "1.1", + "textTransform": "lowercase" + } + }, + "core/query": { + "elements": { + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + } + } + } + }, + "elements": { + "button": { + "border": { + "radius": "8px" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)", + "fontStyle": "italic", + "fontWeight": "400" + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + }, + "h1": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "h6": { + "typography": { + "fontWeight": "400" + } + }, + "heading": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)", + "fontStyle": "italic" + } + }, + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)", + "fontStyle": "italic", + "fontWeight": "400" + } + } + }, + "spacing": { + "padding": { + "bottom": "0px", + "top": "0px" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/canary.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/canary.json new file mode 100644 index 0000000..f8d8f80 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/canary.json @@ -0,0 +1,251 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Canary", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#000000", + "#ffffff" + ], + "slug": "default-filter", + "name": "Default filter" + } + ], + "palette": [ + { + "color": "#fdff85", + "name": "Base", + "slug": "base" + }, + { + "color": "#000000", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#000000", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#353535", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#ffffff", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "layout": { + "wideSize": "650px" + }, + "typography": { + "fontSizes": [ + { + "size": "0.75rem", + "slug": "small" + }, + { + "size": "1.125rem", + "slug": "medium" + }, + { + "size": "1.75rem", + "slug": "large" + }, + { + "size": "2.25rem", + "slug": "x-large" + }, + { + "size": "10rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/comments": { + "elements": { + "link": { + "typography": { + "textDecoration": "underline" + }, + ":hover": { + "typography": { + "textDecoration": "none" + } + } + } + } + }, + "core/comment-reply-link": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comments-title":{ + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/image": { + "border": { + "radius": "100px 0 0 0" + }, + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/navigation": { + "typography": { + "textTransform": "lowercase" + } + }, + "core/post-content": { + "elements": { + "link": { + "typography": { + "textDecoration": "underline" + }, + ":hover": { + "typography": { + "textDecoration": "none" + } + } + } + } + }, + "core/post-excerpt": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-featured-image": { + "border": { + "radius": "100px 0 0 0" + }, + "spacing": { + "margin": { + "bottom": "0px", + "left": "0px", + "right": "0px", + "top": "0px" + }, + "padding": { + "bottom": "0px", + "left": "0px", + "right": "0px", + "top": "0px" + } + } + }, + "core/post-title": { + "typography": { + "fontWeight": "700" + } + }, + "core/separator": { + "border": { + "width": "2px" + } + }, + "core/site-title": { + "typography": { + "fontWeight": "700", + "textTransform": "lowercase", + "fontSize": "var(--wp--preset--font-size--small)" + } + } + }, + "elements": { + "button": { + ":hover": { + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + "border": { + "color": "var(--wp--preset--color--contrast)", + "style": "solid", + "width": "2px" + } + }, + ":focus": { + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + "border": { + "color": "var(--wp--preset--color--contrast)", + "style": "solid", + "width": "2px" + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--base)" + } + }, + "border": { + "radius": "5px", + "color": "var(--wp--preset--color--contrast)", + "style": "solid", + "width": "2px" + }, + "color": { + "text": "var(--wp--preset--color--base)" + }, + "spacing": { + "padding": { + "bottom": "0.667em", + "left": "1.333em", + "right": "1.333em", + "top": "0.667em" + } + } + }, + "h1": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "h4": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "heading": { + "typography": { + "fontWeight": "700" + } + }, + "link": { + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)", + "fontSize": "var(--wp--preset--font-size--small)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/electric.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/electric.json new file mode 100644 index 0000000..077ca09 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/electric.json @@ -0,0 +1,100 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Electric", + "settings": { + "color": { + "palette": [ + { + "color": "#f3f3f1", + "name": "Base", + "slug": "base" + }, + { + "color": "#2500ff", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#f3f3f1", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#2500ff", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#f6f6f6", + "name": "Tertiary", + "slug": "tertiary" + } + ] + } + }, + "styles": { + "elements": { + "button": { + "border": { + "style": "solid", + "width": "2px", + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" + }, + "spacing": { + "padding": { + "top": ".667em", + "right": "1.333em", + "bottom": ".667em", + "left": "1.333em" + } + }, + ":active": { + "typography": { + "textDecoration": "underline dotted" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dotted" + } + }, + ":hover": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "style": "solid", + "width": "2px" + }, + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--base)" + } + } + }, + "link": { + ":focus": { + "typography": { + "textDecoration": "underline dotted" + } + }, + ":active": { + "typography": { + "textDecoration": "underline dotted" + } + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/grapes.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/grapes.json new file mode 100644 index 0000000..cf0c4b4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/grapes.json @@ -0,0 +1,97 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Grapes", + "settings": { + "color": { + "palette": [ + { + "color": "#E1E1C7", + "name": "Base", + "slug": "base" + }, + { + "color": "#000000", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#214F31", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#000000", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#F0EBD2", + "name": "Tertiary", + "slug": "tertiary" + } + ] + } + }, + "styles": { + "blocks": { + "core/post-comments": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline dashed" + } + } + } + } + }, + "core/post-date": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontStyle": "italic" + } + }, + "core/post-terms": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontStyle": "italic" + } + }, + "core/site-title": { + "typography": { + "textTransform": "lowercase" + } + } + }, + "elements": { + "button": { + "border": { + "radius": "9999px" + }, + "color": { + "background": "var(--wp--preset--color--primary)", + "text": "var(--wp--preset--color--base)" + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--base)" + } + } + }, + "heading": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "600" + } + }, + "link": { + ":hover": { + "typography": { + "textDecoration": "underline dashed" + } + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/marigold.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/marigold.json new file mode 100644 index 0000000..4ad7ef4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/marigold.json @@ -0,0 +1,311 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Marigold", + "settings": { + "color": { + "palette": [ + { + "color": "#F6F2EC", + "name": "Base", + "slug": "base" + }, + { + "color": "#21251F", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#5B4460", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#FCC263", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#E7A1A9", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "layout": { + "wideSize": "1200px" + }, + "spacing": { + "spacingSizes": [ + { + "size": "clamp(0.625rem, 0.434rem + 0.61vw, 0.938rem)", + "name": "1", + "slug": "30" + }, + { + "size": "clamp(1.25rem, 0.869rem + 1.22vw, 1.875rem)", + "name": "2", + "slug": "40" + }, + { + "size": "clamp(1.875rem, 1.303rem + 1.83vw, 2.813rem)", + "name": "3", + "slug": "50" + }, + { + "size": "clamp(2.5rem, 1.738rem + 2.44vw, 3.75rem)", + "name": "4", + "slug": "60" + }, + { + "size": "clamp(2.813rem, 1.098rem + 5.49vw, 5.625rem)", + "name": "5", + "slug": "70" + }, + { + "size": "clamp(3.75rem, 1.463rem + 7.32vw, 7.5rem)", + "name": "6", + "slug": "80" + } + ] + }, + "typography": { + "fontSizes": [ + { + "size": "clamp(0.875rem, 0.799rem + 0.24vw, 1rem)", + "name": "Tiny", + "slug": "tiny" + }, + { + "size": "clamp(1rem, 0.924rem + 0.24vw, 1.125rem)", + "slug": "small" + }, + { + "size": "clamp(1.125rem, 1.049rem + 0.24vw, 1.25rem)", + "name": "Normal", + "slug": "normal" + }, + { + "size": "clamp(1.25rem, 1.021rem + 0.73vw, 1.625rem)", + "slug": "medium" + }, + { + "size": "clamp(1.375rem, 1.07rem + 0.98vw, 1.875rem)", + "slug": "large" + }, + { + "size": "clamp(1.75rem, 1.369rem + 1.22vw, 2.375rem)", + "slug": "x-large" + }, + { + "size": "clamp(2.125rem, 1.706rem + 1.34vw, 2.813rem)", + "slug": "xx-large" + }, + { + "size": "clamp(2.5rem, 1.966rem + 1.71vw, 3.375rem)", + "name": "Huge", + "slug": "huge" + }, + { + "size": "clamp(3.375rem, 2.384rem + 3.17vw, 5rem)", + "name": "Gigantic", + "slug": "gigantic" + } + ] + } + }, + "styles": { + "blocks": { + "core/comment-author-name": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + } + }, + "core/query": { + "spacing": { + "padding": { + "left": "0", + "right": "0" + } + } + }, + "core/post-content": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "core/post-excerpt": { + "typography": { + "fontSize": "var(--wp--preset--font-size--normal)" + } + }, + "core/post-title": { + "elements": { + "link": { + "typography": { + "textDecoration": "none" + }, + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + }, + "spacing": { + "margin": { + "bottom": "var(--wp--preset--spacing--50)", + "top": "var(--wp--preset--spacing--50)" + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "600" + } + }, + "core/pullquote": { + "border": { + "width": "1px 0" + } + }, + "core/query-pagination": { + "elements": { + "link": { + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "400" + } + }, + "core/quote": { + "elements": { + "cite": { + "typography": { + "fontSize": "1.25rem" + } + } + }, + "typography": { + "fontSize": "1.625rem", + "lineHeight": "1.5" + } + }, + "core/site-title": { + "typography": { + "fontSize": "var(--wp--preset--font-size--normal)", + "textTransform": "lowercase" + } + } + }, + "elements": { + "h1": { + "typography": { + "fontSize": "var(--wp--preset--font-size--huge)", + "lineHeight": "1.1" + } + }, + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--xx-large)", + "lineHeight": "1.2" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)", + "lineHeight": "1.2" + } + }, + "h4": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "600" + } + }, + "h5": { + "typography": { + "fontStyle": "normal", + "fontWeight": "600", + "textTransform": "none" + } + }, + "h6": { + "typography": { + "fontSize": "var(--wp--preset--font-size--normal)", + "fontStyle": "normal", + "fontWeight": "600" + } + }, + "heading": { + "typography": { + "fontStyle": "italic" + } + }, + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + ":hover": { + "typography": { + "textDecoration": "none" + } + } + }, + "button": { + "border": { + "radius": "50px" + }, + "color": { + "background": "var(--wp--preset--color--secondary)" + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--normal)" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--tertiary)", + "text": "var(--wp--preset--color--contrast)" + } + }, + ":focus": { + "color": { + "background": "var(--wp--preset--color--primary)" + } + }, + ":active": { + "color": { + "background": "var(--wp--preset--color--primary)" + } + } + } + }, + "spacing": { + "blockGap": "2.5rem", + "padding": { + "bottom": "var(--wp--preset--spacing--50)", + "left": "var(--wp--preset--spacing--40)", + "right": "var(--wp--preset--spacing--40)", + "top": "var(--wp--preset--spacing--50)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontSize": "var(--wp--preset--font-size--normal)", + "lineHeight": "1.5" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/pilgrimage.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/pilgrimage.json new file mode 100644 index 0000000..be16add --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/pilgrimage.json @@ -0,0 +1,323 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Pilgrimage", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#222828", + "#9EF9FD" + ], + "slug": "default-filter", + "name": "Default filter" + } + ], + "gradients": [ + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--primary) 0%,var(--wp--preset--color--secondary) 100%)", + "name": "Primary to Secondary", + "slug": "primary-secondary" + }, + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--secondary) 0%,var(--wp--preset--color--primary) 100%)", + "name": "Secondary to Primary", + "slug": "secondary-primary" + }, + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--primary) 0%,var(--wp--preset--color--tertiary) 100%)", + "name": "Tertiary to Secondary", + "slug": "tertiary-secondary" + }, + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--tertiary) 0%,var(--wp--preset--color--primary) 100%)", + "name": "Tertiary to Primary", + "slug": "tertiary-primary" + }, + { + "gradient": "linear-gradient(180deg, var(--wp--preset--color--base) 0%,var(--wp--preset--color--primary) 350%)", + "name": "Base to Primary", + "slug": "base-primary" + }, + { + "gradient": "radial-gradient(circle at 5px 5px,#0c0d0d70 2px,#ffffff00 0px,#ffffff00 0px) 0 0 / 8px 8px, linear-gradient(180deg, var(--wp--preset--color--base) 0%,#000000 200%)", + "name": "Dots", + "slug": "dots" + } + ], + "palette": [ + { + "color": "#222828", + "name": "Base", + "slug": "base" + }, + { + "color": "#ffffff", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#53ED85", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#9EF9FD", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#D8E202", + "name": "Tertiary", + "slug": "tertiary" + } + ] + } + }, + "styles": { + "blocks": { + "core/comment-author-name": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--tertiary)" + } + } + } + } + }, + "core/comment-date": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--tertiary)" + }, + "typography": { + "textDecoration": "underline" + } + } + } + } + }, + "core/comment-edit-link": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--tertiary)" + } + } + } + } + }, + "core/comments-pagination": { + "elements": { + "link": { + "typography": { + "textDecoration": "underline" + } + } + } + }, + "core/image": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/navigation": { + "elements": { + "link": { + ":active": { + "typography": { + "textDecoration": "underline dashed" + } + }, + "color": { + "text": "var(--wp--preset--color--primary)" + }, + "typography": { + "textDecoration": "underline" + } + } + } + }, + "core/paragraph": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "link": { + ":hover": { + "color": { + "text": "var(--wp--preset--color--tertiary)" + } + } + } + } + }, + "core/post-content": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "core/post-date": { + "elements": { + "link": { + "typography": { + "textDecoration": "none", + "fontStyle": "italic" + } + } + } + }, + "core/post-featured-image": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/post-title": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--tertiary)" + }, + "typography": { + "textDecoration": "underline" + } + }, + "typography": { + "textDecoration": "underline" + } + } + } + }, + "core/query-pagination": { + "elements": { + "link": { + "typography": { + "textDecoration": "underline" + } + } + } + }, + "core/separator": { + "color": { + "text": "var(--wp--preset--color--secondary)" + } + }, + "core/site-title": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + }, + "typography": { + "fontStyle": "italic", + "fontWeight": "700" + } + } + }, + "color": { + "gradient": "var(--wp--preset--gradient--dots)" + }, + "elements": { + "button": { + ":active": { + "color": { + "background": "var(--wp--preset--color--secondary)", + "gradient": "none" + } + }, + ":focus": { + "color": { + "gradient": "var(--wp--preset--gradient--secondary-primary)" + } + }, + ":hover": { + "color": { + "gradient": "var(--wp--preset--gradient--secondary-primary)" + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--base)" + } + }, + "border": { + "radius": "5px" + }, + "color": { + "gradient": "var(--wp--preset--gradient--primary-secondary)", + "text": "var(--wp--preset--color--base)" + } + }, + "h1": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + }, + "h2": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + }, + "h3": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "h4": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "h5": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "h6": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "heading": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + }, + ":hover": { + "color": { + "text":"var(--wp--preset--color--tertiary)" + } + }, + ":focus": { + "color": { + "text":"var(--wp--preset--color--tertiary)" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--tertiary)" + } + } + } + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/pitch.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/pitch.json new file mode 100644 index 0000000..583e28e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/pitch.json @@ -0,0 +1,242 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Pitch", + "settings": { + "color": { + "palette": [ + { + "color": "#202124", + "name": "Base", + "slug": "base" + }, + { + "color": "#e8eaed", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#e3cbc0", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#876C3A", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#303134", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "layout": { + "contentSize": "min(640px, 90vw)", + "wideSize": "90vw" + }, + "spacing": { + "spacingScale": { + "steps": 7 + }, + "spacingSizes": [ + { + "size": "calc(8px + 1.5625vw)", + "slug": "20", + "name": "1" + }, + { + "size": "calc(12px + 1.5625vw)", + "slug": "30", + "name": "2" + }, + { + "size": "calc(16px + 1.5625vw)", + "slug": "40", + "name": "3" + }, + { + "size": "calc(20px + 1.5625vw)", + "slug": "50", + "name": "4" + }, + { + "size": "calc(24px + 1.5625vw)", + "slug": "60", + "name": "5" + }, + { + "size": "calc(28px + 1.5625vw)", + "slug": "70", + "name": "6" + }, + { + "size": "calc(32px + 1.5625vw)", + "slug": "80", + "name": "7" + } + ] + }, + "typography": { + "fontSizes": [ + { + "size": "0.85rem", + "fluid": { + "min": "0.85rem", + "max": "1rem" + }, + "slug": "small", + "name": "small" + }, + { + "size": "1.1rem", + "fluid": { + "min": "1.1rem", + "max": "1.4rem" + }, + "slug": "medium", + "name": "Medium" + }, + { + "size": "1.999rem", + "fluid": { + "min": "1.999rem", + "max": "2.827rem" + }, + "slug": "large", + "name": "Large" + }, + { + "size": "2.827rem", + "fluid": { + "min": "2.827rem", + "max": "3.998rem" + }, + "slug": "x-large", + "name": "Extra Large" + }, + { + "size": "3.2rem", + "fluid": { + "min": "3.2rem", + "max": "5.2rem" + }, + "slug": "xx-large", + "name": "2X Large" + } + ] + } + }, + "styles": { + "blocks": { + "core/separator": { + "border": { + "color":"var(--wp--preset--color--tertiary)", + "width": "2px" + } + }, + "core/site-title": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "fontStyle": "normal", + "fontWeight": "600" + } + } + }, + "elements": { + "button": { + "border": { + "radius": "0", + "style": "solid", + "width": "2px", + "color": "var(--wp--preset--color--primary)" + }, + "color": { + "background": "var(--wp--preset--color--primary)", + "text": "var(--wp--preset--color--base)" + }, + "spacing": { + "padding": { + "top": "min(1.125rem, 3vw) !important", + "right": "min(2.125rem, 5vw) !important", + "bottom": "min(1.125rem, 3vw) !important", + "left": "min(2.125rem, 5vw) !important" + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "600", + "textTransform": "uppercase", + "letterSpacing": "0.01em" + }, + ":hover": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--tertiary)" + } + }, + ":focus": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--tertiary)" + } + }, + ":active": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--tertiary)" + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--base)" + } + } + }, + "h1": { + "typography": { + "fontSize": "var(--wp--preset--font-size--xx-large)", + "lineHeight": "1.1" + } + }, + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)", + "lineHeight": "1.1" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "heading": { + "typography": { + "fontWeight": "500" + } + } + }, + "spacing": { + "blockGap": "var(--wp--preset--spacing--40)", + "padding": { + "right": "var(--wp--preset--spacing--70)", + "left": "var(--wp--preset--spacing--70)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontSize": "var(--wp--preset--font-size--medium)", + "lineHeight": "1.7" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/sherbet.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/sherbet.json new file mode 100644 index 0000000..d6e2039 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/sherbet.json @@ -0,0 +1,243 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Sherbet", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#FF99FF", + "#FFFF99", + "#99FFFF" + ], + "name": "Default filter", + "slug": "default-filter" + } + ], + "gradients": [ + { + "gradient": "linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 50%, var(--wp--preset--color--tertiary) 100%)", + "name": "Primary to Secondary to Tertiary", + "slug": "primary-secondary-tertiary" + }, + { + "gradient": "linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 50%, var(--wp--preset--color--tertiary) 100%) fixed", + "name": "Primary to Secondary to Tertiary Fixed", + "slug": "primary-secondary-tertiary-fixed" + }, + { + "gradient": "linear-gradient(135deg, var(--wp--preset--color--tertiary) 0%, var(--wp--preset--color--secondary) 50%, var(--wp--preset--color--primary) 100%) fixed", + "name": "Tertiary to Secondary to Primary Fixed", + "slug": "tertiary-secondary-primary-fixed" + } + ], + "palette": [ + { + "color": "#FFFFFF", + "name": "Base", + "slug": "base" + }, + { + "color": "#000000", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#FFCCFF", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#FFFFCC", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#CCFFFF", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "typography": { + "fontSizes": [ + { + "fluid": false, + "size": "0.75rem", + "slug": "x-small" + }, + { + "fluid": { + "min": "0.875rem", + "max": "1rem" + }, + "size": "1rem", + "slug": "small" + }, + { + "fluid": { + "min": "1rem", + "max": "1.125rem" + }, + "size": "1.125rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.5rem", + "max": "1.75rem" + }, + "size": "1.75rem", + "slug": "large" + }, + { + "fluid": { + "min": "2rem", + "max": "2.25rem" + }, + "size": "2.25rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "2.5rem", + "max": "2.75rem" + }, + "size": "2.75rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/comments": { + "elements": { + "link": { + ":active": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + } + }, + "core/comment-author-name": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "textTransform": "initial" + } + }, + "core/comment-content": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "textTransform": "initial" + } + }, + "core/navigation": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "500", + "textTransform": "uppercase" + } + }, + "core/post-content": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + } + } + }, + "core/post-date": { + "typography": { + "textTransform": "uppercase" + } + }, + "core/post-featured-image": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + }, + "border": { + "color": "var(--wp--preset--color--tertiary)", + "style": "solid" + } + }, + "core/post-title": { + "typography": { + "fontWeight": "500", + "textTransform": "uppercase" + } + }, + "core/site-title": { + "typography": { + "fontWeight": "500" + } + }, + "core/template-part": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-small)", + "fontWeight": "400", + "textTransform": "uppercase" + } + } + }, + "color": { + "gradient": "var(--wp--preset--gradient--primary-secondary-tertiary)" + }, + "elements": { + "button": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "radius": "99999px", + "style": "solid", + "width": "2px" + }, + "color": { + "background": "var(--wp--preset--color--base)", + "gradient": "var(--wp--preset--gradient--primary-secondary-tertiary-fixed)", + "text": "var(--wp--preset--color--contrast)" + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--x-small)", + "fontWeight": "400", + "textTransform": "uppercase" + }, + ":hover": { + "color": { + "gradient": "var(--wp--preset--gradient--tertiary-secondary-primary-fixed)", + "text": "var(--wp--preset--color--contrast)" + } + }, + ":focus": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "gradient": "none" + } + }, + ":active": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "gradient": "none" + } + } + }, + "heading": { + "typography": { + "fontWeight": "500" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontFamily": "var(--wp--preset--font-family--inter)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/styles/whisper.json b/assets/wordpress/wp-content/themes/twentytwentythree/styles/whisper.json new file mode 100644 index 0000000..3fd195e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/styles/whisper.json @@ -0,0 +1,550 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "title": "Whisper", + "settings": { + "color": { + "palette": [ + { + "color": "#E5E7F2", + "name": "Base", + "slug": "base" + }, + { + "color": "#47484B", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#B50B3E", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#0B0033", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#F9F9FB", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "layout": { + "contentSize": "710px", + "wideSize": "1200px" + }, + "typography": { + "fontSizes": [ + { + "fluid": { + "min": "0.875rem", + "max": "1rem" + }, + "size": "1rem", + "slug": "small" + }, + { + "fluid": { + "min": "1rem", + "max": "1.187rem" + }, + "size": "1.187rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.187rem", + "max": "1.3125rem" + }, + "size": "1.3125rem", + "slug": "large" + }, + { + "fluid": { + "min": "1.562rem", + "max": "2rem" + }, + "size": "2rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "3.5rem", + "max": "5.7rem" + }, + "size": "5.7rem", + "slug": "xx-large" + } + ] + } + }, + "styles": { + "blocks": { + "core/navigation": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "link": { + "border": { + "bottom": { + "color": "transparent", + "style": "solid", + "width": "0.2ch" + } + }, + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + ":hover": { + "border": { + "color": "var(--wp--preset--color--primary)" + }, + "color": { + "background": "transparent", + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "typography": { + "textDecoration": "none" + } + }, + ":active": { + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "core/navigation-submenu": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + "core/post-content": { + "elements": { + "link": { + ":hover": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--tertiary)" + }, + "typography": { + "textDecoration": "none" + } + } + } + } + }, + "core/post-date": { + "elements": { + "link": { + ":hover": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--tertiary)" + }, + "typography": { + "textDecoration": "none" + } + } + } + } + }, + "core/post-title": { + "elements": { + "link": { + "border": { + "width": "0 !important" + }, + ":hover": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + ":focus": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + } + } + }, + "core/pullquote": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "style": "double", + "width": "6px" + }, + "color": { + "text": "var(--wp--preset--color--secondary)" + } + }, + "core/quote": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "style": "double", + "width": "0 0 0 6px" + }, + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "spacing": { + "margin": { + "left": "var(--wp--preset--spacing--30)" + }, + "padding": { + "left": "var(--wp--preset--spacing--30)" + } + } + }, + "core/query-pagination": { + "elements": { + "link": { + ":hover": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "background": "var(--wp--preset--color--tertiary)" + }, + "typography": { + "textDecoration": "none" + } + }, + ":active": { + "border": { + "color": "var(--wp--preset--color--base)", + "width": "0 0 2px 0" + } + } + } + } + }, + "core/separator": { + "border": { + "color": "var(--wp--preset--color--contrast)", + "style": "double", + "width": "6px 0 0 0" + } + }, + "core/site-title": { + "elements": { + "link": { + "border": { + "color": "transparent" + }, + "color": { + "text": "var(--wp--preset--color--primary)" + }, + ":hover": { + "border": { + "color": "var(--wp--preset--color--primary)" + }, + "color": { + "background": "transparent" + }, + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "typography": { + "textDecoration": "none" + } + }, + ":active": { + "border": { + "color": "var(--wp--preset--color--primary)" + }, + "color": { + "background": "transparent" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "700", + "letterSpacing": "-0.01em", + "lineHeight": "1.4", + "textTransform": "capitalize" + } + }, + "core/comment-author-name":{ + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "typography": { + "textDecoration": "none" + } + } + } + } + }, + "core/comment-date": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "typography": { + "textDecoration": "none" + } + } + } + } + }, + "core/comment-edit-link": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "typography": { + "textDecoration": "none" + } + } + } + } + } + }, + "elements": { + "button": { + "border": { + "color": "var(--wp--preset--color--primary)", + "radius": "10px", + "style": "solid", + "width": "2px 2px 6px 2px !important" + }, + "color": { + "background": "transparent", + "text": "var(--wp--preset--color--primary)" + }, + "spacing": { + "padding": { + "top": "min(1rem, 3vw) !important", + "right": "min(2.75rem, 6vw) !important", + "bottom": "min(1rem, 3vw) !important", + "left": "min(2.75rem, 6vw) !important" + } + }, + "typography": { + "fontWeight": "700", + "letterSpacing": "1px", + "textTransform": "uppercase" + }, + ":hover": { + "border": { + "color": "var(--wp--preset--color--secondary)", + "width": "2px 2px 4px 2px !important" + }, + "color": { + "background": "var(--wp--preset--color--tertiary)", + "text": "var(--wp--preset--color--secondary)" + }, + "spacing": { + "padding": { + "bottom": "min(calc(1rem + 2px), 3vw) !important" + } + } + }, + ":focus": { + "border": { + "color": "var(--wp--preset--color--secondary)", + "style": "dashed dashed double", + "width": "2px 2px 4px 2px !important" + }, + "color": { + "background": "var(--wp--preset--color--tertiary)", + "text": "var(--wp--preset--color--secondary)" + }, + "spacing": { + "padding": { + "bottom": "min(calc(1rem + 2px), 3vw) !important" + } + } + }, + ":active": { + "border": { + "color": "var(--wp--preset--color--secondary)", + "width": "2px 2px 4px 2px !important" + }, + "color": { + "background": "var(--wp--preset--color--tertiary)", + "text": "var(--wp--preset--color--secondary)" + }, + "spacing": { + "padding": { + "bottom": "min(calc(1rem + 2px), 3vw) !important" + } + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + }, + "cite": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)" + } + }, + "h1": { + "typography": { + "fontSize": "clamp(4.21rem, 1.43vw + 3.85rem, 5rem)", + "fontWeight": "300", + "letterSpacing": "-0.01em" + } + }, + "h2": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "fontSize": "clamp(3.16rem, 1.08vw + 2.89rem, 3.75rem)", + "fontWeight": "400", + "letterSpacing": "-0.01em" + } + }, + "h3": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "fontSize": "clamp(2.37rem, 0.81vw + 2.17rem, 2.81rem)", + "fontWeight": "500" + } + }, + "h4": { + "typography": { + "fontSize": "clamp(1.78rem, 0.61vw + 1.63rem, 2.11rem)", + "fontWeight": "600" + } + }, + "h5": { + "typography": { + "fontSize": "clamp(1.33rem, 0.45vw + 1.22rem, 1.58rem)", + "fontWeight": "700", + "letterSpacing": "1px" + } + }, + "h6": { + "typography": { + "fontSize": "clamp(1rem, 0.34vw + 0.91rem, 1.19rem)", + "fontWeight": "900", + "letterSpacing": "2px" + } + }, + "heading": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)" + } + }, + "link": { + "border": { + "color": "var(--wp--preset--color--primary)", + "style": "solid", + "width": "0 0 2px 0" + }, + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + ":hover": { + "border": { + "color": "var(--wp--preset--color--contrast)" + }, + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "border": { + "style": "dashed" + }, + "typography": { + "textDecoration": "none" + } + }, + ":active": { + "border": { + "width": "0" + }, + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "border": { + "color": "var(--wp--preset--color--tertiary)", + "style": "solid", + "width": "max(1vw, 0.5rem)" + }, + "spacing": { + "padding": { + "top": "var(--wp--preset--spacing--40)", + "right": "var(--wp--preset--spacing--30)", + "bottom": "var(--wp--preset--spacing--40)", + "left": "var(--wp--preset--spacing--30)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/404.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/404.html new file mode 100644 index 0000000..404842c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/404.html @@ -0,0 +1,9 @@ + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/archive.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/archive.html new file mode 100644 index 0000000..74a8a5c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/archive.html @@ -0,0 +1,29 @@ + + + +
    + + + +
    + + + + + + + + + + + + + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/blank.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/blank.html new file mode 100644 index 0000000..3d3bd7c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/blank.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/blog-alternative.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/blog-alternative.html new file mode 100644 index 0000000..cd6c89b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/blog-alternative.html @@ -0,0 +1,29 @@ + + + +
    + +
    + + +
    + +
    + +
    + + + +
    + +
    + +
    + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/home.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/home.html new file mode 100644 index 0000000..9b84d2b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/home.html @@ -0,0 +1,37 @@ + + + +
    + +

    Mindblown: a blog about philosophy.

    + + + +
    + + + + + + + + + + + + + + + +
    + + + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/index.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/index.html new file mode 100644 index 0000000..bed3d1e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/index.html @@ -0,0 +1,27 @@ + + + +
    + +
    + + + + + + + + + + + + + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/page.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/page.html new file mode 100644 index 0000000..c9408fc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/page.html @@ -0,0 +1,17 @@ + + + +
    + +
    + + +
    + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/search.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/search.html new file mode 100644 index 0000000..c80325d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/search.html @@ -0,0 +1,33 @@ + + + +
    + + + +
    + + + + + + + + + + + + + + + + + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/templates/single.html b/assets/wordpress/wp-content/themes/twentytwentythree/templates/single.html new file mode 100644 index 0000000..33d4dd4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/templates/single.html @@ -0,0 +1,18 @@ + + + +
    + +
    + + +
    + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentythree/theme.json b/assets/wordpress/wp-content/themes/twentytwentythree/theme.json new file mode 100644 index 0000000..32eb7ed --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentythree/theme.json @@ -0,0 +1,741 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "customTemplates": [ + { + "name": "blank", + "postTypes": [ + "page", + "post" + ], + "title": "Blank" + }, + { + "name": "blog-alternative", + "postTypes": [ + "page" + ], + "title": "Blog (Alternative)" + }, + { + "name": "404", + "postTypes": [ + "page" + ], + "title": "404" + } + ], + "settings": { + "appearanceTools": true, + "color": { + "palette": [ + { + "color": "#ffffff", + "name": "Base", + "slug": "base" + }, + { + "color": "#000000", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#9DFF20", + "name": "Primary", + "slug": "primary" + }, + { + "color": "#345C00", + "name": "Secondary", + "slug": "secondary" + }, + { + "color": "#F6F6F6", + "name": "Tertiary", + "slug": "tertiary" + } + ] + }, + "layout": { + "contentSize": "650px", + "wideSize": "1200px" + }, + "spacing": { + "spacingScale": { + "steps": 0 + }, + "spacingSizes": [ + { + "size": "clamp(1.5rem, 5vw, 2rem)", + "slug": "30", + "name": "1" + }, + { + "size": "clamp(1.8rem, 1.8rem + ((1vw - 0.48rem) * 2.885), 3rem)", + "slug": "40", + "name": "2" + }, + { + "size": "clamp(2.5rem, 8vw, 4.5rem)", + "slug": "50", + "name": "3" + }, + { + "size": "clamp(3.75rem, 10vw, 7rem)", + "slug": "60", + "name": "4" + }, + { + "size": "clamp(5rem, 5.25rem + ((1vw - 0.48rem) * 9.096), 8rem)", + "slug": "70", + "name": "5" + }, + { + "size": "clamp(7rem, 14vw, 11rem)", + "slug": "80", + "name": "6" + } + ], + "units": [ + "%", + "px", + "em", + "rem", + "vh", + "vw" + ] + }, + "typography": { + "dropCap": false, + "fluid": true, + "fontFamilies": [ + { + "fontFace": [ + { + "fontFamily": "DM Sans", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "400", + "src": [ + "file:./assets/fonts/dm-sans/DMSans-Regular.woff2" + ] + }, + { + "fontFamily": "DM Sans", + "fontStretch": "normal", + "fontStyle": "italic", + "fontWeight": "400", + "src": [ + "file:./assets/fonts/dm-sans/DMSans-Regular-Italic.woff2" + ] + }, + { + "fontFamily": "DM Sans", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "700", + "src": [ + "file:./assets/fonts/dm-sans/DMSans-Bold.woff2" + ] + }, + { + "fontFamily": "DM Sans", + "fontStretch": "normal", + "fontStyle": "italic", + "fontWeight": "700", + "src": [ + "file:./assets/fonts/dm-sans/DMSans-Bold-Italic.woff2" + ] + } + ], + "fontFamily": "\"DM Sans\", sans-serif", + "name": "DM Sans", + "slug": "dm-sans" + }, + { + "fontFace": [ + { + "fontDisplay": "block", + "fontFamily": "IBM Plex Mono", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "300", + "src": [ + "file:./assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2" + ] + }, + { + "fontDisplay": "block", + "fontFamily": "IBM Plex Mono", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "400", + "src": [ + "file:./assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2" + ] + }, + { + "fontDisplay": "block", + "fontFamily": "IBM Plex Mono", + "fontStretch": "normal", + "fontStyle": "italic", + "fontWeight": "400", + "src": [ + "file:./assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2" + ] + }, + { + "fontDisplay": "block", + "fontFamily": "IBM Plex Mono", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "700", + "src": [ + "file:./assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2" + ] + } + ], + "fontFamily": "'IBM Plex Mono', monospace", + "name": "IBM Plex Mono", + "slug": "ibm-plex-mono" + }, + { + "fontFace": [ + { + "fontFamily": "Inter", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "200 900", + "src": [ + "file:./assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf" + ] + } + ], + "fontFamily": "\"Inter\", sans-serif", + "name": "Inter", + "slug": "inter" + }, + { + "fontFamily": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif", + "name": "System Font", + "slug": "system-font" + }, + { + "fontFace": [ + { + "fontFamily": "Source Serif Pro", + "fontStretch": "normal", + "fontStyle": "normal", + "fontWeight": "200 900", + "src": [ + "file:./assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2" + ] + }, + { + "fontFamily": "Source Serif Pro", + "fontStretch": "normal", + "fontStyle": "italic", + "fontWeight": "200 900", + "src": [ + "file:./assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2" + ] + } + ], + "fontFamily": "\"Source Serif Pro\", serif", + "name": "Source Serif Pro", + "slug": "source-serif-pro" + } + ], + "fontSizes": [ + { + "fluid": { + "min": "0.875rem", + "max": "1rem" + }, + "size": "1rem", + "slug": "small" + }, + { + "fluid": { + "min": "1rem", + "max": "1.125rem" + }, + "size": "1.125rem", + "slug": "medium" + }, + { + "fluid": { + "min": "1.75rem", + "max": "1.875rem" + }, + "size": "1.75rem", + "slug": "large" + }, + { + "fluid": false, + "size": "2.25rem", + "slug": "x-large" + }, + { + "fluid": { + "min": "6.1rem", + "max": "10rem" + }, + "size": "10rem", + "slug": "xx-large" + } + ] + }, + "useRootPaddingAwareAlignments": true + }, + "styles": { + "blocks": { + "core/navigation": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dashed" + } + }, + ":active": { + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-author": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-content": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--secondary)" + } + } + } + }, + "core/post-excerpt": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/post-date": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "400" + }, + "elements": { + "link": { + "typography": { + "textDecoration": "none" + }, + ":hover": { + "typography": { + "textDecoration": "underline" + } + } + } + } + }, + "core/post-terms": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-title": { + "spacing": { + "margin": { + "bottom": "1.25rem", + "top": "1.25rem" + } + }, + "typography": { + "fontWeight": "400" + }, + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dashed" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + } + }, + "core/comments-title":{ + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + }, + "spacing": { + "margin": { + "bottom": "var(--wp--preset--spacing--40)" + } + } + }, + "core/comment-author-name": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dashed" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + } + }, + "core/comment-date": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + }, + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dashed" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + } + }, + "core/comment-edit-link": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comment-reply-link": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comments-pagination": { + "spacing": { + "margin": { + "top": "var(--wp--preset--spacing--40)" + } + }, + "elements": { + "link": { + "typography": { + "textDecoration": "none" + } + } + } + }, + "core/pullquote": { + "border": { + "style": "solid", + "width": "1px 0" + }, + "elements": { + "cite": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal", + "textTransform": "none" + } + } + }, + "typography": { + "lineHeight": "1.3" + }, + "spacing": { + "margin": { + "bottom": "var(--wp--preset--spacing--40) !important", + "top": "var(--wp--preset--spacing--40) !important" + } + } + }, + "core/query": { + "elements": { + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)" + } + } + } + }, + "core/query-pagination": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "400" + }, + "elements": { + "link": { + "typography": { + "textDecoration": "none" + }, + ":hover": { + "typography": { + "textDecoration": "underline" + } + } + } + } + }, + "core/quote": { + "border": { + "left": { + "color": "inherit", + "style": "solid", + "width": "1px" + } + }, + "elements": { + "cite": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal" + } + } + }, + "spacing": { + "padding": { + "left": "var(--wp--preset--spacing--30)", + "right": "var(--wp--preset--spacing--30)" + } + } + }, + "core/site-title": { + "elements": { + "link": { + ":hover": { + "typography": { + "textDecoration": "underline" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dashed" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "none" + } + } + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "fontWeight": "normal", + "lineHeight": "1.4" + } + }, + "core/separator": { + "css": " &:not(.is-style-wide):not(.is-style-dots):not(.alignwide):not(.alignfull){width: 100px}" + } + }, + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "button": { + "border": { + "radius": "0" + }, + "color": { + "background": "var(--wp--preset--color--primary)", + "text": "var(--wp--preset--color--contrast)" + }, + ":hover": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" + } + }, + ":focus": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" + } + }, + ":active": { + "color": { + "background": "var(--wp--preset--color--secondary)", + "text": "var(--wp--preset--color--base)" + } + }, + ":visited": { + "color": { + "text": "var(--wp--preset--color--contrast)" + } + } + }, + "h1": { + "typography": { + "fontSize": "3.625rem", + "lineHeight": "1.2" + } + }, + "h2": { + "typography": { + "fontSize": "clamp(2.625rem, calc(2.625rem + ((1vw - 0.48rem) * 8.4135)), 3.25rem)", + "lineHeight": "1.2" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)" + } + }, + "h4": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "h5": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "fontWeight": "700", + "textTransform": "uppercase" + } + }, + "h6": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "textTransform": "uppercase" + } + }, + "heading": { + "typography": { + "fontWeight": "400", + "lineHeight": "1.4" + } + }, + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + ":hover": { + "typography": { + "textDecoration": "none" + } + }, + ":focus": { + "typography": { + "textDecoration": "underline dashed" + } + }, + ":active": { + "color": { + "text": "var(--wp--preset--color--secondary)" + }, + "typography": { + "textDecoration": "none" + } + }, + "typography": { + "textDecoration": "underline" + } + } + }, + "spacing": { + "blockGap": "1.5rem", + "padding": { + "top": "var(--wp--preset--spacing--40)", + "right": "var(--wp--preset--spacing--30)", + "bottom": "var(--wp--preset--spacing--40)", + "left": "var(--wp--preset--spacing--30)" + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--system-font)", + "fontSize": "var(--wp--preset--font-size--medium)", + "lineHeight": "1.6" + } + }, + "templateParts": [ + { + "area": "header", + "name": "header", + "title": "Header" + }, + { + "area": "footer", + "name": "footer", + "title": "Footer" + }, + { + "area": "uncategorized", + "name": "comments", + "title": "Comments Template Part" + }, + { + "area": "uncategorized", + "name": "post-meta", + "title": "Post Meta" + } + ] +} diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2 new file mode 100644 index 0000000..2387849 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2 new file mode 100644 index 0000000..4cbd4c3 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2 new file mode 100644 index 0000000..28701e6 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2 new file mode 100644 index 0000000..3b74d30 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf new file mode 100644 index 0000000..32bc5df Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf new file mode 100644 index 0000000..8c458fb Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Italic.ttf b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Italic.ttf new file mode 100644 index 0000000..d6655b8 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Italic.ttf differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf new file mode 100644 index 0000000..40c9bfd Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt new file mode 100644 index 0000000..02d522f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt @@ -0,0 +1,94 @@ +Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com). Copyright 2019 Google LLC. +Copyright 2014-2018 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. Copyright 2019 Google LLC. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Bold.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Bold.woff2 new file mode 100644 index 0000000..9821ed3 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Bold.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-BoldItalic.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-BoldItalic.woff2 new file mode 100644 index 0000000..d033d12 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-BoldItalic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Text.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Text.woff2 new file mode 100644 index 0000000..810a4f6 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Text.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2 new file mode 100644 index 0000000..c531b56 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2 new file mode 100644 index 0000000..68969ae Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2 new file mode 100644 index 0000000..8dc0570 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2 new file mode 100644 index 0000000..b83ec18 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2 new file mode 100644 index 0000000..8953e46 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt new file mode 100644 index 0000000..01497cc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/inter/Inter.ttf b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/inter/Inter.ttf new file mode 100644 index 0000000..1cb674b Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/inter/Inter.ttf differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/inter/LICENSE.txt b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/inter/LICENSE.txt new file mode 100644 index 0000000..ff80f8c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/inter/LICENSE.txt @@ -0,0 +1,94 @@ +Copyright (c) 2016-2020 The Inter Project Authors. +"Inter" is trademark of Rasmus Andersson. +https://github.com/rsms/inter + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION AND CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md new file mode 100644 index 0000000..7cd3e74 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md @@ -0,0 +1,93 @@ +Copyright 2014 - 2021 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + +5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 new file mode 100644 index 0000000..2387849 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 new file mode 100644 index 0000000..4cbd4c3 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 new file mode 100644 index 0000000..28701e6 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 new file mode 100644 index 0000000..3b74d30 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg new file mode 100644 index 0000000..15194fe Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg new file mode 100644 index 0000000..7f90926 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg new file mode 100644 index 0000000..86f6265 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg new file mode 100644 index 0000000..d854f6d Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/divider-black.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/divider-black.png new file mode 100644 index 0000000..bfaafd7 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/divider-black.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/divider-white.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/divider-white.png new file mode 100644 index 0000000..0c045e5 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/divider-white.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/ducks.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/ducks.jpg new file mode 100644 index 0000000..ff8c3a2 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/ducks.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg new file mode 100644 index 0000000..f2b0c1d Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg new file mode 100644 index 0000000..78df7e7 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg new file mode 100644 index 0000000..ffca803 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg new file mode 100644 index 0000000..2811480 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png new file mode 100644 index 0000000..e89c086 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png new file mode 100644 index 0000000..417fed1 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png new file mode 100644 index 0000000..4f6c2e3 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png new file mode 100644 index 0000000..88892ea Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png new file mode 100644 index 0000000..283c38c Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg new file mode 100644 index 0000000..308cadc Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/assets/videos/birds.mp4 b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/videos/birds.mp4 new file mode 100644 index 0000000..2872b52 Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/assets/videos/birds.mp4 differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/functions.php b/assets/wordpress/wp-content/themes/twentytwentytwo/functions.php new file mode 100644 index 0000000..cd994be --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/functions.php @@ -0,0 +1,65 @@ +get( 'Version' ); + + $version_string = is_string( $theme_version ) ? $theme_version : false; + wp_register_style( + 'twentytwentytwo-style', + get_template_directory_uri() . '/style.css', + array(), + $version_string + ); + + // Enqueue theme stylesheet. + wp_enqueue_style( 'twentytwentytwo-style' ); + } + +endif; + +add_action( 'wp_enqueue_scripts', 'twentytwentytwo_styles' ); + +// Add block patterns +require get_template_directory() . '/inc/block-patterns.php'; diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/block-patterns.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/block-patterns.php new file mode 100644 index 0000000..f47e26e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/block-patterns.php @@ -0,0 +1,135 @@ + array( 'label' => __( 'Featured', 'twentytwentytwo' ) ), + 'footer' => array( 'label' => __( 'Footers', 'twentytwentytwo' ) ), + 'header' => array( 'label' => __( 'Headers', 'twentytwentytwo' ) ), + 'query' => array( 'label' => __( 'Query', 'twentytwentytwo' ) ), + 'twentytwentytwo_pages' => array( 'label' => __( 'Pages', 'twentytwentytwo' ) ), + ); + + /** + * Filters the theme block pattern categories. + * + * @since Twenty Twenty-Two 1.0 + * + * @param array[] $block_pattern_categories { + * An associative array of block pattern categories, keyed by category name. + * + * @type array[] $properties { + * An array of block category properties. + * + * @type string $label A human-readable label for the pattern category. + * } + * } + */ + $block_pattern_categories = apply_filters( 'twentytwentytwo_block_pattern_categories', $block_pattern_categories ); + + foreach ( $block_pattern_categories as $name => $properties ) { + if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( $name ) ) { + register_block_pattern_category( $name, $properties ); + } + } + + $block_patterns = array( + 'footer-default', + 'footer-dark', + 'footer-logo', + 'footer-navigation', + 'footer-title-tagline-social', + 'footer-social-copyright', + 'footer-navigation-copyright', + 'footer-about-title-logo', + 'footer-query-title-citation', + 'footer-query-images-title-citation', + 'footer-blog', + 'general-subscribe', + 'general-featured-posts', + 'general-layered-images-with-duotone', + 'general-wide-image-intro-buttons', + 'general-large-list-names', + 'general-video-header-details', + 'general-list-events', + 'general-two-images-text', + 'general-image-with-caption', + 'general-video-trailer', + 'general-pricing-table', + 'general-divider-light', + 'general-divider-dark', + 'header-default', + 'header-large-dark', + 'header-small-dark', + 'header-image-background', + 'header-image-background-overlay', + 'header-with-tagline', + 'header-text-only-green-background', + 'header-text-only-salmon-background', + 'header-title-and-button', + 'header-text-only-with-tagline-black-background', + 'header-logo-navigation-gray-background', + 'header-logo-navigation-social-black-background', + 'header-title-navigation-social', + 'header-logo-navigation-offset-tagline', + 'header-stacked', + 'header-centered-logo', + 'header-centered-logo-black-background', + 'header-centered-title-navigation-social', + 'header-title-and-button', + 'hidden-404', + 'hidden-bird', + 'hidden-heading-and-bird', + 'page-about-media-left', + 'page-about-simple-dark', + 'page-about-media-right', + 'page-about-solid-color', + 'page-about-links', + 'page-about-links-dark', + 'page-about-large-image-and-buttons', + 'page-layout-image-and-text', + 'page-layout-image-text-and-video', + 'page-layout-two-columns', + 'page-sidebar-poster', + 'page-sidebar-grid-posts', + 'page-sidebar-blog-posts', + 'page-sidebar-blog-posts-right', + 'query-default', + 'query-simple-blog', + 'query-grid', + 'query-text-grid', + 'query-image-grid', + 'query-large-titles', + 'query-irregular-grid', + ); + + /** + * Filters the theme block patterns. + * + * @since Twenty Twenty-Two 1.0 + * + * @param array $block_patterns List of block patterns by name. + */ + $block_patterns = apply_filters( 'twentytwentytwo_block_patterns', $block_patterns ); + + foreach ( $block_patterns as $block_pattern ) { + $pattern_file = get_theme_file_path( '/inc/patterns/' . $block_pattern . '.php' ); + + register_block_pattern( + 'twentytwentytwo/' . $block_pattern, + require $pattern_file + ); + } +} +add_action( 'init', 'twentytwentytwo_register_block_patterns', 9 ); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php new file mode 100644 index 0000000..dab9b04 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php @@ -0,0 +1,32 @@ + __( 'Footer with text, title, and logo', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    +
    +

    ' . esc_html__( 'About us', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'We are a rogue collective of bird watchers. We’ve been known to sneak through fences, climb perimeter walls, and generally trespass in order to observe the rarest of birds.', 'twentytwentytwo' ) . '

    + + + + + + +
    + + + +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php new file mode 100644 index 0000000..c1306cb --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php @@ -0,0 +1,55 @@ + __( 'Blog footer', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    +
    +

    ' . esc_html__( 'About us', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'We are a rogue collective of bird watchers. We’ve been known to sneak through fences, climb perimeter walls, and generally trespass in order to observe the rarest of birds.', 'twentytwentytwo' ) . '

    +
    + + + +
    +

    ' . esc_html__( 'Latest posts', 'twentytwentytwo' ) . '

    + + +
    + + + +
    +

    ' . esc_html__( 'Categories', 'twentytwentytwo' ) . '

    + + +
    +
    + + + + + + + +
    + + +

    ' . + sprintf( + /* Translators: WordPress link. */ + esc_html__( 'Proudly powered by %s', 'twentytwentytwo' ), + 'WordPress' + ) . '

    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php new file mode 100644 index 0000000..b2ec362 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php @@ -0,0 +1,23 @@ + __( 'Dark footer with title and citation', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php new file mode 100644 index 0000000..3682643 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php @@ -0,0 +1,23 @@ + __( 'Default footer', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    + + +

    ' . + sprintf( + /* Translators: WordPress link. */ + esc_html__( 'Proudly powered by %s', 'twentytwentytwo' ), + 'WordPress' + ) . '

    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php new file mode 100644 index 0000000..caa44e8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php @@ -0,0 +1,23 @@ + __( 'Footer with logo and citation', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    + + +

    ' . + sprintf( + /* Translators: WordPress link. */ + esc_html__( 'Proudly powered by %s', 'twentytwentytwo' ), + 'WordPress' + ) . '

    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php new file mode 100644 index 0000000..d0b5542 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php @@ -0,0 +1,24 @@ + __( 'Footer with navigation and copyright', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    + + + + + + + + +

    ' . esc_html__( '© Site Title', 'twentytwentytwo' ) . '

    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php new file mode 100644 index 0000000..79792c7 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php @@ -0,0 +1,25 @@ + __( 'Footer with navigation and citation', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    + + + + +

    ' . + sprintf( + /* Translators: WordPress link. */ + esc_html__( 'Proudly powered by %s', 'twentytwentytwo' ), + 'WordPress' + ) . '

    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php new file mode 100644 index 0000000..a79c1d4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php @@ -0,0 +1,41 @@ + __( 'Footer with query, featured images, title, and citation', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php new file mode 100644 index 0000000..13bb43d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php @@ -0,0 +1,39 @@ + __( 'Footer with query, title, and citation', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php new file mode 100644 index 0000000..0c7e4ae --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php @@ -0,0 +1,28 @@ + __( 'Footer with social links and copyright', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' +
    +
    + + + + + + + + +

    ' . esc_html__( '© Site Title', 'twentytwentytwo' ) . '

    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php new file mode 100644 index 0000000..84d888b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php @@ -0,0 +1,26 @@ + __( 'Footer with title, tagline, and social links on a dark background', 'twentytwentytwo' ), + 'categories' => array( 'footer' ), + 'blockTypes' => array( 'core/template-part/footer' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php new file mode 100644 index 0000000..3255e9d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php @@ -0,0 +1,13 @@ + __( 'Divider with image and color (dark)', 'twentytwentytwo' ), + 'categories' => array( 'featured' ), + 'content' => ' +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php new file mode 100644 index 0000000..a29b825 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php @@ -0,0 +1,13 @@ + __( 'Divider with image and color (light)', 'twentytwentytwo' ), + 'categories' => array( 'featured' ), + 'content' => ' +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php new file mode 100644 index 0000000..55cbdfd --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php @@ -0,0 +1,25 @@ + __( 'Featured posts', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'query' ), + 'content' => ' +
    +

    ' . esc_html__( 'Latest posts', 'twentytwentytwo' ) . '

    + + + +
    + + + + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php new file mode 100644 index 0000000..0870da3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php @@ -0,0 +1,19 @@ + __( 'Image with caption', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'columns', 'gallery' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php new file mode 100644 index 0000000..d7bd816 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php @@ -0,0 +1,35 @@ + __( 'Large list of names', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'text' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php new file mode 100644 index 0000000..629a0a2 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php @@ -0,0 +1,13 @@ + __( 'Layered images with duotone', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'gallery' ), + 'content' => ' +
    ' . esc_attr__( 'Painting of ducks in the water.', 'twentytwentytwo' ) . '
    +
    ' . esc_attr__( 'Illustration of a flying bird.', 'twentytwentytwo' ) . '
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php new file mode 100644 index 0000000..af680dc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php @@ -0,0 +1,133 @@ + __( 'List of events', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'text' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php new file mode 100644 index 0000000..b385edd --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php @@ -0,0 +1,93 @@ + __( 'Pricing table', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'columns', 'buttons' ), + 'content' => ' +
    +
    +
    + + + +

    ' . esc_html( _x( '1', 'First item in a numbered list.', 'twentytwentytwo' ) ) . '

    + + + +

    ' . esc_html__( 'Pigeon', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'Help support our growing community by joining at the Pigeon level. Your support will help pay our writers, and you’ll get access to our exclusive newsletter.', 'twentytwentytwo' ) . '

    + + + + + + + + +
    + + + +
    +
    + + + +

    ' . esc_html( _x( '2', 'Second item in a numbered list.', 'twentytwentytwo' ) ) . '

    + + + +

    ' . esc_html__( 'Sparrow', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'Join at the Sparrow level and become a member of our flock! You’ll receive our newsletter, plus a bird pin that you can wear with pride when you’re out in nature.', 'twentytwentytwo' ) . '

    + + + + + + + + +
    + + + +
    +
    + + + +

    ' . esc_html( _x( '3', 'Third item in a numbered list.', 'twentytwentytwo' ) ) . '

    + + + +

    ' . esc_html__( 'Falcon', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'Play a leading role for our community by joining at the Falcon level. This level earns you a seat on our board, where you can help plan future birdwatching expeditions.', 'twentytwentytwo' ) . '

    + + + + + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php new file mode 100644 index 0000000..34137cd --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php @@ -0,0 +1,27 @@ + __( 'Subscribe callout', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'buttons' ), + 'content' => ' +
    +
    +

    ' . wp_kses_post( __( 'Watch birds
    from your inbox', 'twentytwentytwo' ) ) . '

    + + + + +
    + + + +
    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php new file mode 100644 index 0000000..5534b6f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php @@ -0,0 +1,47 @@ + __( 'Two images with text', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'columns', 'gallery' ), + 'content' => ' +
    +
    +
    ' . esc_attr__( 'Illustration of a bird sitting on a branch.', 'twentytwentytwo' ) . '
    +
    + + + +
    +
    ' . esc_attr__( 'Illustration of a bird flying.', 'twentytwentytwo' ) . '
    + + + + + + + +

    ' . esc_html__( 'SCREENING', 'twentytwentytwo' ) . '

    + + + +

    ' . wp_kses_post( __( 'May 14th, 2022 @ 7:00PM
    The Vintagé Theater,
    245 Arden Rd.
    Gardenville, NH', 'twentytwentytwo' ) ) . '

    + + + + + + + + + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php new file mode 100644 index 0000000..3b15a52 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php @@ -0,0 +1,47 @@ + __( 'Video with header and details', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'columns' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php new file mode 100644 index 0000000..22ed248 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php @@ -0,0 +1,27 @@ + __( 'Video trailer', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'columns' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php new file mode 100644 index 0000000..373b0f4 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php @@ -0,0 +1,41 @@ + __( 'Wide image with introduction and buttons', 'twentytwentytwo' ), + 'categories' => array( 'featured', 'columns' ), + 'content' => ' +
    +
    ' . esc_attr__( 'Illustration of a bird flying.', 'twentytwentytwo' ) . '
    + + + +
    +
    +

    ' . wp_kses_post( __( 'Welcome to
    the Aviary', 'twentytwentytwo' ) ) . '

    +
    + + + +
    +

    ' . esc_html__( 'A film about hobbyist bird watchers, a catalog of different birds, paired with the noises they make. Each bird is listed by their scientific name so things seem more official.', 'twentytwentytwo' ) . '

    + + + + + + + + +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php new file mode 100644 index 0000000..b10ed5b --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php @@ -0,0 +1,22 @@ + __( 'Header with centered logo and background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php new file mode 100644 index 0000000..a116c39 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php @@ -0,0 +1,26 @@ + __( 'Header with centered logo', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php new file mode 100644 index 0000000..cb1b310 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php @@ -0,0 +1,30 @@ + __( 'Centered header with navigation, social links, and background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-default.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-default.php new file mode 100644 index 0000000..ff25793 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-default.php @@ -0,0 +1,23 @@ + __( 'Default header', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    +
    + + +
    + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php new file mode 100644 index 0000000..55422aa --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php @@ -0,0 +1,20 @@ + __( 'Header with image background and overlay', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    ' . esc_attr__( 'Painting of ducks in the water.', 'twentytwentytwo' ) . '
    + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php new file mode 100644 index 0000000..4afd36c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php @@ -0,0 +1,24 @@ + __( 'Header with image background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    ' . esc_attr__( 'Illustration of a flying bird', 'twentytwentytwo' ) . '
    + + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php new file mode 100644 index 0000000..5e4fea6 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php @@ -0,0 +1,34 @@ + __( 'Large header with dark background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php new file mode 100644 index 0000000..3ddea75 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php @@ -0,0 +1,18 @@ + __( 'Logo and navigation header with background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php new file mode 100644 index 0000000..299586f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php @@ -0,0 +1,30 @@ + __( 'Logo, navigation, and offset tagline Header', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    +
    + + + +
    + + + +
    +
    + + + +
    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php new file mode 100644 index 0000000..c9b0f88 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php @@ -0,0 +1,24 @@ + __( 'Logo, navigation, and social links header with background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php new file mode 100644 index 0000000..832f414 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php @@ -0,0 +1,31 @@ + __( 'Small header with dark background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + + + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php new file mode 100644 index 0000000..bd36bbf --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php @@ -0,0 +1,28 @@ + __( 'Logo and navigation header', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    + + + + + + + + + + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php new file mode 100644 index 0000000..468a696 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php @@ -0,0 +1,22 @@ + __( 'Text-only header with background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php new file mode 100644 index 0000000..4a4913e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php @@ -0,0 +1,18 @@ + __( 'Text-only header with background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php new file mode 100644 index 0000000..d529fe8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php @@ -0,0 +1,22 @@ + __( 'Text-only header with tagline and background', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php new file mode 100644 index 0000000..5c78069 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php @@ -0,0 +1,18 @@ + __( 'Title and button header', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php new file mode 100644 index 0000000..384cda5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php @@ -0,0 +1,24 @@ + __( 'Title, navigation, and social links header', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    + + + + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php new file mode 100644 index 0000000..40e633a --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php @@ -0,0 +1,26 @@ + __( 'Header with tagline', 'twentytwentytwo' ), + 'categories' => array( 'header' ), + 'blockTypes' => array( 'core/template-part/header' ), + 'content' => ' +
    +
    +
    + + +
    + +
    +
    + + + + +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php new file mode 100644 index 0000000..9cfd50d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php @@ -0,0 +1,15 @@ + __( '404 content', 'twentytwentytwo' ), + 'inserter' => false, + 'content' => ' +

    ' . esc_html( _x( '404', 'Error code for a webpage that is not found.', 'twentytwentytwo' ) ) . '

    + + +

    ' . esc_html__( 'This page could not be found. Maybe try a search?', 'twentytwentytwo' ) . '

    + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php new file mode 100644 index 0000000..cfc9db5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php @@ -0,0 +1,14 @@ + __( 'Heading and bird image', 'twentytwentytwo' ), + 'inserter' => false, + 'content' => ' +
    ' . esc_attr__( 'Illustration of a bird flying.', 'twentytwentytwo' ) . '
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php new file mode 100644 index 0000000..d3f1788 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php @@ -0,0 +1,21 @@ + __( 'Heading and bird image', 'twentytwentytwo' ), + 'inserter' => false, + 'content' => ' +
    +

    ' . wp_kses_post( __( 'The Hatchery: a blog about my adventures in bird watching', 'twentytwentytwo' ) ) . '

    +
    + + + +
    ' . esc_attr__( 'Illustration of a bird flying.', 'twentytwentytwo' ) . '
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php new file mode 100644 index 0000000..52dbd0e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php @@ -0,0 +1,79 @@ + __( 'About page with large image and buttons', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages', 'buttons' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php new file mode 100644 index 0000000..943524f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php @@ -0,0 +1,47 @@ + __( 'About page links (dark)', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages', 'buttons' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php new file mode 100644 index 0000000..3cf2717 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php @@ -0,0 +1,65 @@ + __( 'About page links', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages', 'buttons' ), + 'content' => ' +
    +
    ' . esc_attr__( 'Logo featuring a flying bird', 'twentytwentytwo' ) . '
    + + + + + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php new file mode 100644 index 0000000..f5c769a --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php @@ -0,0 +1,41 @@ + __( 'About page with media on the left', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php new file mode 100644 index 0000000..8f29115 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php @@ -0,0 +1,40 @@ + __( 'About page with media on the right', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' + + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php new file mode 100644 index 0000000..fe07159 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php @@ -0,0 +1,45 @@ + __( 'Simple dark about page', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    + + + + +
    +
    + + +

    ' . wp_kses_post( __( 'Jesús
    Rodriguez', 'twentytwentytwo' ) ) . '

    + + + +

    ' . esc_html__( 'Oh hello. My name’s Jesús, and you’ve found your way to my website. I’m an avid bird watcher, and I also broadcast my own radio show on Tuesday evenings at 11PM EDT.', 'twentytwentytwo' ) . '

    + + + + + + + + +
    + + + +
    +
    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php new file mode 100644 index 0000000..6c07725 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php @@ -0,0 +1,41 @@ + __( 'About page on solid color background', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +
    +
    + + +

    ' . wp_kses_post( __( 'Edvard
    Smith', 'twentytwentytwo' ) ) . '

    + + + + + + + +

    ' . esc_html__( 'Oh hello. My name’s Edvard, and you’ve found your way to my website. I’m an avid bird watcher, and I also broadcast my own radio show every Tuesday evening at 11PM EDT. Listen in sometime!', 'twentytwentytwo' ) . '

    + + + + + + + + + + +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php new file mode 100644 index 0000000..20e08e0 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php @@ -0,0 +1,32 @@ + __( 'Page layout with image and text', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +

    ' . wp_kses_post( __( 'Watching Birds
    in the Garden', 'twentytwentytwo' ) ) . '

    +
    + + + +
    ' . esc_attr_x( 'TBD', 'Short for to be determined', 'twentytwentytwo' ) . '
    + + + +
    + +
    +
    + + + +
    +

    ' . wp_kses_post( __( 'Oh hello. My name’s Angelo, and I operate this blog. I was born in Portland, but I currently live in upstate New York. You may recognize me from publications with names like Eagle Beagle and Mourning Dive. I write for a living.

    I usually use this blog to catalog extensive lists of birds and other things that I find interesting. If you find an error with one of my lists, please keep it to yourself.

    If that’s not your cup of tea, I definitely recommend this tea. It’s my favorite.', 'twentytwentytwo' ) ) . '

    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php new file mode 100644 index 0000000..0ee87f1 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php @@ -0,0 +1,65 @@ + __( 'Page layout with image, text and video', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +
    +

    ' . wp_kses_post( __( 'Warble, a film about
    hobbyist bird watchers.', 'twentytwentytwo' ) ) . '

    + + + + + + + +
    +
    +

    ' . esc_html__( 'Screening', 'twentytwentytwo' ) . '

    + + + +

    ' . wp_kses_post( __( 'May 14th, 2022 @ 7:00PM
    The Vintagé Theater,
    245 Arden Rd.
    Gardenville, NH', 'twentytwentytwo' ) ) . '

    + + + + +
    + + + +
    +
    +
    + + + +
    ' . esc_attr__( 'An illustration of a bird in flight', 'twentytwentytwo' ) . '
    + + + +
    +
    +
    +

    ' . esc_html__( 'Extended Trailer', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'Oh hello. My name’s Angelo, and you’ve found your way to my blog. I write about a range of topics, but lately I’ve been sharing my hopes for next year.', 'twentytwentytwo' ) . '

    +
    + + + +
    +
    +
    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php new file mode 100644 index 0000000..b24c9c5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php @@ -0,0 +1,73 @@ + __( 'Page layout with two columns', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +

    ' . wp_kses_post( __( 'Goldfinch
    & Sparrow', 'twentytwentytwo' ) ) . '

    + + + + + + + +
    +
    +
    +

    ' . esc_html__( 'WELCOME', 'twentytwentytwo' ) . '

    +
    + + + +
    +
    +
    +
    +
    + + + +
    +
    +

    ' . wp_kses_post( __( 'Oh hello. My name’s Angelo, and I operate this blog. I was born in Portland, but I currently live in upstate New York. You may recognize me from publications with names like Eagle Beagle and Mourning Dive. I write for a living.

    I usually use this blog to catalog extensive lists of birds and other things that I find interesting. If you find an error with one of my lists, please keep it to yourself.

    If that’s not your cup of tea, I definitely recommend this tea. It’s my favorite.', 'twentytwentytwo' ) ) . '

    +
    + + + +
    +
    + + + + + + + +
    +
    +
    +
    + + + +
    +

    ' . esc_html__( 'POSTS', 'twentytwentytwo' ) . '

    +
    +
    + + + +
    +
    + + + +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php new file mode 100644 index 0000000..070aef0 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php @@ -0,0 +1,87 @@ + __( 'Blog posts with right sidebar', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +
    +
    + + + + +
    + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php new file mode 100644 index 0000000..e535a81 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php @@ -0,0 +1,79 @@ + __( 'Blog posts with left sidebar', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php new file mode 100644 index 0000000..b4aa6a5 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php @@ -0,0 +1,77 @@ + __( 'Grid of posts with left sidebar', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +
    +
    + + + + + + + + +
    + + + + + + + + + + + + + + + +
    + + + + + + + + + + +
    + + + +
    +
    + + + +
    + +
    + + + + +
    + + + + + + + + +
    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php new file mode 100644 index 0000000..9cbcef2 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php @@ -0,0 +1,65 @@ + __( 'Poster with right sidebar', 'twentytwentytwo' ), + 'categories' => array( 'twentytwentytwo_pages' ), + 'content' => ' +
    +
    +
    + + +

    ' . wp_kses_post( __( 'Flutter, a collection of bird-related ephemera', 'twentytwentytwo' ) ) . '

    +
    + + + +
    +
    + + + +
    +
    +
    ' . esc_attr__( 'Image of a bird on a branch', 'twentytwentytwo' ) . '
    +
    + + + +
    +
    ' . esc_attr__( 'An icon representing binoculars.', 'twentytwentytwo' ) . '
    + + + + + + + +

    ' . esc_html__( 'Date', 'twentytwentytwo' ) . '

    + + + +

    ' . esc_html__( 'February, 12 2021', 'twentytwentytwo' ) . '

    + + + + + + + +

    ' . esc_html__( 'Location', 'twentytwentytwo' ) . '

    + + + +

    ' . wp_kses_post( __( 'The Grand Theater
    154 Eastern Avenue
    Maryland NY, 12345', 'twentytwentytwo' ) ) . '

    + + + + +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-default.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-default.php new file mode 100644 index 0000000..7cebacc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-default.php @@ -0,0 +1,50 @@ + __( 'Default posts', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    + +
    + + + + +
    +
    + +
    + + + +
    +
    + + + + + + + +
    + + + + +
    + + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php new file mode 100644 index 0000000..f695eba --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php @@ -0,0 +1,32 @@ + __( 'Grid of posts', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    + + + + + + + + + + +
    + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php new file mode 100644 index 0000000..e5672e3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php @@ -0,0 +1,36 @@ + __( 'Grid of image posts', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    + + + +
    +
    + + + +
    +
    + + + + +
    + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php new file mode 100644 index 0000000..c5da08a --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php @@ -0,0 +1,170 @@ + __( 'Irregular grid of posts', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    +
    +
    +
    + + + + + + + +
    +
    + + + +
    +
    + + + + + + + + + + + +
    +
    + + + +
    +
    + + + + + + + + + + + +
    +
    +
    + + + +
    +
    +
    + + + + + + + +
    +
    + + + +
    +
    + + + + + + + + + + + +
    +
    + + + +
    +
    + + + + + + + + + + + +
    +
    +
    + + + +
    +
    +
    + + + + + + + + + + + +
    +
    + + + +
    +
    + + + + + + + + + + + +
    +
    + + + +
    +
    + + + + + + + + + + + +
    +
    +
    +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php new file mode 100644 index 0000000..6ff8afa --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php @@ -0,0 +1,26 @@ + __( 'Large post titles', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    + +
    +
    + + + +
    +
    + + + +
    + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php new file mode 100644 index 0000000..4b08984 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php @@ -0,0 +1,38 @@ + __( 'Simple blog posts', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    + + + + + + + +
    + + + +
    + + + + + + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php new file mode 100644 index 0000000..a8f84d3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php @@ -0,0 +1,31 @@ + __( 'Text-based grid of posts', 'twentytwentytwo' ), + 'categories' => array( 'query' ), + 'blockTypes' => array( 'core/query' ), + 'content' => ' +
    + + + + + + + + + +
    + + + + + + + + +
    + ', +); diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/index.php b/assets/wordpress/wp-content/themes/twentytwentytwo/index.php new file mode 100644 index 0000000..877d8c3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/index.php @@ -0,0 +1,4 @@ + +
    + +
    + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header-large-dark.html b/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header-large-dark.html new file mode 100644 index 0000000..a63b2d6 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header-large-dark.html @@ -0,0 +1,7 @@ + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header-small-dark.html b/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header-small-dark.html new file mode 100644 index 0000000..5870857 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header-small-dark.html @@ -0,0 +1,7 @@ + + + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header.html b/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header.html new file mode 100644 index 0000000..27568c1 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/parts/header.html @@ -0,0 +1,13 @@ + +
    +
    +
    + +
    + + + + +
    +
    + \ No newline at end of file diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/readme.txt b/assets/wordpress/wp-content/themes/twentytwentytwo/readme.txt new file mode 100644 index 0000000..61bbb8f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/readme.txt @@ -0,0 +1,121 @@ +=== Twenty Twenty-Two === +Contributors: wordpressdotorg +Requires at least: 5.9 +Tested up to: 6.5 +Requires PHP: 5.6 +Stable tag: 1.7 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html + +== Description == + +Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. + +The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. + +Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours. + +== Changelog == + += 1.7 = +* Released: April 2, 2024 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.7 + += 1.6 = +* Released: November 7, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.6 + += 1.5 = +* Released: August 8, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.5 + += 1.4 = +* Released: March 28, 2023 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.4 + += 1.3 = +* Released: November 1, 2022 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.3 + += 1.2 = +* Released: May 24, 2022 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.2 + += 1.1 = +* Released: February 22, 2022 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.1 + += 1.0 = +* Released: January 25, 2022 + +https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.0 + +== Copyright == + +Twenty Twenty-Two WordPress Theme, 2021-2024 WordPress.org +Twenty Twenty-Two is distributed under the terms of the GNU GPL. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +This theme bundles the following third-party resources: + +DM Sans Font +Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) +Copyright 2019 Google LLC +Copyright 2014-2018 Adobe (http://www.adobe.com/) +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/googlefonts/dm-fonts + +IBM Plex Font +Copyright 2017 IBM Corp. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/IBM/plex + +Inter Font +Copyright (c) 2016-2020 The Inter Project Authors. +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/rsms/inter + +Source Serif Font +Copyright 2014-2021 Adobe (http://www.adobe.com/) +License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 +Source: https://github.com/adobe-fonts/source-serif + +Block Pattern Images: + +"White Bellied Flycatcher" illustrated by Elizabeth Gould. Public Domain. +https://www.rawpixel.com/image/321474/free-illustration-image-bird-vintage-birds +Includes modified versions created specifically for Twenty Twenty-Two. + +Colorful vintage hummingbird illustrations. CC0. +https://www.rawpixel.com/image/2281674/free-illustration-image-bird-hummingbird-flying +https://www.rawpixel.com/image/2281671/free-illustration-image-bird-hummingbird-flying +https://www.rawpixel.com/image/2281679/free-illustration-image-bird-hummingbird-animals +https://www.rawpixel.com/image/2281665/free-illustration-image-hummingbird-ernst-haeckel-birds + +"Green-tailed Jacamar" by Jacques Barraband. CC0. +https://www.rawpixel.com/image/328508/free-illustration-image-jacques-barraband-paradise + +"Ducks" by Goyō Hashiguchi. CC0 +https://www.rawpixel.com/image/3813787/illustration-image-flower-art-floral + +"Colombes et lis, étoffe imprimée" illustrated by Maurice Pillard Verneuil. +https://www.rawpixel.com/image/2053817/illustration-from-lanimal-dans-decoration +Included as a short video clip. + +Modified versions of the above images, as well as additional "flight path" illustrations were created specifically for Twenty Twenty-Two. CC0. diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/screenshot.png b/assets/wordpress/wp-content/themes/twentytwentytwo/screenshot.png new file mode 100644 index 0000000..0bba95b Binary files /dev/null and b/assets/wordpress/wp-content/themes/twentytwentytwo/screenshot.png differ diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/style.css b/assets/wordpress/wp-content/themes/twentytwentytwo/style.css new file mode 100644 index 0000000..e1e26e9 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/style.css @@ -0,0 +1,161 @@ +/* +Theme Name: Twenty Twenty-Two +Theme URI: https://wordpress.org/themes/twentytwentytwo/ +Author: the WordPress team +Author URI: https://wordpress.org/ +Description: Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours. +Requires at least: 5.9 +Tested up to: 6.5 +Requires PHP: 5.6 +Version: 1.7 +License: GNU General Public License v2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html +Text Domain: twentytwentytwo +Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, style-variations, wide-blocks, block-styles, accessibility-ready, blog, portfolio, news + +Twenty Twenty-Two WordPress Theme, (C) 2021 WordPress.org +Twenty Twenty-Two is distributed under the terms of the GNU GPL. +*/ + +/* + * Font smoothing. + * This is a niche setting that will not be available via Global Styles. + * https://github.com/WordPress/gutenberg/issues/35934 + */ + +body { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; +} + +/* + * Text and navigation link styles. + * Necessary until the following issue is resolved in Gutenberg: + * https://github.com/WordPress/gutenberg/issues/27075 + */ + +a { + text-decoration-thickness: 1px; + text-underline-offset: 0.25ch; +} + +a:hover, +a:focus { + text-decoration-style: dashed; +} + +a:active { + text-decoration: none; +} + +.wp-block-navigation .wp-block-navigation-item a:hover, +.wp-block-navigation .wp-block-navigation-item a:focus { + text-decoration: underline; + text-decoration-style: solid; +} + +/* + * Search and File Block button styles. + * Necessary until the following issues are resolved in Gutenberg: + * https://github.com/WordPress/gutenberg/issues/36444 + * https://github.com/WordPress/gutenberg/issues/27760 + */ + +.wp-block-search__button, +.wp-block-file .wp-block-file__button { + background-color: var(--wp--preset--color--primary); + border-radius: 0; + border: none; + color: var(--wp--preset--color--background); + font-size: var(--wp--preset--font-size--medium); + padding: calc(.667em + 2px) calc(1.333em + 2px); +} + +/* + * Button hover styles. + * Necessary until the following issue is resolved in Gutenberg: + * https://github.com/WordPress/gutenberg/issues/27075 + */ + +.wp-block-search__button:hover, +.wp-block-file .wp-block-file__button:hover, +.wp-block-button__link:hover { + opacity: 0.90; +} + +/* + * Alignment styles. + * These rules are temporary, and should not be relied on or + * modified too heavily by themes or plugins that build on + * Twenty Twenty-Two. These are meant to be a precursor to + * a global solution provided by the Block Editor. + * + * Relevant issues: + * https://github.com/WordPress/gutenberg/issues/35607 + * https://github.com/WordPress/gutenberg/issues/35884 + */ + +.wp-site-blocks, +body > .is-root-container, +.edit-post-visual-editor__post-title-wrapper, +.wp-block-group.alignfull, +.wp-block-group.has-background, +.wp-block-cover.alignfull, +.is-root-container .wp-block[data-align="full"] > .wp-block-group, +.is-root-container .wp-block[data-align="full"] > .wp-block-cover { + padding-left: var(--wp--custom--spacing--outer); + padding-right: var(--wp--custom--spacing--outer); +} + +.wp-site-blocks .alignfull, +.wp-site-blocks > .wp-block-group.has-background, +.wp-site-blocks > .wp-block-cover, +.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background, +.wp-site-blocks > .wp-block-template-part > .wp-block-cover, +body > .is-root-container > .wp-block-cover, +body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background, +body > .is-root-container > .wp-block-template-part > .wp-block-cover, +.is-root-container .wp-block[data-align="full"] { + margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important; + margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important; + width: unset; +} + +/* Blocks inside columns don't have negative margins. */ +.wp-site-blocks .wp-block-columns .wp-block-column .alignfull, +.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"], +/* We also want to avoid stacking negative margins. */ +.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull, +.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] { + margin-left: auto !important; + margin-right: auto !important; + width: inherit; +} + +/* + * Responsive menu container padding. + * This ensures the responsive container inherits the same + * spacing defined above. This behavior may be built into + * the Block Editor in the future. + */ + +.wp-block-navigation__responsive-container.is-menu-open { + padding-top: var(--wp--custom--spacing--outer); + padding-bottom: var(--wp--custom--spacing--large); + padding-right: var(--wp--custom--spacing--outer); + padding-left: var(--wp--custom--spacing--outer); +} + +/* + * Improves spacing for the legacy Post Comments block. + * https://core.trac.wordpress.org/ticket/57560 + */ + +.wp-block-post-comments ol.commentlist ul.children { + margin-top: 1rem; + margin-bottom: 1rem; +} + +.wp-block-post-comments ol.commentlist li.comment:not(:last-child) { + margin-bottom: 1rem; +} diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/styles/blue.json b/assets/wordpress/wp-content/themes/twentytwentytwo/styles/blue.json new file mode 100644 index 0000000..8ebedef --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/styles/blue.json @@ -0,0 +1,146 @@ +{ + "version": 2, + "title": "Blue", + "settings": { + "color": { + "palette": [ + { + "slug": "foreground", + "color": "#FCF5ED", + "name": "Foreground" + }, + { + "slug": "background", + "color": "#3F67C6", + "name": "Background" + }, + { + "slug": "primary", + "color": "#FFFFFF", + "name": "Primary" + }, + { + "slug": "secondary", + "color": "#3556A5", + "name": "Secondary" + }, + { + "slug": "tertiary", + "color": "#374C80", + "name": "Tertiary" + } + ] + }, + "custom": { + "spacing": { + "small": "max(1rem, 4vw)", + "medium": "clamp(1rem, 8vw, calc(2 * var(--wp--style--block-gap)))", + "large": "clamp(2rem, 10vw, 6rem)", + "outer": "var(--wp--custom--spacing--small, 1rem)" + }, + "typography": { + "font-size": { + "huge": "clamp(2rem, 4vw, 2.25rem)", + "gigantic": "clamp(2.25rem, 6vw, 2.75rem)", + "colossal": "clamp(2.75rem, 10vw, 5rem)" + } + } + }, + "layout": { + "contentSize": "660px", + "wideSize": "1220px" + }, + "typography": { + "fontFamilies": [ + { + "fontFamily": "\"DM Sans\", sans-serif", + "name": "DM Sans", + "slug": "dm-sans", + "fontFace": [ + { + "fontFamily": "DM Sans", + "fontWeight": "400", + "fontStyle": "normal", + "src": [ "file:./assets/fonts/dm-sans/DMSans-Regular.ttf" ] + }, + { + "fontFamily": "DM Sans", + "fontWeight": "400", + "fontStyle": "italic", + "src": [ "file:./assets/fonts/dm-sans/DMSans-Italic.ttf" ] + }, + { + "fontFamily": "DM Sans", + "fontWeight": "700", + "fontStyle": "normal", + "src": [ "file:./assets/fonts/dm-sans/DMSans-Bold.ttf" ] + }, + { + "fontFamily": "DM Sans", + "fontWeight": "700", + "fontStyle": "italic", + "src": [ "file:./assets/fonts/dm-sans/DMSans-BoldItalic.ttf" ] + } + ] + } + ] + } + }, + "styles": { + "blocks": { + "core/post-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontSize": "var(--wp--custom--typography--font-size--colossal)", + "fontWeight": "700" + } + }, + "core/site-title": { + "typography": { + "fontStyle":"normal" + } + } + }, + "elements": { + "h1": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontWeight": "700" + } + }, + "h2": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontWeight": "700" + } + }, + "h3": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontWeight": "700" + } + }, + "h4": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontWeight": "700" + } + }, + "h5": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontWeight": "700" + } + }, + "h6": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", + "fontWeight": "700" + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/styles/pink.json b/assets/wordpress/wp-content/themes/twentytwentytwo/styles/pink.json new file mode 100644 index 0000000..5c9be91 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/styles/pink.json @@ -0,0 +1,215 @@ +{ + "version": 2, + "title": "Pink", + "settings": { + "color": { + "palette": [ + { + "slug": "foreground", + "color": "#CA2315", + "name": "Foreground" + }, + { + "slug": "background", + "color": "#FFF6F6", + "name": "Background" + }, + { + "slug": "primary", + "color": "#000000", + "name": "Primary" + }, + { + "slug": "secondary", + "color": "#FFFFFF", + "name": "Secondary" + }, + { + "slug": "tertiary", + "color": "#F5F5F5", + "name": "Tertiary" + } + ] + }, + "custom": { + "spacing": { + "small": "max(0.75rem, 4vw)", + "medium": "clamp(1.75rem, 6vw, calc(1.5 * var(--wp--style--block-gap)))", + "large": "clamp(3rem, 8vw, 5rem)", + "outer": "var(--wp--custom--spacing--small, 0.75rem)" + }, + "typography": { + "font-size": { + "huge": "clamp(2rem, 4vw, 2.25rem)", + "gigantic": "clamp(2.25rem, 6vw, 2.75rem)", + "colossal": "clamp(2.75rem, 8vw, 3.25rem)" + } + }, + "line-height": { + "normal": 1.7 + } + }, + "typography": { + "fontFamilies": [ + { + "fontFamily": "\"IBM Plex Sans\", sans-serif", + "name": "IBM Plex Sans", + "slug": "ibm-plex-sans", + "fontFace": [ + { + "fontFamily": "IBM Plex Sans", + "fontWeight": "400", + "fontStyle": "normal", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexSans-Light.woff2" ] + }, + { + "fontFamily": "IBM Plex Sans", + "fontWeight": "400", + "fontStyle": "italic", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2" ] + }, + { + "fontFamily": "IBM Plex Sans", + "fontWeight": "200", + "fontStyle": "normal", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2" ] + }, + { + "fontFamily": "IBM Plex Sans", + "fontWeight": "200", + "fontStyle": "italic", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2" ] + } + ] + }, + { + "fontFamily": "\"IBM Plex Mono\", monospace", + "name": "IBM Plex Mono", + "slug": "ibm-plex-mono", + "fontFace": [ + { + "fontFamily": "IBM Plex Mono", + "fontWeight": "400", + "fontStyle": "normal", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexMono-Text.woff2" ] + }, + { + "fontFamily": "IBM Plex Mono", + "fontWeight": "400", + "fontStyle": "italic", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2" ] + }, + { + "fontFamily": "IBM Plex Mono", + "fontWeight": "700", + "fontStyle": "normal", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexMono-Bold.woff2" ] + }, + { + "fontFamily": "IBM Plex Mono", + "fontWeight": "700", + "fontStyle": "italic", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/ibm-plex/IBMPlexSans-BoldItalic.woff2" ] + } + ] + } + ], + "fontSizes": [ + { + "size": "0.875rem", + "slug": "small" + }, + { + "size": "1rem", + "slug": "medium" + }, + { + "size": "1.25rem", + "slug": "large" + }, + { + "size": "clamp(1.5rem, 3vw, 2rem)", + "slug": "x-large" + } + ] + }, + "layout": { + "contentSize": "600px", + "wideSize": "780px" + } + }, + "styles": { + "blocks": { + "core/post-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "400" + } + }, + "core/site-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontStyle": "normal", + "textTransform": "uppercase" + } + }, + "core/query-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)" + } + } + }, + "elements": { + "h1": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "200" + } + }, + "h2": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "400" + } + }, + "h3": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "400" + } + }, + "h4": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "400" + } + }, + "h5": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "400" + } + }, + "h6": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-sans)", + "fontWeight": "400" + } + } + }, + "spacing": { + "blockGap": "2rem" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/styles/swiss.json b/assets/wordpress/wp-content/themes/twentytwentytwo/styles/swiss.json new file mode 100644 index 0000000..483467c --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/styles/swiss.json @@ -0,0 +1,167 @@ +{ + "version": 2, + "title": "Swiss", + "settings": { + "color": { + "duotone": [ + { + "colors": [ + "#000000", + "#FFFFFF" + ], + "slug": "default-filter", + "name": "Default filter" + } + ], + "palette": [ + { + "slug": "foreground", + "color": "#FFFFFF", + "name": "Foreground" + }, + { + "slug": "background", + "color": "#1A1A1A", + "name": "Background" + }, + { + "slug": "primary", + "color": "#FF7179", + "name": "Primary" + }, + { + "slug": "secondary", + "color": "#F4F4F2", + "name": "Secondary" + }, + { + "slug": "tertiary", + "color": "#0000000", + "name": "Tertiary" + } + ] + }, + "custom": { + "spacing": { + "small": "max(1.25rem, 5vw)", + "medium": "clamp(1.75rem, 6vw, calc(3 * var(--wp--style--block-gap)))", + "large": "clamp(3.5rem, 8vw, 6rem)", + "outer": "var(--wp--custom--spacing--small, 1.25rem)" + }, + "typography": { + "font-size": { + "colossal": "clamp(3.5rem, 8vw, 5rem)" + } + } + }, + "typography": { + "fontFamilies": [ + { + "fontFamily": "\"Inter\", sans-serif", + "name": "Inter", + "slug": "inter", + "fontFace": [ + { + "fontFamily": "Inter", + "fontWeight": "200 900", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/inter/Inter.ttf" ] + } + ] + } + ] + } + }, + "styles": { + "blocks": { + "core/cover": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/image": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/post-author": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/post-featured-image": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/post-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "core/query-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)" + } + }, + "core/site-logo": { + "filter": { + "duotone": "var(--wp--preset--duotone--default-filter)" + } + }, + "core/site-title": { + "typography": { + "fontWeight": "700", + "fontStyle":"normal" + } + } + }, + "elements": { + "h1": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "h2": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "h3": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "h4": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "h5": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "h6": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)", + "fontWeight": "700" + } + }, + "link": { + "color": { + "text": "var(--wp--preset--color--primary)" + } + } + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--inter)" + } + } +} diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/404.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/404.html new file mode 100644 index 0000000..5789a3d --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/404.html @@ -0,0 +1,11 @@ + + + +
    +
    + +
    +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/archive.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/archive.html new file mode 100644 index 0000000..abc0218 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/archive.html @@ -0,0 +1,39 @@ + + + +
    + + +
    + + + + + +
    +
    + +
    + + + +
    +
    + + + + + + + + + + + + + +
    +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/blank.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/blank.html new file mode 100644 index 0000000..3fed9dc --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/blank.html @@ -0,0 +1 @@ + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/home.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/home.html new file mode 100644 index 0000000..fea167e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/home.html @@ -0,0 +1,37 @@ + + + +
    + +
    + + + + +
    +
    + +
    + + + +
    +
    + + + + +
    + + + + + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/index.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/index.html new file mode 100644 index 0000000..d1d53f3 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/index.html @@ -0,0 +1,37 @@ + + + +
    + +
    + + + + +
    +
    + +
    + + + +
    +
    + + + + +
    + + + + + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page-large-header.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page-large-header.html new file mode 100644 index 0000000..c5218f8 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page-large-header.html @@ -0,0 +1,9 @@ + + + +
    + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page-no-separators.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page-no-separators.html new file mode 100644 index 0000000..ef1b65e --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page-no-separators.html @@ -0,0 +1,18 @@ + + + +
    +
    + +
    + + + + + +
    +
    +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page.html new file mode 100644 index 0000000..faf34e6 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/page.html @@ -0,0 +1,26 @@ + + + +
    +
    + + + + +
    +
    + + + + + + + + + +
    +
    +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/search.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/search.html new file mode 100644 index 0000000..12a5c29 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/search.html @@ -0,0 +1,41 @@ + + + +
    + + + +
    + +
    + + + + +
    +
    + +
    + + + +
    +
    + + + + +
    + + + + + + + + + +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/single-no-separators.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/single-no-separators.html new file mode 100644 index 0000000..221fc1f --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/single-no-separators.html @@ -0,0 +1,35 @@ + + + +
    +
    + +
    + + + + + + + + + +
    +
    + + + + + +
    + + + + + + +
    +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/templates/single.html b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/single.html new file mode 100644 index 0000000..3b102d2 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/templates/single.html @@ -0,0 +1,47 @@ + + + +
    +
    + + + + +
    +
    + + + + + + + + + + + + + +
    +
    + + + + + +
    + + + + + + + +
    + + +
    +
    + + + diff --git a/assets/wordpress/wp-content/themes/twentytwentytwo/theme.json b/assets/wordpress/wp-content/themes/twentytwentytwo/theme.json new file mode 100644 index 0000000..ec9ff86 --- /dev/null +++ b/assets/wordpress/wp-content/themes/twentytwentytwo/theme.json @@ -0,0 +1,374 @@ +{ + "$schema": "https://schemas.wp.org/trunk/theme.json", + "version": 2, + "customTemplates": [ + { + "name": "blank", + "title": "Blank", + "postTypes": [ + "page", + "post" + ] + }, + { + "name": "page-large-header", + "title": "Page (Large Header)", + "postTypes": [ + "page" + ] + }, + { + "name": "single-no-separators", + "title": "Single Post (No Separators)", + "postTypes": [ + "post" + ] + }, + { + "name": "page-no-separators", + "title": "Page (No Separators)", + "postTypes": [ + "page" + ] + } + ], + "settings": { + "appearanceTools": true, + "color": { + "duotone": [ + { + "colors": [ "#000000", "#ffffff" ], + "slug": "foreground-and-background", + "name": "Foreground and background" + }, + { + "colors": [ "#000000", "#ffe2c7" ], + "slug": "foreground-and-secondary", + "name": "Foreground and secondary" + }, + { + "colors": [ "#000000", "#f6f6f6" ], + "slug": "foreground-and-tertiary", + "name": "Foreground and tertiary" + }, + { + "colors": [ "#1a4548", "#ffffff" ], + "slug": "primary-and-background", + "name": "Primary and background" + }, + { + "colors": [ "#1a4548", "#ffe2c7" ], + "slug": "primary-and-secondary", + "name": "Primary and secondary" + }, + { + "colors": [ "#1a4548", "#f6f6f6" ], + "slug": "primary-and-tertiary", + "name": "Primary and tertiary" + } + ], + "gradients": [ + { + "slug": "vertical-secondary-to-tertiary", + "gradient": "linear-gradient(to bottom,var(--wp--preset--color--secondary) 0%,var(--wp--preset--color--tertiary) 100%)", + "name": "Vertical secondary to tertiary" + }, + { + "slug": "vertical-secondary-to-background", + "gradient": "linear-gradient(to bottom,var(--wp--preset--color--secondary) 0%,var(--wp--preset--color--background) 100%)", + "name": "Vertical secondary to background" + }, + { + "slug": "vertical-tertiary-to-background", + "gradient": "linear-gradient(to bottom,var(--wp--preset--color--tertiary) 0%,var(--wp--preset--color--background) 100%)", + "name": "Vertical tertiary to background" + }, + { + "slug": "diagonal-primary-to-foreground", + "gradient": "linear-gradient(to bottom right,var(--wp--preset--color--primary) 0%,var(--wp--preset--color--foreground) 100%)", + "name": "Diagonal primary to foreground" + }, + { + "slug": "diagonal-secondary-to-background", + "gradient": "linear-gradient(to bottom right,var(--wp--preset--color--secondary) 50%,var(--wp--preset--color--background) 50%)", + "name": "Diagonal secondary to background" + }, + { + "slug": "diagonal-background-to-secondary", + "gradient": "linear-gradient(to bottom right,var(--wp--preset--color--background) 50%,var(--wp--preset--color--secondary) 50%)", + "name": "Diagonal background to secondary" + }, + { + "slug": "diagonal-tertiary-to-background", + "gradient": "linear-gradient(to bottom right,var(--wp--preset--color--tertiary) 50%,var(--wp--preset--color--background) 50%)", + "name": "Diagonal tertiary to background" + }, + { + "slug": "diagonal-background-to-tertiary", + "gradient": "linear-gradient(to bottom right,var(--wp--preset--color--background) 50%,var(--wp--preset--color--tertiary) 50%)", + "name": "Diagonal background to tertiary" + } + ], + "palette": [ + { + "slug": "foreground", + "color": "#000000", + "name": "Foreground" + }, + { + "slug": "background", + "color": "#ffffff", + "name": "Background" + }, + { + "slug": "primary", + "color": "#1a4548", + "name": "Primary" + }, + { + "slug": "secondary", + "color": "#ffe2c7", + "name": "Secondary" + }, + { + "slug": "tertiary", + "color": "#F6F6F6", + "name": "Tertiary" + } + ] + }, + "custom": { + "spacing": { + "small": "max(1.25rem, 5vw)", + "medium": "clamp(2rem, 8vw, calc(4 * var(--wp--style--block-gap)))", + "large": "clamp(4rem, 10vw, 8rem)", + "outer": "var(--wp--custom--spacing--small, 1.25rem)" + }, + "typography": { + "font-size": { + "huge": "clamp(2.25rem, 4vw, 2.75rem)", + "gigantic": "clamp(2.75rem, 6vw, 3.25rem)", + "colossal": "clamp(3.25rem, 8vw, 6.25rem)" + }, + "line-height": { + "tiny": 1.15, + "small": 1.2, + "medium": 1.4, + "normal": 1.6 + } + } + }, + "spacing": { + "units": [ + "%", + "px", + "em", + "rem", + "vh", + "vw" + ] + }, + "typography": { + "dropCap": false, + "fontFamilies": [ + { + "fontFamily": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif", + "name": "System Font", + "slug": "system-font" + }, + { + "fontFamily": "\"Source Serif Pro\", serif", + "name": "Source Serif Pro", + "slug": "source-serif-pro", + "fontFace": [ + { + "fontFamily": "Source Serif Pro", + "fontWeight": "200 900", + "fontStyle": "normal", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2" ] + }, + { + "fontFamily": "Source Serif Pro", + "fontWeight": "200 900", + "fontStyle": "italic", + "fontStretch": "normal", + "src": [ "file:./assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2" ] + } + ] + } + ], + "fontSizes": [ + { + "size": "1rem", + "slug": "small" + }, + { + "size": "1.125rem", + "slug": "medium" + }, + { + "size": "1.75rem", + "slug": "large" + }, + { + "size": "clamp(1.75rem, 3vw, 2.25rem)", + "slug": "x-large" + } + ] + }, + "layout": { + "contentSize": "650px", + "wideSize": "1000px" + } + }, + "styles": { + "blocks": { + "core/button": { + "border": { + "radius": "0" + }, + "color": { + "background": "var(--wp--preset--color--primary)", + "text": "var(--wp--preset--color--background)" + }, + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/post-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "300", + "lineHeight": "var(--wp--custom--typography--line-height--tiny)", + "fontSize": "var(--wp--custom--typography--font-size--gigantic)" + } + }, + "core/post-comments": { + "spacing": { + "padding": { + "top": "var(--wp--custom--spacing--small)" + } + } + }, + "core/pullquote": { + "border": { + "width": "1px 0" + } + }, + "core/query-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "300", + "lineHeight": "var(--wp--custom--typography--line-height--small)", + "fontSize": "var(--wp--custom--typography--font-size--gigantic)" + } + }, + "core/quote": { + "border": { + "width": "1px" + } + }, + "core/site-title": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--system-font)", + "lineHeight": "var(--wp--custom--typography--line-height--normal)", + "fontSize": "var(--wp--preset--font-size--medium)", + "fontStyle": "italic", + "fontWeight": "normal" + } + } + }, + "color": { + "background": "var(--wp--preset--color--background)", + "text": "var(--wp--preset--color--foreground)" + }, + "elements": { + "h1": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "300", + "lineHeight": "var(--wp--custom--typography--line-height--tiny)", + "fontSize": "var(--wp--custom--typography--font-size--colossal)" + } + }, + "h2": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "300", + "lineHeight": "var(--wp--custom--typography--line-height--small)", + "fontSize": "var(--wp--custom--typography--font-size--gigantic)" + } + }, + "h3": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "300", + "lineHeight": "var(--wp--custom--typography--line-height--tiny)", + "fontSize": "var(--wp--custom--typography--font-size--huge)" + } + }, + "h4": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--source-serif-pro)", + "fontWeight": "300", + "lineHeight": "var(--wp--custom--typography--line-height--tiny)", + "fontSize": "var(--wp--preset--font-size--x-large)" + } + }, + "h5": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--system-font)", + "fontWeight": "700", + "textTransform": "uppercase", + "lineHeight": "var(--wp--custom--typography--line-height--normal)", + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "h6": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--system-font)", + "fontWeight": "400", + "textTransform": "uppercase", + "lineHeight": "var(--wp--custom--typography--line-height--normal)", + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "link": { + "color": { + "text": "var(--wp--preset--color--foreground)" + } + } + }, + "spacing": { + "blockGap": "1.5rem" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--system-font)", + "lineHeight": "var(--wp--custom--typography--line-height--normal)", + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "templateParts": [ + { + "name": "header", + "title": "Header", + "area": "header" + }, + { + "name": "header-large-dark", + "title": "Header (Dark, large)", + "area": "header" + }, + { + "name": "header-small-dark", + "title": "Header (Dark, small)", + "area": "header" + }, + { + "name": "footer", + "title": "Footer", + "area": "footer" + } + ] +} diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-1-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-1-150x150.png new file mode 100644 index 0000000..3e0f22b Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-1-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-1-300x187.png b/assets/wordpress/wp-content/uploads/2024/07/image-1-300x187.png new file mode 100644 index 0000000..c8adad2 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-1-300x187.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-1.png b/assets/wordpress/wp-content/uploads/2024/07/image-1.png new file mode 100644 index 0000000..2f3d4d3 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-1.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-10-150x142.png b/assets/wordpress/wp-content/uploads/2024/07/image-10-150x142.png new file mode 100644 index 0000000..7d77ac3 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-10-150x142.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-10-300x73.png b/assets/wordpress/wp-content/uploads/2024/07/image-10-300x73.png new file mode 100644 index 0000000..cf52ba5 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-10-300x73.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-10.png b/assets/wordpress/wp-content/uploads/2024/07/image-10.png new file mode 100644 index 0000000..a044030 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-10.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-11-150x149.png b/assets/wordpress/wp-content/uploads/2024/07/image-11-150x149.png new file mode 100644 index 0000000..cc30a31 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-11-150x149.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-11-300x73.png b/assets/wordpress/wp-content/uploads/2024/07/image-11-300x73.png new file mode 100644 index 0000000..04c0652 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-11-300x73.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-11.png b/assets/wordpress/wp-content/uploads/2024/07/image-11.png new file mode 100644 index 0000000..6e3335b Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-11.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-12-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-12-150x150.png new file mode 100644 index 0000000..093bc83 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-12-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-12-300x92.png b/assets/wordpress/wp-content/uploads/2024/07/image-12-300x92.png new file mode 100644 index 0000000..282f1a0 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-12-300x92.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-12.png b/assets/wordpress/wp-content/uploads/2024/07/image-12.png new file mode 100644 index 0000000..c1c1375 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-12.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-150x150.png new file mode 100644 index 0000000..83c9417 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-2-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-2-150x150.png new file mode 100644 index 0000000..83c9417 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-2-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-2-300x152.png b/assets/wordpress/wp-content/uploads/2024/07/image-2-300x152.png new file mode 100644 index 0000000..546249f Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-2-300x152.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-2.png b/assets/wordpress/wp-content/uploads/2024/07/image-2.png new file mode 100644 index 0000000..5e7b499 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-2.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-3-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-3-150x150.png new file mode 100644 index 0000000..8cc2980 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-3-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-3-300x145.png b/assets/wordpress/wp-content/uploads/2024/07/image-3-300x145.png new file mode 100644 index 0000000..16224dd Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-3-300x145.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-3.png b/assets/wordpress/wp-content/uploads/2024/07/image-3.png new file mode 100644 index 0000000..45b5b24 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-3.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-300x152.png b/assets/wordpress/wp-content/uploads/2024/07/image-300x152.png new file mode 100644 index 0000000..546249f Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-300x152.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-4-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-4-150x150.png new file mode 100644 index 0000000..bbe9e20 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-4-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-4.png b/assets/wordpress/wp-content/uploads/2024/07/image-4.png new file mode 100644 index 0000000..1b0cf50 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-4.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-5-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-5-150x150.png new file mode 100644 index 0000000..bbe9e20 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-5-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-5.png b/assets/wordpress/wp-content/uploads/2024/07/image-5.png new file mode 100644 index 0000000..1b0cf50 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-5.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-6-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-6-150x150.png new file mode 100644 index 0000000..3e0f22b Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-6-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-6-300x187.png b/assets/wordpress/wp-content/uploads/2024/07/image-6-300x187.png new file mode 100644 index 0000000..c8adad2 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-6-300x187.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-6.png b/assets/wordpress/wp-content/uploads/2024/07/image-6.png new file mode 100644 index 0000000..2f3d4d3 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-6.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-7-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-7-150x150.png new file mode 100644 index 0000000..802d074 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-7-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-7-300x172.png b/assets/wordpress/wp-content/uploads/2024/07/image-7-300x172.png new file mode 100644 index 0000000..d25be17 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-7-300x172.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-7.png b/assets/wordpress/wp-content/uploads/2024/07/image-7.png new file mode 100644 index 0000000..0da3042 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-7.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-8-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-8-150x150.png new file mode 100644 index 0000000..c5cc14b Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-8-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-8.png b/assets/wordpress/wp-content/uploads/2024/07/image-8.png new file mode 100644 index 0000000..c27f22d Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-8.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-9-1024x368.png b/assets/wordpress/wp-content/uploads/2024/07/image-9-1024x368.png new file mode 100644 index 0000000..ea961cc Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-9-1024x368.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-9-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/image-9-150x150.png new file mode 100644 index 0000000..8fc21ba Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-9-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-9-300x108.png b/assets/wordpress/wp-content/uploads/2024/07/image-9-300x108.png new file mode 100644 index 0000000..5684040 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-9-300x108.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-9-768x276.png b/assets/wordpress/wp-content/uploads/2024/07/image-9-768x276.png new file mode 100644 index 0000000..e917d6e Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-9-768x276.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image-9.png b/assets/wordpress/wp-content/uploads/2024/07/image-9.png new file mode 100644 index 0000000..58e29e9 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image-9.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/image.png b/assets/wordpress/wp-content/uploads/2024/07/image.png new file mode 100644 index 0000000..5e7b499 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/image.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/logo-1-119x119.png b/assets/wordpress/wp-content/uploads/2024/07/logo-1-119x119.png new file mode 100644 index 0000000..de1dccf Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/logo-1-119x119.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/logo-1-133x133.png b/assets/wordpress/wp-content/uploads/2024/07/logo-1-133x133.png new file mode 100644 index 0000000..ed80f68 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/logo-1-133x133.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/logo-1-150x150.png b/assets/wordpress/wp-content/uploads/2024/07/logo-1-150x150.png new file mode 100644 index 0000000..2fc3b80 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/logo-1-150x150.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/logo-1-300x300.png b/assets/wordpress/wp-content/uploads/2024/07/logo-1-300x300.png new file mode 100644 index 0000000..1201033 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/logo-1-300x300.png differ diff --git a/assets/wordpress/wp-content/uploads/2024/07/logo-1.png b/assets/wordpress/wp-content/uploads/2024/07/logo-1.png new file mode 100644 index 0000000..9e2dae5 Binary files /dev/null and b/assets/wordpress/wp-content/uploads/2024/07/logo-1.png differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..81379d1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,29 @@ +version: '3' + +services: + wordpress: + image: wordpress:6 + ports: + - 8080:80 + environment: + WORDPRESS_DB_HOST: db:3306 + WORDPRESS_DB_NAME: askar + WORDPRESS_DB_USER: askar + WORDPRESS_DB_PASSWORD: askar + volumes: + - ./assets/wordpress/wp-content:/var/www/html/wp-content + + db: + image: mysql:8 + ports: + - 3306:3306 + environment: + MYSQL_DATABASE: askar + MYSQL_USER: askar + MYSQL_PASSWORD: askar + MYSQL_ROOT_PASSWORD: toor + volumes: + - db:/var/lib/mysql + +volumes: + db: {}