askar-website/assets/db/dump.sql

967 lines
4.4 MiB
MySQL
Raw Normal View History

2024-07-17 22:49:32 +02:00
/*!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 <a href=\"https://en.gravatar.com/\">Gravatar</a>.',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:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}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/edi
2024-07-17 23:30:51 +02:00
(122,'_transient_doing_cron','1721251666.4916601181030273437500','yes'),
2024-07-17 22:49:32 +02:00
(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:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";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:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";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:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";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:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";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:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";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:\"<a href=\"#\">Log in</a>\";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:\"
(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\"
(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
(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:\"c
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\";
(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<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>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.</p>\n\n\n\n<p>If you&#8217;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.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;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.</p>\n\n\n\n<p>So on the podcast today, we have Fernando Tellado. Fernando is a very large force in the WordPress community in Spain. He&#8217;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&#8217;s published four books about WordPress. Not only that, he&#8217;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&#8217;s official community website.</p>\n\n\n\n<p>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
(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','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/07/dorsey/\'>WordPress 6.6 “Dorsey”</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/07/wordpress-6-6-release-candidate-3/\'>WordPress 6.6 Release Candidate 3</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/128-fernando-tellado-on-ai-tools-and-rehumanising-the-web\'>WPTavern: #128 Fernando Tellado on AI Tools and Rehumanising the Web</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/boosting-woocommerce-performance-with-marcel-and-mike/\'>Do The Woo Community: Boosting WooCommerce Performance with Marcel and Mike</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2024/07/6-6/\'>Matt: 6.6</a></li></ul></div>','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<div class=\"wp-block-group alignfull is-content-justification-center is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0\">\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-content-justification-left is-layout-constrained wp-container-core-column-is-layout-1 wp-block-column-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40%\">\n<p>Exploring life&#8217;s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\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:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Contents\"},\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"450px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-
(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<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-1 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185
(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<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-3 wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group alignwide has-base-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"border-radius:16px;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">\n<p class=\"has-text-align-center\">Weve worked with some of the best companies.</p>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-core-group-is-layout-1 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n\n\n\n\n\n\n\n</div>\n</div>\n</div>\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:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\"}},\"border\":{\"radius\":\"16px\"}},\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide has-base-2-background-color has-background\" style=\"border-radius:16px;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Weve worked with some of the best companies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\",\"padding\":{\"right\":\"0\",\"left\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:image {\"width\":\"150px\",\"aspectRatio\":\"4/3\",\"scale\":\"contain\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image is-resized\"><img alt=\"\" style=\"aspect-ratio:4/3;object-fit:contain;width:150px\" /></figure>\n<!-- /wp:image
(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','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','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','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8080/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','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','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://localhost:8080.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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 &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading
(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
(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','<!-- wp:cover {\"minHeight\":720,\"minHeightUnit\":\"px\",\"customGradient\":\"linear-gradient(35deg,rgb(6,0,151) 0%,rgb(130,4,255) 73%,rgb(193,15,255) 100%)\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:720px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(35deg,rgb(6,0,151) 0%,rgb(130,4,255) 73%,rgb(193,15,255) 100%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":118,\"mediaLink\":\"\",\"mediaType\":\"image\",\"mediaWidth\":43,\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:auto 43%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"left\",\"level\":1,\"textColor\":\"white\"} -->\n<h1 class=\"has-text-align-left has-white-color has-text-color\">Your Idea Matters!</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pulvinar enim ac tortor nulla facilisi tristique facilisi <br>elementum sollicitudin eget lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\">Make a Website</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div><figure class=\"wp-block-media-text__media\"><img src=\"http://localhost:8080/wp-content/themes/astra/inc/assets/images/starter-content/hero-img.svg\" alt=\"\" class=\"wp-image-118 size-full\"/></figure></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0px\"}}},\"backgroundColor\":\"ast-global-color-5\",\"layout\":{\"inherit\":false,\"contentSize\":\"1200px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-ast-global-color-5-background-color has-background\" style=\"padding-bottom:0px\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"blockGap\":\"40px\"}}} -->\n<div class=\"wp-block-columns are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:image {\"id\":134,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/themes/astra/inc/assets/images/starter-content/building.svg\" alt=\"\" class=\"wp-image-134\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"style\":{\"spacing\":{\"margin\":{\"top\":\"16px\"}}}} -->\n<h3 class=\"has-text-align-left\" style=\"margin-top:16px\">Local Business</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Lorem ipsum dolor consectetur adipiscing elit eiusmod.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:image {\"id\":135,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/themes/astra/inc/assets/images/starter-content/shopping-bag.svg\" alt=\"\" class=\"wp-image-135\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"style\":{\"spacing\":{\"margin\":{\"top\":\"16px\"}}}} -->\n<h3 class=\"has-text-align-left\" style=\"margin-top:16px\">Online Store</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\
(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\": \"<a href=\\\"#\\\">Log in</a>\",\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
(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','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://localhost:8080.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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 &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:headin
(28,1,'2024-07-16 22:29:58','2024-07-16 22:29:58','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8080/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','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','<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->','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','<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->','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','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Rule of law.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Commitment and honesty.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Transparency in action.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Teamwork.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equal opportunities and human rights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Efficiency and effectiveness of individuals.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Respect and non-discrimination.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Democracy.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Rule of law.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Commitment and honesty.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Transparency in action.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Teamwork.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equal opportunities and human rights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Efficiency and effectiveness of individuals.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Respect and non-discrimination.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Democracy.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Rule of law.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Commitment and honesty.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Transparency in action.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Teamwork.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equal opportunities and human rights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Efficiency and effectiveness of individuals.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Respect and non-discrimination.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Democracy.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The first objective: building and providing educational opportunities to develop capabilities and hone skills.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Second objective: Engage in appropriate opportunities to demonstrate the impact of our work on human rights, women\'s rights, and educational issues.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Third objective: Providing opportunities for children and youth to develop their abilities in the field of academic education, culture, and arts.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fourth objective: Improving additional support for people with disabilities and their families.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fifth objective: Supporting gender equality and the empowerment of women and girls.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sixth objective: Pursuing sustainable development.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seventh objective: Providing humanitarian aid at the local and national levels.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Eighth objective: Continue to enhance effective, value-added partnerships.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ninth objective: Improving the quality of work by developing and strengthening organizational capabilities and sustainability by building the capabilities of employees and volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tenth objective: achieving effective financial stability and finding a source of self-financing.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The first objective: building and providing educational opportunities to develop capabilities and hone skills.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Second objective: Engage in appropriate opportunities to demonstrate the impact of our work on human rights, women\'s rights, and educational issues.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Third objective: Providing opportunities for children and youth to develop their abilities in the field of academic education, culture, and arts.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fourth objective: Improving additional support for people with disabilities and their families.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fifth objective: Supporting gender equality and the empowerment of women and girls.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sixth objective: Pursuing sustainable development.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seventh objective: Providing humanitarian aid at the local and national levels.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Eighth objective: Continue to enhance effective, value-added partnerships.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ninth objective: Improving the quality of work by developing and strengthening organizational capabilities and sustainability by building the capabilities of employees and volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tenth objective: achieving effective financial stability and finding a source of self-financing.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":51,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-10.png\" alt=\"\" class=\"wp-image-51\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":52,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-11.png\" alt=\"\" class=\"wp-image-52\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":50,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-9-1024x368.png\" alt=\"\" class=\"wp-image-50\"/></figure>\n<!-- /wp:image -->','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','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":51,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-10.png\" alt=\"\" class=\"wp-image-51\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":52,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-11.png\" alt=\"\" class=\"wp-image-52\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":50,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-9-1024x368.png\" alt=\"\" class=\"wp-image-50\"/></figure>\n<!-- /wp:image -->','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',
(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','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->','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','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:group {\"style\":{\"dimensions\":{\"minHeight\":\"\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":20,\"shouldSyncIcon\":false,\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} /-->\n\n<!-- wp:site-title {\"level\":0,\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"className\":\"has-medium-font-size\",\"fontFamily\":\"body\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size has-body-font-family\" style=\"font-style:normal;font-weight:600\">About</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"fontSize\":\"small\"} -->\n<!-- wp:navigation-link {\"label\":\"Team\",\"url\":\"#\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"History\",\"url\":\"#\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Careers\",\"url\":\"#\"} /-->\n<!-- /wp:navigation --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"className\":\"has-medium-font-size\",\"fontFamily\":\"body\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size has-body-font-family\" style=\"font-style:normal;font-weight:600\">Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"fontSize\":\"small\"} -->\n<!-- wp:navigation-link {\"label\":\"Privacy Policy\",\"url\":\"#\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Terms and Conditions\",\"url\":\"#\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"url\":\"#\"} /-->\n<!-- /wp:navigation --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"className\":\"has-me
(65,1,'2024-07-16 23:02:02','2024-07-16 23:02:02','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->','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','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"level\":0,\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','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','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->','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','<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The Social Development Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Volunteers Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>People with Disabilities Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Down Dreams Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shams AL-Amal Kindergarten</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The Social Development Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Volunteers Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>People with Disabilities Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Down Dreams Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shams AL-Amal Kindergarten</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>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”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,  computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on womens rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance Dabka and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence. </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camps children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>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”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,  computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on womens rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance Dabka and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence. </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camps children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','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','<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>
(81,1,'2024-07-17 20:13:56','2024-07-17 20:13:56','<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>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).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>
(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','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->','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','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','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','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"level\":0,\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','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 */;
2024-07-17 23:30:51 +02:00
-- Dump completed on 2024-07-17 23:27:47