JezK
Edit File: kenyacla_watamunew.sql
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: kenyacla_watamunew -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB-cll-lve-log /*!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' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Current Database: `kenyacla_watamunew` -- -- -- Table structure for table `kc_commentmeta` -- DROP TABLE IF EXISTS `kc_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_commentmeta` -- LOCK TABLES `kc_commentmeta` WRITE; /*!40000 ALTER TABLE `kc_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `kc_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_comments` -- DROP TABLE IF EXISTS `kc_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_comments` -- LOCK TABLES `kc_comments` WRITE; /*!40000 ALTER TABLE `kc_comments` DISABLE KEYS */; INSERT INTO `kc_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-02-16 12:25:27','2024-02-16 12:25:27','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 `kc_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_links` -- DROP TABLE IF EXISTS `kc_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, `link_rating` int(11) NOT NULL DEFAULT 0, `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_links` -- LOCK TABLES `kc_links` WRITE; /*!40000 ALTER TABLE `kc_links` DISABLE KEYS */; /*!40000 ALTER TABLE `kc_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_options` -- DROP TABLE IF EXISTS `kc_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=MyISAM AUTO_INCREMENT=153 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_options` -- LOCK TABLES `kc_options` WRITE; /*!40000 ALTER TABLE `kc_options` DISABLE KEYS */; INSERT INTO `kc_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','https://kenyaclassictourtravel.com/','yes'),(2,'home','https://kenyaclassictourtravel.com/','yes'),(3,'blogname','Kenya Classic Tour Travel','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','hkellah@gmail.com','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:96:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','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','56657','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','posts','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','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','1723638327','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','56657','yes'),(101,'kc_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','1','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:4:{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:13:\"array_version\";i:3;}','yes'),(106,'cron','a:8:{i:1708089928;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1708129528;a:3:{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:1708129711;a:1:{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:1708172728;a:2:{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:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1708172911;a:2:{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;}}}i:1708172912;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:1708691129;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','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.4.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(123,'theme_mods_twentytwentyfour','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(124,'recovery_keys','a:0:{}','yes'),(132,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"6.4.3\";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:12:\"last_checked\";i:1708086333;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),(134,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:17:\"hkellah@gmail.com\";s:7:\"version\";s:5:\"6.4.3\";s:9:\"timestamp\";i:1708086334;}','no'),(136,'_site_transient_timeout_browser_a8877bd08bc4b8d79850cfe10dc29217','1708691311','no'),(137,'_site_transient_browser_a8877bd08bc4b8d79850cfe10dc29217','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"121.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(128,'_site_transient_timeout_theme_roots','1708088129','no'),(129,'_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'),(130,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1708086329;s:7:\"checked\";a:3:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.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.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(133,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1708086334;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.1.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.4.3\";s:12:\"requires_php\";s:6:\"5.6.20\";}}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\";}}s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:3:\"5.3\";s:9:\"hello.php\";s:5:\"1.7.2\";}}','no'),(138,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1708691312','no'),(139,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','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'),(152,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"success\";}}','no'),(150,'finished_updating_comment_type','1','yes'),(141,'_site_transient_timeout_available_translations','1708097338','no'),(142,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.7\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.7/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-19 09:22:30\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.3/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.25/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 20:18:03\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-11 09:33:34\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-14 17:56:11\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 08:07:30\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 14:45:04\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-11 13:58:40\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 07:57:24\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-08 18:40:24\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 19:08:22\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 19:08:42\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-08 18:40:48\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.4.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.4/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-14 23:20:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-22 02:53:03\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 17:36:08\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-28 12:21:57\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-25 14:09:36\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-09-20 08:57:43\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-08 20:42:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-12-20 03:52:48\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 16:48:57\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-12 14:01:59\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.9\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.9/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.9\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.9/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.15\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.15/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.20\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.20/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 03:32:51\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-05 10:16:58\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-12 17:31:37\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-15 06:10:53\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 04:04:15\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-09 09:46:35\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-29 13:35:45\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-08 14:03:11\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.4/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-13 00:00:51\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 05:27:26\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.32\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.32/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 09:00:08\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-03 21:54:15\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.4/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-22 12:40:26\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 12:30:59\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.25/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-09 18:36:30\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-03 13:53:06\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.25/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.3.3\";s:7:\"updated\";s:19:\"2024-02-12 09:56:27\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.4/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.25/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.20\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.20/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.5\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.5/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-19 07:05:28\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-09 09:24:08\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 17:48:58\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.3/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-15 12:14:45\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-14 05:58:05\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.7\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-14 15:04:06\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-28 08:03:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 06:26:15\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.14\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.14/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.37\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.37/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 13:26:51\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 07:41:46\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-14 13:34:08\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 10:24:06\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 11:59:14\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-13 19:59:52\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.33\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.33/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-03 14:03:53\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 10:24:39\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 10:22:34\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 11:28:18\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 16:39:48\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.15\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.15/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 05:55:25\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-12 10:29:16\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-14 12:47:33\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-04 19:24:45\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-05 20:51:57\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 00:27:26\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 11:09:57\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.37\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.37/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.9\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.9/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.24/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-06 00:04:30\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-03 03:47:06\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-14 12:08:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.15\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.15/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.4/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 22:23:09\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 01:18:24\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(151,'_transient_timeout_settings_errors','1708086751','no'),(144,'can_compress_scripts','0','yes'),(145,'WPLANG','','yes'),(146,'new_admin_email','hkellah@gmail.com','yes'); /*!40000 ALTER TABLE `kc_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_postmeta` -- DROP TABLE IF EXISTS `kc_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_postmeta` -- LOCK TABLES `kc_postmeta` WRITE; /*!40000 ALTER TABLE `kc_postmeta` DISABLE KEYS */; INSERT INTO `kc_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'); /*!40000 ALTER TABLE `kc_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_posts` -- DROP TABLE IF EXISTS `kc_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(255) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT 0, `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_posts` -- LOCK TABLES `kc_posts` WRITE; /*!40000 ALTER TABLE `kc_posts` DISABLE KEYS */; INSERT INTO `kc_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2024-02-16 12:25:27','2024-02-16 12:25:27','<!-- 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-02-16 12:25:27','2024-02-16 12:25:27','',0,'https://kenyaclassictourtravel.com/new1/?p=1',0,'post','',1),(2,1,'2024-02-16 12:25:27','2024-02-16 12:25:27','<!-- 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ñ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=\"https://kenyaclassictourtravel.com/new1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2024-02-16 12:25:27','2024-02-16 12:25:27','',0,'https://kenyaclassictourtravel.com/new1/?page_id=2',0,'page','',0),(3,1,'2024-02-16 12:25:27','2024-02-16 12:25:27','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://kenyaclassictourtravel.com/new1.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><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’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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 "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2024-02-16 12:25:27','2024-02-16 12:25:27','',0,'https://kenyaclassictourtravel.com/new1/?page_id=3',0,'page','',0),(4,0,'2024-02-16 12:25:28','2024-02-16 12:25:28','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-02-16 12:25:28','2024-02-16 12:25:28','',0,'https://kenyaclassictourtravel.com/new1/2024/02/16/navigation/',0,'wp_navigation','',0),(5,1,'2024-02-16 12:28:32','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-02-16 12:28:32','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/new1/?p=5',0,'post','',0); /*!40000 ALTER TABLE `kc_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_term_relationships` -- DROP TABLE IF EXISTS `kc_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_term_relationships` -- LOCK TABLES `kc_term_relationships` WRITE; /*!40000 ALTER TABLE `kc_term_relationships` DISABLE KEYS */; INSERT INTO `kc_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `kc_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_term_taxonomy` -- DROP TABLE IF EXISTS `kc_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT 0, `count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_term_taxonomy` -- LOCK TABLES `kc_term_taxonomy` WRITE; /*!40000 ALTER TABLE `kc_term_taxonomy` DISABLE KEYS */; INSERT INTO `kc_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `kc_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_termmeta` -- DROP TABLE IF EXISTS `kc_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_termmeta` -- LOCK TABLES `kc_termmeta` WRITE; /*!40000 ALTER TABLE `kc_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `kc_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_terms` -- DROP TABLE IF EXISTS `kc_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT 0, PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_terms` -- LOCK TABLES `kc_terms` WRITE; /*!40000 ALTER TABLE `kc_terms` DISABLE KEYS */; INSERT INTO `kc_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `kc_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_usermeta` -- DROP TABLE IF EXISTS `kc_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_usermeta` -- LOCK TABLES `kc_usermeta` WRITE; /*!40000 ALTER TABLE `kc_usermeta` DISABLE KEYS */; INSERT INTO `kc_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','hkellah'),(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,'kc_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'kc_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"ae4ee25794a7d9d59dd31445ac45ef5efed57c909e62bcb0ec3c06b3a90251df\";a:4:{s:10:\"expiration\";i:1708259252;s:2:\"ip\";s:14:\"197.248.140.95\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0\";s:5:\"login\";i:1708086452;}}'),(17,1,'kc_user-settings','libraryContent=browse&editor=html'),(18,1,'kc_user-settings-time','1708086507'),(19,1,'kc_dashboard_quick_press_last_post_id','5'); /*!40000 ALTER TABLE `kc_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kc_users` -- DROP TABLE IF EXISTS `kc_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `kc_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(255) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT 0, `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kc_users` -- LOCK TABLES `kc_users` WRITE; /*!40000 ALTER TABLE `kc_users` DISABLE KEYS */; INSERT INTO `kc_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'hkellah','$P$BQq.4ODHG43HP.nGaOR1cxSZldrBeo0','hkellah','hkellah@gmail.com','https://kenyaclassictourtravel.com/new1','2024-02-16 12:25:27','',0,'hkellah'); /*!40000 ALTER TABLE `kc_users` ENABLE KEYS */; UNLOCK TABLES; -- -- 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 = utf8mb4 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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 = utf8mb4 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-02-16 12:47:44','2024-02-16 12:47:44','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,'post-trashed','','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 = utf8mb4 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, `link_rating` int(11) NOT NULL DEFAULT 0, `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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 = utf8mb4 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=MyISAM AUTO_INCREMENT=1253 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','https://kenyaclassictourtravel.com','yes'),(2,'home','https://kenyaclassictourtravel.com','yes'),(3,'blogname','Kenya Classic Tour Travel','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','hkellah@gmail.com','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:272:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:10:\"booking/?$\";s:27:\"index.php?post_type=booking\";s:40:\"booking/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=booking&feed=$matches[1]\";s:35:\"booking/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=booking&feed=$matches[1]\";s:27:\"booking/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=booking&paged=$matches[1]\";s:7:\"trip/?$\";s:24:\"index.php?post_type=trip\";s:37:\"trip/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=trip&feed=$matches[1]\";s:32:\"trip/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=trip&feed=$matches[1]\";s:24:\"trip/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=trip&paged=$matches[1]\";s:10:\"enquiry/?$\";s:27:\"index.php?post_type=enquiry\";s:40:\"enquiry/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=enquiry&feed=$matches[1]\";s:35:\"enquiry/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=enquiry&feed=$matches[1]\";s:27:\"enquiry/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=enquiry&paged=$matches[1]\";s:11:\"customer/?$\";s:28:\"index.php?post_type=customer\";s:41:\"customer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=customer&feed=$matches[1]\";s:36:\"customer/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=customer&feed=$matches[1]\";s:28:\"customer/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=customer&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:41:\"trip-packages/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"trip-packages/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"trip-packages/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"trip-packages/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"trip-packages/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"trip-packages/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"trip-packages/([^/]+)/embed/?$\";s:46:\"index.php?trip-packages=$matches[1]&embed=true\";s:34:\"trip-packages/([^/]+)/trackback/?$\";s:40:\"index.php?trip-packages=$matches[1]&tb=1\";s:42:\"trip-packages/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?trip-packages=$matches[1]&paged=$matches[2]\";s:49:\"trip-packages/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?trip-packages=$matches[1]&cpage=$matches[2]\";s:38:\"trip-packages/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?trip-packages=$matches[1]&page=$matches[2]\";s:30:\"trip-packages/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"trip-packages/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"trip-packages/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"trip-packages/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"trip-packages/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"trip-packages/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:65:\"trip-packages-categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?trip-packages-categories=$matches[1]&feed=$matches[2]\";s:60:\"trip-packages-categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?trip-packages-categories=$matches[1]&feed=$matches[2]\";s:41:\"trip-packages-categories/([^/]+)/embed/?$\";s:57:\"index.php?trip-packages-categories=$matches[1]&embed=true\";s:53:\"trip-packages-categories/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?trip-packages-categories=$matches[1]&paged=$matches[2]\";s:35:\"trip-packages-categories/([^/]+)/?$\";s:46:\"index.php?trip-packages-categories=$matches[1]\";s:35:\"booking/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"booking/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"booking/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"booking/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"booking/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"booking/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"booking/([^/]+)/embed/?$\";s:40:\"index.php?booking=$matches[1]&embed=true\";s:28:\"booking/([^/]+)/trackback/?$\";s:34:\"index.php?booking=$matches[1]&tb=1\";s:48:\"booking/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?booking=$matches[1]&feed=$matches[2]\";s:43:\"booking/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?booking=$matches[1]&feed=$matches[2]\";s:36:\"booking/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?booking=$matches[1]&paged=$matches[2]\";s:43:\"booking/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?booking=$matches[1]&cpage=$matches[2]\";s:32:\"booking/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?booking=$matches[1]&page=$matches[2]\";s:24:\"booking/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"booking/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"booking/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"booking/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"booking/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"booking/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"trip/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"trip/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"trip/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"trip/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"trip/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"trip/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"trip/([^/]+)/embed/?$\";s:37:\"index.php?trip=$matches[1]&embed=true\";s:25:\"trip/([^/]+)/trackback/?$\";s:31:\"index.php?trip=$matches[1]&tb=1\";s:45:\"trip/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?trip=$matches[1]&feed=$matches[2]\";s:40:\"trip/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?trip=$matches[1]&feed=$matches[2]\";s:33:\"trip/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?trip=$matches[1]&paged=$matches[2]\";s:40:\"trip/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?trip=$matches[1]&cpage=$matches[2]\";s:29:\"trip/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?trip=$matches[1]&page=$matches[2]\";s:21:\"trip/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"trip/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"trip/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"trip/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"trip/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"trip/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"enquiry/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"enquiry/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"enquiry/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"enquiry/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"enquiry/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"enquiry/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"enquiry/([^/]+)/embed/?$\";s:40:\"index.php?enquiry=$matches[1]&embed=true\";s:28:\"enquiry/([^/]+)/trackback/?$\";s:34:\"index.php?enquiry=$matches[1]&tb=1\";s:48:\"enquiry/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?enquiry=$matches[1]&feed=$matches[2]\";s:43:\"enquiry/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?enquiry=$matches[1]&feed=$matches[2]\";s:36:\"enquiry/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?enquiry=$matches[1]&paged=$matches[2]\";s:43:\"enquiry/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?enquiry=$matches[1]&cpage=$matches[2]\";s:32:\"enquiry/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?enquiry=$matches[1]&page=$matches[2]\";s:24:\"enquiry/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"enquiry/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"enquiry/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"enquiry/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"enquiry/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"enquiry/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"customer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"customer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"customer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"customer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"customer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"customer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"customer/([^/]+)/embed/?$\";s:41:\"index.php?customer=$matches[1]&embed=true\";s:29:\"customer/([^/]+)/trackback/?$\";s:35:\"index.php?customer=$matches[1]&tb=1\";s:49:\"customer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?customer=$matches[1]&feed=$matches[2]\";s:44:\"customer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?customer=$matches[1]&feed=$matches[2]\";s:37:\"customer/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?customer=$matches[1]&paged=$matches[2]\";s:44:\"customer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?customer=$matches[1]&cpage=$matches[2]\";s:33:\"customer/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?customer=$matches[1]&page=$matches[2]\";s:25:\"customer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"customer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"customer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"customer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"customer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"customer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"wte-payments/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"wte-payments/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"wte-payments/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"wte-payments/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"wte-payments/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"wte-payments/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"wte-payments/([^/]+)/embed/?$\";s:45:\"index.php?wte-payments=$matches[1]&embed=true\";s:33:\"wte-payments/([^/]+)/trackback/?$\";s:39:\"index.php?wte-payments=$matches[1]&tb=1\";s:41:\"wte-payments/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?wte-payments=$matches[1]&paged=$matches[2]\";s:48:\"wte-payments/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?wte-payments=$matches[1]&cpage=$matches[2]\";s:37:\"wte-payments/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?wte-payments=$matches[1]&page=$matches[2]\";s:29:\"wte-payments/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"wte-payments/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"wte-payments/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"wte-payments/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"wte-payments/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"wte-payments/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"wp-travel-engine-coupon/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:61:\"wp-travel-engine-coupon/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:81:\"wp-travel-engine-coupon/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:76:\"wp-travel-engine-coupon/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:76:\"wp-travel-engine-coupon/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"wp-travel-engine-coupon/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"wp-travel-engine-coupon/([^/]+)/embed/?$\";s:43:\"index.php?wte-coupon=$matches[1]&embed=true\";s:44:\"wp-travel-engine-coupon/([^/]+)/trackback/?$\";s:37:\"index.php?wte-coupon=$matches[1]&tb=1\";s:52:\"wp-travel-engine-coupon/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?wte-coupon=$matches[1]&paged=$matches[2]\";s:59:\"wp-travel-engine-coupon/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?wte-coupon=$matches[1]&cpage=$matches[2]\";s:48:\"wp-travel-engine-coupon/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?wte-coupon=$matches[1]&page=$matches[2]\";s:40:\"wp-travel-engine-coupon/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"wp-travel-engine-coupon/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"wp-travel-engine-coupon/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"wp-travel-engine-coupon/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"wp-travel-engine-coupon/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"wp-travel-engine-coupon/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"destinations/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?destination=$matches[1]&feed=$matches[2]\";s:46:\"destinations/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?destination=$matches[1]&feed=$matches[2]\";s:27:\"destinations/(.+?)/embed/?$\";s:44:\"index.php?destination=$matches[1]&embed=true\";s:39:\"destinations/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?destination=$matches[1]&paged=$matches[2]\";s:21:\"destinations/(.+?)/?$\";s:33:\"index.php?destination=$matches[1]\";s:49:\"activities/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?activities=$matches[1]&feed=$matches[2]\";s:44:\"activities/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?activities=$matches[1]&feed=$matches[2]\";s:25:\"activities/(.+?)/embed/?$\";s:43:\"index.php?activities=$matches[1]&embed=true\";s:37:\"activities/(.+?)/page/?([0-9]{1,})/?$\";s:50:\"index.php?activities=$matches[1]&paged=$matches[2]\";s:19:\"activities/(.+?)/?$\";s:32:\"index.php?activities=$matches[1]\";s:49:\"trip-types/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?trip_types=$matches[1]&feed=$matches[2]\";s:44:\"trip-types/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?trip_types=$matches[1]&feed=$matches[2]\";s:25:\"trip-types/(.+?)/embed/?$\";s:43:\"index.php?trip_types=$matches[1]&embed=true\";s:37:\"trip-types/(.+?)/page/?([0-9]{1,})/?$\";s:50:\"index.php?trip_types=$matches[1]&paged=$matches[2]\";s:19:\"trip-types/(.+?)/?$\";s:32:\"index.php?trip_types=$matches[1]\";s:54:\"trip-difficulty/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?difficulty=$matches[1]&feed=$matches[2]\";s:49:\"trip-difficulty/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?difficulty=$matches[1]&feed=$matches[2]\";s:30:\"trip-difficulty/(.+?)/embed/?$\";s:43:\"index.php?difficulty=$matches[1]&embed=true\";s:42:\"trip-difficulty/(.+?)/page/?([0-9]{1,})/?$\";s:50:\"index.php?difficulty=$matches[1]&paged=$matches[2]\";s:24:\"trip-difficulty/(.+?)/?$\";s:32:\"index.php?difficulty=$matches[1]\";s:49:\"trip-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?trip_tag=$matches[1]&feed=$matches[2]\";s:44:\"trip-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?trip_tag=$matches[1]&feed=$matches[2]\";s:25:\"trip-tag/([^/]+)/embed/?$\";s:41:\"index.php?trip_tag=$matches[1]&embed=true\";s:37:\"trip-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?trip_tag=$matches[1]&paged=$matches[2]\";s:19:\"trip-tag/([^/]+)/?$\";s:30:\"index.php?trip_tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=10&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:45:\"(.?.+?)/wp-travel-engine-lost-pass(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&wp-travel-engine-lost-pass=$matches[3]\";s:51:\"(.?.+?)/wp-travel-engine-customer-logout(/(.*))?/?$\";s:75:\"index.php?pagename=$matches[1]&wp-travel-engine-customer-logout=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:37:\"wp-travel-engine/wp-travel-engine.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:51:\"travel-agency-companion/travel-agency-companion.php\";}','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','travel-agency','yes'),(41,'stylesheet','travel-charm','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','56657','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','11','yes'),(82,'page_on_front','10','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','85','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','1723639664','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','56657','yes'),(101,'wp_user_roles','a:6:{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;}}s:25:\"wp-travel-engine-customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";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:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"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:13:\"array_version\";i:3;}','yes'),(106,'cron','a:8:{i:1708242464;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1708243469;a:1:{s:29:\"wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1708260464;a:4:{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: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:1708260482;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:1708260483;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:1708692466;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:1708778864;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.4.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(123,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1708087957;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\";}}}}','yes'),(124,'recovery_keys','a:0:{}','yes'),(132,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"6.4.3\";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:12:\"last_checked\";i:1708217393;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),(134,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:17:\"hkellah@gmail.com\";s:7:\"version\";s:5:\"6.4.3\";s:9:\"timestamp\";i:1708087672;}','no'),(136,'_site_transient_timeout_browser_a8877bd08bc4b8d79850cfe10dc29217','1708692482','no'),(137,'_site_transient_browser_a8877bd08bc4b8d79850cfe10dc29217','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"121.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(993,'_site_transient_timeout_theme_roots','1708219194','no'),(994,'_site_transient_theme_roots','a:5:{s:13:\"travel-agency\";s:7:\"/themes\";s:12:\"travel-charm\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(166,'recently_activated','a:0:{}','yes'),(167,'widget_travel_agency_featured_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(168,'widget_raratheme_popular_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(169,'widget_raratheme_recent_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1708217394;s:7:\"checked\";a:5:{s:13:\"travel-agency\";s:5:\"1.5.1\";s:12:\"travel-charm\";s:5:\"1.0.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:5:{s:13:\"travel-agency\";a:6:{s:5:\"theme\";s:13:\"travel-agency\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/travel-agency/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/travel-agency.1.5.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"travel-charm\";a:6:{s:5:\"theme\";s:12:\"travel-charm\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:42:\"https://wordpress.org/themes/travel-charm/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/travel-charm.1.0.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.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.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(138,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1708692483','no'),(139,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','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'),(142,'finished_updating_comment_type','1','yes'),(145,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1708130946','no'),(148,'can_compress_scripts','0','yes'),(149,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1708130947','no'),(1230,'_wp_session_expires_5fa4aa4745409dc1591a1e71b23f0ea8','1708241604','yes'),(1231,'_wp_session_aa0f1670e81a7aa1b3a959c0be90306c','a:0:{}','yes'),(1232,'_wp_session_expires_aa0f1670e81a7aa1b3a959c0be90306c','1708241610','yes'),(1236,'_wp_session_84d78d3f80bc9c9bf40666f5d0e49f86','a:0:{}','yes'),(1234,'_wp_session_a397ae2df7464e009d3a51997737f2f4','a:0:{}','yes'),(1227,'_wp_session_a102d0ab6134380febc2cb323bb32972','a:0:{}','yes'),(1228,'_wp_session_expires_a102d0ab6134380febc2cb323bb32972','1708241580','yes'),(157,'current_theme','Travel Charm','yes'),(158,'theme_mods_travel-charm','a:27:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:10:\"activities\";a:8:{i:0;a:4:{s:9:\"thumbnail\";i:101;s:4:\"name\";s:9:\"Excursion\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:1;a:4:{s:9:\"thumbnail\";i:103;s:4:\"name\";s:14:\"Birds Watching\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:2;a:4:{s:9:\"thumbnail\";i:111;s:4:\"name\";s:15:\"Wildlife Safari\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:3;a:4:{s:9:\"thumbnail\";i:108;s:4:\"name\";s:10:\"Sand Dunes\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:4;a:4:{s:9:\"thumbnail\";i:124;s:4:\"name\";s:16:\"Dolphin Watching\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:5;a:4:{s:9:\"thumbnail\";i:129;s:4:\"name\";s:11:\"Sun Bathing\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:6;a:4:{s:9:\"thumbnail\";i:126;s:4:\"name\";s:19:\"Archeological Sites\";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}i:7;a:4:{s:9:\"thumbnail\";i:130;s:4:\"name\";s:22:\"Wilderbeest Migration \";s:4:\"desc\";s:71:\"Tell your potential customers about the services that you provide here.\";s:3:\"url\";s:1:\"#\";}}s:6:\"why_us\";a:4:{i:0;a:4:{s:10:\"whyus-icon\";s:11:\"fa fa-check\";s:5:\"title\";s:42:\"TripAdvisor Multiple Award winning company\";s:11:\"description\";s:100:\"We\'ve received Certificate of Excellence award from TripAdvisor, the world\'s largest travel website.\";s:3:\"url\";s:0:\"\";}i:1;a:4:{s:10:\"whyus-icon\";s:11:\"fa fa-check\";s:5:\"title\";s:38:\"Local Experts. Middle-man Free Pricing\";s:11:\"description\";s:106:\"We\'re a local travel agency. When you book with us, you get best possible price, which is middle-man free.\";s:3:\"url\";s:0:\"\";}i:2;a:4:{s:10:\"whyus-icon\";s:11:\"fa fa-check\";s:5:\"title\";s:17:\"100% Customizable\";s:11:\"description\";s:145:\"Tell us about your trip requirement. We\'ll work together to customize your trip to meet your exact requirement so that you have a memorable trip.\";s:3:\"url\";s:0:\"\";}i:3;a:4:{s:10:\"whyus-icon\";s:11:\"fa fa-check\";s:5:\"title\";s:17:\"No Hidden Charges\";s:11:\"description\";s:128:\"We don\'t add hidden extras cost. All trips include travel permit, lodging and fooding. There are no surprises with hidden costs.\";s:3:\"url\";s:0:\"\";}}s:7:\"counter\";a:4:{i:0;a:3:{s:4:\"icon\";s:11:\"fa fa-group\";s:5:\"title\";s:19:\"Number of Customers\";s:6:\"number\";s:3:\"325\";}i:1;a:3:{s:4:\"icon\";s:11:\"fa fa-globe\";s:5:\"title\";s:15:\"Number of Trips\";s:6:\"number\";s:3:\"175\";}i:2;a:3:{s:4:\"icon\";s:11:\"fa fa-plane\";s:5:\"title\";s:11:\"Trips Types\";s:6:\"number\";s:3:\"225\";}i:3;a:3:{s:4:\"icon\";s:9:\"fa fa-bus\";s:5:\"title\";s:15:\"Travel with Bus\";s:6:\"number\";s:4:\"1020\";}}s:12:\"header_image\";s:78:\"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:35;s:3:\"url\";s:78:\"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg\";s:13:\"thumbnail_url\";s:78:\"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg\";s:6:\"height\";i:544;s:5:\"width\";i:1536;}s:12:\"social_links\";a:1:{i:0;a:2:{s:4:\"font\";s:15:\"fab fa-facebook\";s:4:\"link\";s:37:\"https://facebook.com/kenyaclassictour\";}}s:14:\"about_us_title\";s:30:\"Welcome to Kenya Classic Tours\";s:13:\"about_us_desc\";s:888:\"Kenya Classic Tour Travel is a well established Tours and Travel company, that is registered under the registrar of companies and business names act of Kenya since the year 2006, The company is based in the coast of Malindi to undertake in giving professional and reliable tourism services across east and central Africa to its esteemed clients from all walks of life, Offering all the information that might be necessary while on safari. Kenya Classic Tour Travel was founded by George Ngala, a professional field safari guide passionate for wildlife, his aim has always been to enthusiastically share that love and passion with the thousands of satisfied tourists that have been through our hands. We do not aim for exclusivity, we have made our packages accessible and affordable to a wide range of pockets in terms of costs and logistics categorized in different homemade itineraries.\";s:19:\"about_us_ad_content\";s:181:\"<p><img class=\"alignnone wp-image-24 size-full\" src=\"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/caption-e1708090639400.jpg\" alt=\"\" width=\"298\" height=\"300\" /></p>\";s:15:\"activities_desc\";s:435:\"It is said that the concept of the safari holiday experience, it all started life in Kenya. The word ‘safari’ itself even stems from local Swahili dialect for ‘journey’. However Kenya safari holidays are no ordinary journey, here wildlife roams the grassy open plains in front of majestic snow-capped mountains, savage nature contrasts with absolute luxury and adventure combines all too well with a relaxing stay at the beach.\";s:18:\"ed_popular_section\";b:0;s:11:\"custom_logo\";i:85;s:11:\"header_text\";i:0;s:15:\"ed_social_links\";b:1;s:4:\"time\";s:25:\"Mon - Fri : 08:00 - 18:00\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:31:\"info@kenyaclassictourtravel.com\";s:11:\"phone_label\";s:0:\"\";s:14:\"whyus_bg_image\";s:74:\"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/slider-9.jpg\";s:15:\"ed_deal_section\";b:0;s:18:\"ed_feature_section\";b:0;s:15:\"ed_blog_section\";b:0;s:10:\"whyus_desc\";s:155:\"Our team have lived, worked and travelled across the globe, and together we have the requisite knowledge and experience to plan the perfect safari for you.\";s:8:\"cta_desc\";s:0:\"\";}','yes'),(159,'theme_switched','','yes'),(1229,'_wp_session_5fa4aa4745409dc1591a1e71b23f0ea8','a:0:{}','yes'),(1221,'_wp_session_b3afe92f89957a935ce5cc9e2c758320','a:0:{}','yes'),(1222,'_wp_session_expires_b3afe92f89957a935ce5cc9e2c758320','1708240784','yes'),(1218,'_wp_session_c21dd7da4f2c0324adb108a32ebe51d0','a:0:{}','yes'),(1219,'_wp_session_expires_c21dd7da4f2c0324adb108a32ebe51d0','1708240121','yes'),(1235,'_wp_session_expires_a397ae2df7464e009d3a51997737f2f4','1708241750','yes'),(1237,'_wp_session_expires_84d78d3f80bc9c9bf40666f5d0e49f86','1708241750','yes'),(1241,'_wp_session_01cc3443a8696f4bceb94b5b69c3f1b5','a:0:{}','yes'),(1242,'_wp_session_expires_01cc3443a8696f4bceb94b5b69c3f1b5','1710201906','yes'),(1243,'_wp_session_b4591511be1a72c3275c4cfacc64d812','a:0:{}','yes'),(1244,'_wp_session_expires_b4591511be1a72c3275c4cfacc64d812','1710310208','yes'),(1245,'_wp_session_d1f6b5248738438a1d1345bbc915f2bc','a:0:{}','yes'),(1246,'_wp_session_expires_d1f6b5248738438a1d1345bbc915f2bc','1710397019','yes'),(1247,'_wp_session_7be9425dcf670f845f08d103df32b419','a:0:{}','yes'),(1248,'_wp_session_expires_7be9425dcf670f845f08d103df32b419','1710401340','yes'),(1249,'_wp_session_f834c5f756947aca54674e84bb92369e','a:0:{}','yes'),(1250,'_wp_session_expires_f834c5f756947aca54674e84bb92369e','1712276119','yes'),(1223,'_wp_session_d26e09f694db9d8d9d71c1f06972ec6b','a:0:{}','yes'),(1216,'_wp_session_eb16748ee99c03abde57e1ce0e4de976','a:0:{}','yes'),(1217,'_wp_session_expires_eb16748ee99c03abde57e1ce0e4de976','1708240119','yes'),(1252,'_wp_session_expires_40ab931109a983089cd68323b25cc57b','1721383500','yes'),(162,'_site_transient_timeout_browser_347cd54522c3245b35e47c1b55883427','1708693059','no'),(163,'_site_transient_browser_347cd54522c3245b35e47c1b55883427','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"121.0.0.0\";s:8:\"platform\";s:7:\"Android\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}','no'),(170,'category_children','a:0:{}','yes'),(995,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1708217395;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.1.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.4.3\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.8.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}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\";}s:57:\"rara-one-click-demo-import/rara-one-click-demo-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/rara-one-click-demo-import\";s:4:\"slug\";s:26:\"rara-one-click-demo-import\";s:6:\"plugin\";s:57:\"rara-one-click-demo-import/rara-one-click-demo-import.php\";s:11:\"new_version\";s:5:\"1.3.3\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/rara-one-click-demo-import/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/rara-one-click-demo-import.1.3.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/rara-one-click-demo-import/assets/icon-128x128.png?rev=1939066\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/rara-one-click-demo-import/assets/banner-772x250.png?rev=1939071\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.4.0\";}s:51:\"travel-agency-companion/travel-agency-companion.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/travel-agency-companion\";s:4:\"slug\";s:23:\"travel-agency-companion\";s:6:\"plugin\";s:51:\"travel-agency-companion/travel-agency-companion.php\";s:11:\"new_version\";s:5:\"1.5.7\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/travel-agency-companion/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/travel-agency-companion.1.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/travel-agency-companion/assets/icon-256x256.jpg?rev=1714539\";s:2:\"1x\";s:76:\"https://ps.w.org/travel-agency-companion/assets/icon-128x128.jpg?rev=1714537\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/travel-agency-companion/assets/banner-1544x500.jpg?rev=1714529\";s:2:\"1x\";s:78:\"https://ps.w.org/travel-agency-companion/assets/banner-772x250.jpg?rev=1714532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:37:\"wp-travel-engine/wp-travel-engine.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/wp-travel-engine\";s:4:\"slug\";s:16:\"wp-travel-engine\";s:6:\"plugin\";s:37:\"wp-travel-engine/wp-travel-engine.php\";s:11:\"new_version\";s:5:\"5.7.9\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-travel-engine/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-travel-engine.5.7.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-travel-engine/assets/icon-256x256.png?rev=2764410\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-travel-engine/assets/icon-128x128.png?rev=2764420\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wp-travel-engine/assets/banner-1544x500.png?rev=2764419\";s:2:\"1x\";s:71:\"https://ps.w.org/wp-travel-engine/assets/banner-772x250.png?rev=2764418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}}s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:3:\"5.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.8.7\";s:9:\"hello.php\";s:5:\"1.7.2\";s:57:\"rara-one-click-demo-import/rara-one-click-demo-import.php\";s:5:\"1.3.3\";s:51:\"travel-agency-companion/travel-agency-companion.php\";s:5:\"1.5.7\";s:37:\"wp-travel-engine/wp-travel-engine.php\";s:5:\"5.7.9\";}}','no'),(172,'_site_transient_timeout_browser_8ae670176aefc0294494d0cdc3097088','1708694422','no'),(173,'_site_transient_browser_8ae670176aefc0294494d0cdc3097088','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"83.0.4103.106\";s:8:\"platform\";s:7:\"Android\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}','no'),(174,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(188,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.8.7\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1708100948;s:7:\"version\";s:5:\"5.8.7\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(178,'site_logo','85','yes'),(209,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:38:\"wp-travel-engine/includes/lib/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.5.10\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1721381700;s:11:\"plugin_path\";s:37:\"wp-travel-engine/wp-travel-engine.php\";}}s:7:\"abspath\";s:37:\"/home/kenyacla/public_html/prev/new1/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:37:\"wp-travel-engine/wp-travel-engine.php\";s:8:\"sdk_path\";s:38:\"wp-travel-engine/includes/lib/freemius\";s:7:\"version\";s:6:\"2.5.10\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1721381700;}}','yes'),(1251,'_wp_session_40ab931109a983089cd68323b25cc57b','a:0:{}','yes'),(1238,'_transient_doing_cron','1721381700.3352351188659667968750','yes'),(1239,'_wp_session_a6d75d48ce09a33df9e454531b666820','a:0:{}','yes'),(1240,'_wp_session_expires_a6d75d48ce09a33df9e454531b666820','1709098456','yes'),(210,'fs_debug_mode','','yes'),(211,'fs_accounts','a:4:{s:21:\"id_slug_type_path_map\";a:1:{i:5392;a:3:{s:4:\"slug\";s:16:\"wp-travel-engine\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:37:\"wp-travel-engine/wp-travel-engine.php\";}}s:11:\"plugin_data\";a:1:{s:16:\"wp-travel-engine\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:37:\"wp-travel-engine/wp-travel-engine.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1708149813;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.5.10\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"5.7.9\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:26:\"kenyaclassictourtravel.com\";s:9:\"server_ip\";s:14:\"198.187.31.108\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1708149813;s:7:\"version\";s:5:\"5.7.9\";}s:15:\"prev_is_premium\";b:0;}}s:13:\"file_slug_map\";a:1:{s:37:\"wp-travel-engine/wp-travel-engine.php\";s:16:\"wp-travel-engine\";}s:7:\"plugins\";a:1:{s:16:\"wp-travel-engine\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:49:\"WP Travel Engine - Travel and Tour Booking Plugin\";s:4:\"slug\";s:16:\"wp-travel-engine\";s:12:\"premium_slug\";s:24:\"wp-travel-engine-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:37:\"wp-travel-engine/wp-travel-engine.php\";s:7:\"version\";s:5:\"5.7.9\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_d9913f744dc4867caeec5b60fc76d\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"5392\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}}','yes'),(212,'fs_api_cache','a:0:{}','no'),(216,'wp_travel_engine_settings','a:5:{s:5:\"pages\";a:8:{s:7:\"enquiry\";i:162;s:26:\"wp_travel_engine_thank_you\";s:3:\"163\";s:28:\"wp_travel_engine_place_order\";s:3:\"164\";s:37:\"wp_travel_engine_terms_and_conditions\";s:3:\"165\";s:34:\"wp_travel_engine_confirmation_page\";s:3:\"166\";s:31:\"wp_travel_engine_dashboard_page\";s:3:\"167\";s:25:\"wp_travel_engine_wishlist\";s:3:\"157\";s:6:\"search\";s:3:\"158\";}s:5:\"email\";a:4:{s:13:\"disable_notif\";s:0:\"\";s:6:\"emails\";s:64:\"info@kenyaclassictourtravel.com,kenyaclassictourtravel@gmail.com\";s:10:\"cust_notif\";s:1:\"1\";s:4:\"from\";s:0:\"\";}s:12:\"booking_only\";s:1:\"1\";s:14:\"paypal_payment\";s:0:\"\";s:9:\"paypal_id\";s:0:\"\";}','yes'),(217,'_transient_wte_show_getting_started_page','1','yes'),(218,'wp_travel_engine_wp-travel-engine-cart_page_id','168','yes'),(219,'wp_travel_engine_wp-travel-engine-checkout_page_id','169','yes'),(220,'wp_travel_engine_my-account_page_id','170','yes'),(221,'wte_migrated_to_multiple_pricing','done','yes'),(224,'widget_wte_featured_trips_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(225,'wptravelengine_custom_strings','a:0:{}','yes'),(226,'wptravelengine_queue_flush_rewrite_rules','no','yes'),(227,'wptravelengine_triptag_tax','1','yes'),(231,'difficulty_children','a:0:{}','yes'),(232,'wptravelengine_difficulty_tax','1','yes'),(1224,'_wp_session_expires_d26e09f694db9d8d9d71c1f06972ec6b','1708240784','yes'),(1225,'_wp_session_bde37559515b1dfe02aedac49af75479','a:0:{}','yes'),(1226,'_wp_session_expires_bde37559515b1dfe02aedac49af75479','1708241187','yes'),(493,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":1}','yes'),(244,'wp_travel_engine_first_time_activation_flag','true','yes'),(245,'wte_search_params_updated_579','done','yes'),(246,'wptravelengine_version','5.7.9','yes'),(247,'wptravelengine_trip_version','2.0.0','yes'),(248,'wptravelengine_since','5.7.9','yes'),(249,'wpte_updated_actual_price_for_filter','1','yes'),(250,'_transient_timeout_wp_travel_engine_onboard_addons_list','1708610676','no'),(251,'_transient_wp_travel_engine_onboard_addons_list','{\n \"products\": [\n {\n \"info\": {\n \"id\": 125432,\n \"slug\": \"we-travel\",\n \"title\": \"WeTravel Integration\",\n \"create_date\": \"2022-12-02 10:45:02\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=125432\",\n \"permalink\": \"\\/plugins\\/we-travel\\/\",\n \"content\": \"<!-- wp:paragraph -->\\n<p>WeTravel Addon supports WeTravel or Custom URL Booking. With this addon, you can add your WeTravel trip embed link to the trips created in WP Travel Engine.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p><strong>Key Features:<\\/strong><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li>This addon supports WeTravel or Custom URL Booking.<\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li>With this addon, you can add your WeTravel trip embed link to the trips created in WP Travel Engine.<\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li>With this addon, the default booking flow of WP Travel Engine can be overridden with WeTravel\'s booking flow.<\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>On adding an embedded link to the WeTravel Embed Link field in the backend, the default check availability button layout of WP Travel Engine is changed. Clicking on the book now button opens a popup from where you can continue with the WeTravel payment process.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Also, the text displayed in the booking button can be changed from the WP Travel Engine backend settings page.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p><\\/p>\\n<!-- \\/wp:paragraph -->\",\n \"excerpt\": \"WeTravel Addon supports WeTravel or Custom URL Booking. With this addon, you can add your WeTravel trip embed link to the trips created in WP Travel Engine.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-270x270.jpg 270w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-370x370.jpg 370w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-170x170.jpg 170w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/12\\/WeTravel-256x256.jpg 256w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_125432\\\" class=\\\"edd_download_purchase_form edd_purchase_125432\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_125432_singlesite\\\"><label for=\\\"edd_price_option_125432_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_125432_1\\\" class=\\\"edd_price_option_125432\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_125432_2-5sites\\\"><label for=\\\"edd_price_option_125432_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_125432_2\\\" class=\\\"edd_price_option_125432\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_125432_unlimitedsites\\\"><label for=\\\"edd_price_option_125432_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_125432_3\\\" class=\\\"edd_price_option_125432\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"755ceacefd\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"125432\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"125432\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"125432\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"125432","item_id":"125432","item_name":"WeTravel Integration","currency":"USD","price":49,"download":{"download_id":125432},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_125432-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_125432\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"1.1.0\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 118727,\n \"slug\": \"woocommerce-payments\",\n \"title\": \"WooCommerce Payments\",\n \"create_date\": \"2022-06-14 17:43:02\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=118727\",\n \"permalink\": \"\\/plugins\\/woocommerce-payments\\/\",\n \"content\": \"<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">WooCommerce Payment Gateway is an add-on for the WP Travel Engine plugin that enables trip payments via different payment gateways supported by WooCommerce.<\\/span><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">WooCommerce offers support for wide range payment gateways. With the WooCommerce Payment Gateway add-on, the WP Travel Engine plugin now provides compatibility to make payments with these wide ranges of <\\/span><a href=\\\"https:\\/\\/woocommerce.com\\/product-category\\/woocommerce-extensions\\/payment-gateways\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener nofollow\\\"><span style=\\\"font-weight: 400;\\\">WooCommerce Payment Gateways<\\/span><\\/a><span style=\\\"font-weight: 400;\\\">.<\\/span><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p><iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/XvbCibsyLWk\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:heading -->\\n<h2 class=\\\"wp-block-heading\\\">Requirements<\\/h2>\\n<!-- \\/wp:heading -->\\n\\n<!-- wp:paragraph -->\\n<p>To use the WooCommerce Payment Gateway addon, you will need to install:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">WP Travel Engine version: 5.4.0+<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">WooCommerce version: 6.4+<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">WP Travel Engine \\u2013 WooCommerce Payment Gateway version: 1.0+<\\/span><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:heading -->\\n<h2 class=\\\"wp-block-heading\\\">Feature Highlights<\\/h2>\\n<!-- \\/wp:heading -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Effortless Configuration<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">Installing the extension is easy: all you have to do is download the extension from your dashboard, upload it on plugins, and activate it. You then enable the payment gateway so that users can use WooCommerce Checkout and Payment Gateways to purchase\\/book trips.<\\/span><b><\\/b><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Easy to Use<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">The extension has straightforward functionalities, making it easy to maintain everything from the dashboard. The extension uses the checkout and payment gateway of WooCommerce, which has an efficient, minimal design on the front-end, eventually making the booking process seamless. <\\/span><b><\\/b><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Supports all WooCommerce Payment Gateways<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">WP Travel Engine\'s WOOCOMMERCE PAYMENT GATEWAY extension works on all Woocommerce-supported payment gateways, including the most common ones:<\\/span><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list {\\\"ordered\\\":true} -->\\n<ol><!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">Direct bank transfer<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">Cash on delivery<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">PensoPay<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">Stripe iDEAL<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">Authorize.net<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">Stripe<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">Paypal<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">PayMob<\\/span><\\/li>\\n<!-- \\/wp:list-item -->\\n\\n<!-- wp:list-item -->\\n<li><span style=\\\"font-weight: 400;\\\">CCBill<\\/span><\\/li>\\n<!-- \\/wp:list-item --><\\/ol>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Detailed Payment and Booking Information<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">The extension now enables websites to receive more information from the end-user. With the added details, website owners can comprehensively understand each customer\\u2019s Payments and Bookings. <\\/span><b><\\/b><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Secured Payment Gateways\\/ Options<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">The payment gateways supported by the extension use encryption to protect customer data during the purchase. They can also process high-value transactions while providing an extra layer of security.<\\/span><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Receive Payment in Local Currency<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">This extension\'s compatibility with WooCommerce Payment Gateways will also let you receive payments in your local currency\\/region if WooCommerce supports your local payment gateways. <\\/span><b><\\/b><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:list -->\\n<ul><!-- wp:list-item -->\\n<li><b>Continuous Development & Support<\\/b><\\/li>\\n<!-- \\/wp:list-item --><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">Like all of our addons, we provide dedicated support for any help required while using the extension. You can simply drop us a support message, feature request or any queries regarding the addon to get a prompt response.<\\/span><\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p><span style=\\\"font-weight: 400;\\\">We are also working on continuous development and adding exciting new features to the addon with each update.<\\/span><\\/p>\\n<!-- \\/wp:paragraph -->\",\n \"excerpt\": \"WooCommerce Payment Gateway is an addon for the WP Travel Engine plugin that enables the trip payments to be done via different WooCommerce Payment Gateways.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-270x270.jpg 270w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-370x370.jpg 370w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-170x170.jpg 170w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2022\\/07\\/payment-gateways-256x256.jpg 256w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_118727\\\" class=\\\"edd_download_purchase_form edd_purchase_118727\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_118727_singlesite\\\"><label for=\\\"edd_price_option_118727_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_118727_1\\\" class=\\\"edd_price_option_118727\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_118727_2-5sites\\\"><label for=\\\"edd_price_option_118727_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_118727_2\\\" class=\\\"edd_price_option_118727\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_118727_unlimitedsites\\\"><label for=\\\"edd_price_option_118727_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_118727_3\\\" class=\\\"edd_price_option_118727\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"0d3175d3d4\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"118727\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"118727\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"118727\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"118727","item_id":"118727","item_name":"WooCommerce Payments","currency":"USD","price":49,"download":{"download_id":118727},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_118727-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_118727\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"1.1.1\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 31412,\n \"slug\": \"midtrans-payment-gateway\",\n \"title\": \"Midtrans Payment Gateway\",\n \"create_date\": \"2020-02-13 11:35:19\",\n \"modified_date\": \"2023-10-13 10:50:29\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=31412\",\n \"permalink\": \"\\/plugins\\/midtrans-payment-gateway\\/\",\n \"content\": \"Midtrans Payment Gateway is an extension for WP Travel Engine that allows tour operators to accept trips and tour payments via <a href=\\\"https:\\/\\/midtrans.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Midtrans<\\/a>, one of Indonesia\\u2019s popular merchant services.\\n\\nTour operators and travel agencies can enable the Midtrans booking system for trip booking by setting up Midtrans Account with key details \\u2013 Merchant ID, Client Key, and Server Key.\\n\\nWhen a traveler books a trip via Midtrans Payment Gateway, they are redirected to your merchant account on Midtrans where they are requested to make the payment. Midtrans handles the payments and redirects the traveler back to your website.\\n\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/vwrNLeCmJsg\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe>\\n\\n<b>Which payment modes does Midtrans currently support?<\\/b>\\n\\n<span style=\\\"font-weight: 400;\\\">Midtrans Payment Gateway supports the payment modes such as Credit Card, Debit Card, Bank Transfer, e-wallet, and Over the Counter payments. <\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">To know more about how it works, please visit the <\\/span><a href=\\\"https:\\/\\/midtrans.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\"><span style=\\\"font-weight: 400;\\\">Midtrans official page<\\/span><\\/a><span style=\\\"font-weight: 400;\\\">.<\\/span>\\n\\n<b>Note: <\\/b><span style=\\\"font-weight: 400;\\\">Midtrans Payment Gateway works only in Indonesia with Indonesian Rupiah (IDR) currency.<\\/span>\",\n \"excerpt\": \"Midtrans Payment Gateway is an extension for WP Travel Engine that allows tour operators to accept trips and tour payments via Midtrans, one of Indonesia\\u2019s popular merchant services.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"midtrans payment gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-65x65.jpg 65w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-256x256.jpg 256w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/midtrans-payment-gateway-100x100.jpg 100w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_31412\\\" class=\\\"edd_download_purchase_form edd_purchase_31412\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_31412_singlesite\\\"><label for=\\\"edd_price_option_31412_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_31412_1\\\" class=\\\"edd_price_option_31412\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_31412_2-5sites\\\"><label for=\\\"edd_price_option_31412_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_31412_2\\\" class=\\\"edd_price_option_31412\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_31412_unlimitedsites\\\"><label for=\\\"edd_price_option_31412_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_31412_3\\\" class=\\\"edd_price_option_31412\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"87fdd01f29\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"31412\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"31412\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"31412\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"31412","item_id":"31412","item_name":"Midtrans Payment Gateway","currency":"USD","price":49,"download":{"download_id":31412},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_31412-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_31412\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"IDR\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.0.1\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 30752,\n \"slug\": \"payu-money-payment-gateway\",\n \"title\": \"PayU Money Payment Gateway\",\n \"create_date\": \"2020-02-06 17:48:46\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=30752\",\n \"permalink\": \"\\/plugins\\/payu-money-payment-gateway\\/\",\n \"content\": \"PayU Money Payment Gateway is an extension for WP Travel Engine that allows you to accept trips and tour payments via one of the leading financial services from India, PayU Money.\\r\\n\\r\\nTour operators and travel agencies can enable the PayU Money Payment Gateway for trip booking by setting up PayU Money Account with key details -<b>Merchant Key and Merchant Salt.<\\/b>\\r\\n\\r\\n<iframe width=\\\"790\\\" height=\\\"444\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/3rlR3k7r3rM\\\" title=\\\"YouTube video player\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen><\\/iframe>\\r\\n\\r\\n<span style=\\\"font-weight: 400;\\\">When a traveler books a trip via PayU Money Payment Gateway, the payment page opens as a pop-up on your website which is a completely redirection less payment experience.<\\/span>\\r\\n\\r\\n<span style=\\\"font-weight: 400;\\\">This payment gateway gives your customers a seamless checkout experience that keeps them in the framework of your website throughout the booking process and enables them to use their Credit\\/Debit card to pay without sharing any sensitive information.<\\/span>\\r\\n\\r\\n<span style=\\\"font-weight: 400;\\\">PayU Money Payment Gateway supports the payment modes such as Credit Card, Debit Card and only accepts payment in Indian Rupee (INR) currency. To know more about how it works, please visit the <\\/span><a href=\\\"https:\\/\\/developer.payumoney.com\\/bolt-checkout\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\"><span style=\\\"font-weight: 400;\\\">PayU Money Checkout page<\\/span><\\/a><span style=\\\"font-weight: 400;\\\">.<\\/span>\\r\\n\\r\\n<b>Note: <\\/b><span style=\\\"font-weight: 400;\\\">PayU Money Payment Gateway works only in India with Indian Rupee (INR) currency.<\\/span>\",\n \"excerpt\": \"PayU Money Payment Gateway is an extension for WP Travel Engine that allows you to accept trips and tour payments via one of the leading financial services from India, PayU Money.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"PayU payment gateway banner\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-65x65.jpg 65w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-256x256.jpg 256w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayU-payment-gateway-100x100.jpg 100w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_30752\\\" class=\\\"edd_download_purchase_form edd_purchase_30752\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_30752_singlesite\\\"><label for=\\\"edd_price_option_30752_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_30752_1\\\" class=\\\"edd_price_option_30752\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_30752_2-5sites\\\"><label for=\\\"edd_price_option_30752_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_30752_2\\\" class=\\\"edd_price_option_30752\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_30752_unlimitedsites\\\"><label for=\\\"edd_price_option_30752_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_30752_3\\\" class=\\\"edd_price_option_30752\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"b7563bae83\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"30752\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"30752\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"30752\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"30752","item_id":"30752","item_name":"PayU Money Payment Gateway","currency":"USD","price":49,"download":{"download_id":30752},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_30752-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_30752\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"INR\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.1.1\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 30754,\n \"slug\": \"payhere-payment-gateway\",\n \"title\": \"PayHere Payment Gateway\",\n \"create_date\": \"2020-02-06 15:49:00\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=30754\",\n \"permalink\": \"\\/plugins\\/payhere-payment-gateway\\/\",\n \"content\": \"PayHere Payment Gateway is an extension for the WP Travel Engine that allows tour operators to accept trips and tour payments via one of Sri Lanka\\u2019s popular merchant services, PayHere.\\n\\nTour operators and travel agencies can enable the PayHere booking system for trip booking by setting up PayHere Account with key details \\u2013 <strong>Payment Merchant ID and PayHere Merchant Secret<\\/strong>.\\n\\nWhen a traveler books a trip via PayHere Payment Gateway, they are redirected to your merchant account on PayHere where they are requested to log in and make the payment. PayHere handles the payments and redirects the traveler back to your website.\\n\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/H0rQs3HiAM4\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe>\\n\\n<b>Which countries does PayHere support?<\\/b>\\n\\n<span style=\\\"font-weight: 400;\\\">PayHere is a payment processing service for any businesses to conveniently accept online payments locally or globally from customers all around the world. It connects local and international buyers and sellers on a single platform with multiple ways to pay.<\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">PayHere allows you to accept all local and global payment methods available in Sri Lanka through a single Online Payment Solution. You have everything under one roof with this payment gateway.<\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">Payment from any country can be accepted, as long as you have a Sampath account under your business and use LKR, USD, GBP, EUR, and AUD as the transaction currency. To know more about how does it work, please visit the <\\/span><a href=\\\"https:\\/\\/www.payhere.lk\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\"><span style=\\\"font-weight: 400;\\\">PayHere Global Page<\\/span><\\/a><span style=\\\"font-weight: 400;\\\">.<\\/span>\\n\\n \",\n \"excerpt\": \"PayHere Payment Gateway is an extension for the WP Travel Engine that allows tour operators to accept trips and tour payments via one of Sri Lanka\\u2019s popular merchant services, PayHere.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"PayHere payment gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-65x65.jpg 65w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-256x256.jpg 256w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2020\\/02\\/PayHere-payment-gateway-100x100.jpg 100w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_30754\\\" class=\\\"edd_download_purchase_form edd_purchase_30754\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_30754_singlesite\\\"><label for=\\\"edd_price_option_30754_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_30754_1\\\" class=\\\"edd_price_option_30754\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_30754_2-5sites\\\"><label for=\\\"edd_price_option_30754_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_30754_2\\\" class=\\\"edd_price_option_30754\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_30754_unlimitedsites\\\"><label for=\\\"edd_price_option_30754_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_30754_3\\\" class=\\\"edd_price_option_30754\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"818c451242\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"30754\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"30754\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"30754\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"30754","item_id":"30754","item_name":"PayHere Payment Gateway","currency":"USD","price":49,"download":{"download_id":30754},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_30754-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_30754\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"AUD\",\n \"EUR\",\n \"GBP\",\n \"LKR\",\n \"USD\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.0.0\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 20311,\n \"slug\": \"himalayan-bank-payment-gateway\",\n \"title\": \"Himalayan Bank Payment Gateway\",\n \"create_date\": \"2019-09-24 09:02:06\",\n \"modified_date\": \"2023-10-13 10:50:29\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=20311\",\n \"permalink\": \"\\/plugins\\/himalayan-bank-payment-gateway\\/\",\n \"content\": \"<span style=\\\"font-weight: 400;\\\">Himalayan Bank Payment Gateway is an extension for <\\/span><span style=\\\"font-weight: 400;\\\">WP Travel Engine<\\/span><span style=\\\"font-weight: 400;\\\"> that allows you to accept trip and tour payments via one of the leading banks in Nepal, Himalayan Bank.<\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">Tour operators and travel agencies in Nepal can enable the Himalayan Bank Payment gateway for trip booking by setting up Himalayan Account with key details \\u2013 <\\/span><b>Merchant ID<\\/b><span style=\\\"font-weight: 400;\\\"> and <\\/span><b>Secret Key<\\/b><span style=\\\"font-weight: 400;\\\">.<\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">When a traveler books a trip via Himalayan Bank Payment Gateway, the traveler is taken to Himalayan Bank to make a secure payment. After payment, the trip booking is confirmed and the traveler is redirected to your website.<\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">For redirection, you should ask Himalayan Bank to set the <\\/span><b>Backend-URL<\\/b><span style=\\\"font-weight: 400;\\\"> and <\\/span><b>Frontend-URL<\\/b><span style=\\\"font-weight: 400;\\\"> of your site on their server. Backend-URL is the URL where you get the response of your payment from the server and the Frontend-URL is the URL where the payer is redirected after successful payment is made.<\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">Himalayan Bank Payment Gateway incorporates Visa, MasterCard, American Express and Union Pay cards and accepts payment in Nepali(NPR) and US currency. This results in increased conversion rates, improved customer experience and access to the global market.<\\/span>\\n\\n<strong>Note:<\\/strong>\\n<ul>\\n \\t<li><span style=\\\"font-weight: 400;\\\">Himalayan Bank Payment Gateway works in Nepal with Nepali and US currency only.<\\/span><\\/li>\\n \\t<li><span style=\\\"font-weight: 400;\\\">Himalayan Bank Payment Gateway works on the WordPress site and ONLY with <\\/span><a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/wp-travel-engine\\/\\\"><span style=\\\"font-weight: 400;\\\">WP Travel\\u00a0 Engine<\\/span><\\/a><span style=\\\"font-weight: 400;\\\"> plugin.<\\/span><\\/li>\\n<\\/ul>\",\n \"excerpt\": \"Himalayan Bank Payment Gateway is an extension for WP Travel Engine that allows you to accept trip and tour payments via one of the leading banks in Nepal, Himalayan Bank.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"Himalayan Bank payment gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683-65x65.jpg 65w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2019\\/09\\/himalayan-payment-gateway-1000x683-256x256.jpg 256w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_20311\\\" class=\\\"edd_download_purchase_form edd_purchase_20311\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_20311_singlesite\\\"><label for=\\\"edd_price_option_20311_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_20311_1\\\" class=\\\"edd_price_option_20311\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_20311_2-5sites\\\"><label for=\\\"edd_price_option_20311_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_20311_2\\\" class=\\\"edd_price_option_20311\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_20311_unlimitedsites\\\"><label for=\\\"edd_price_option_20311_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_20311_3\\\" class=\\\"edd_price_option_20311\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"4ab04cc271\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"20311\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"20311\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"20311\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"20311","item_id":"20311","item_name":"Himalayan Bank Payment Gateway","currency":"USD","price":49,"download":{"download_id":20311},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_20311-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_20311\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"NPR\",\n \"USD\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.1.1\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 7093,\n \"slug\": \"paypal-express-checkout-payment-gateway\",\n \"title\": \"PayPal Express Checkout Payment Gateway\",\n \"create_date\": \"2018-12-28 08:19:51\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=7093\",\n \"permalink\": \"\\/plugins\\/paypal-express-checkout-payment-gateway\\/\",\n \"content\": \"PayPal Express Checkout Payment Gateway allows you to accept trip and tour payments through PayPal Express.\\n\\nTour operators and travel agencies can enable the PayPal Express Checkout system for trip booking by setting up PayPal Express Account with key details - Client ID and PayPal Secret.\\n\\nWhen a traveler is ready to checkout with their PayPal account, they simply have to click the PayPal Checkout button which will redirect them to a PayPal checkout page. All billing and customer details are completed on the PayPal Express checkout page before the traveler is redirected back to your travel website.\\n\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/eI4PvBmvxWc\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe>\\n\\n<b>Which countries does PayPal Express support?<\\/b>\\n\\n<span style=\\\"font-weight: 400;\\\">PayPal Express is available in most countries. <\\/span><span style=\\\"font-weight: 400;\\\">To know if your country is supported, please see the <\\/span><span style=\\\"font-weight: 400;\\\">complete <\\/span><a href=\\\"https:\\/\\/developer.paypal.com\\/docs\\/classic\\/api\\/country_codes\\/#countries-supported-in-paypal-payments\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\"><span style=\\\"font-weight: 400;\\\">list here<\\/span><\\/a><span style=\\\"font-weight: 400;\\\">.<\\/span>\\n\\n<b>Do PayPal Express require my site to have an SSL certificate?<\\/b>\\n\\n<span style=\\\"font-weight: 400;\\\">An SSL certificate is not required for PayPal Express, though it is highly recommended.<\\/span>\",\n \"excerpt\": \"PayPal Express Checkout Payment Gateway is an extension for WP Travel Engine that allows you to accept trip and tour payments through PayPal Express.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"Paypal Express banner\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express-65x65.jpg 65w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express-128x128.jpg 128w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/12\\/Paypal-Express-256x256.jpg 256w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_7093\\\" class=\\\"edd_download_purchase_form edd_purchase_7093\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_7093_singlesite\\\"><label for=\\\"edd_price_option_7093_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_7093_1\\\" class=\\\"edd_price_option_7093\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_7093_2-5sites\\\"><label for=\\\"edd_price_option_7093_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_7093_2\\\" class=\\\"edd_price_option_7093\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_7093_unlimitedsites\\\"><label for=\\\"edd_price_option_7093_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_7093_3\\\" class=\\\"edd_price_option_7093\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"6888c98566\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"7093\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"7093\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"7093\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"7093","item_id":"7093","item_name":"PayPal Express Checkout Payment Gateway","currency":"USD","price":49,"download":{"download_id":7093},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_7093-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_7093\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"AUD\",\n \"CAD\",\n \"CHF\",\n \"CZK\",\n \"DKK\",\n \"EUR\",\n \"GBP\",\n \"HKD\",\n \"ILS\",\n \"MXN\",\n \"NOK\",\n \"NZD\",\n \"PHP\",\n \"PLN\",\n \"RUB\",\n \"SEK\",\n \"SGD\",\n \"THB\",\n \"USD\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.2.0\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 1744,\n \"slug\": \"payfast-payment-gateway\",\n \"title\": \"PayFast Payment Gateway\",\n \"create_date\": \"2018-07-20 08:07:19\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=1744\",\n \"permalink\": \"\\/plugins\\/payfast-payment-gateway\\/\",\n \"content\": \"PayFast Payment Gateway is an extension for WP Travel Engine that allows you to accept trip and tour payments via one of South Africa\\u2019s popular merchant service, PayFast.\\n\\nTour operators and travel agencies can enable the PayFast booking system for trip booking by setting up PayFast Account with key details - Merchant Key and Merchant ID.\\n\\nWhen a traveler books a trip via PayFast Payment Gateway, they are redirected to your merchant account on PayFast where they are requested to login and make the payment. PayFast handles the payments and redirects the traveler back to your website.\\n\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/zFRuvkUigfU\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe>\\n\\n<b>Which countries does PayFast support?<\\/b>\\n\\n<span style=\\\"font-weight: 400;\\\">PayFast is a payment processing service for South Africa. It connects local and international buyers and sellers on a single platform with multiple ways to pay. <\\/span>\\n\\n<span style=\\\"font-weight: 400;\\\">Payment from any country can be accepted, as long as you use ZAR as the currency. To know more about how it works, please visit the <\\/span><a href=\\\"https:\\/\\/www.payfast.co.za\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\"><span style=\\\"font-weight: 400;\\\">PayFast Global Page<\\/span><\\/a><span style=\\\"font-weight: 400;\\\">.<\\/span>\",\n \"excerpt\": \"PayFast Payment Gateway is an extension for WP Travel Engine that allows you to accept trip and tour payments via one of South Africa\\u2019s popular merchant service, PayFast. \",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayFast.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayFast-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"PayFast Payment gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayFast-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayFast-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayFast-65x65.jpg 65w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_1744\\\" class=\\\"edd_download_purchase_form edd_purchase_1744\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_1744_singlesite\\\"><label for=\\\"edd_price_option_1744_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_1744_1\\\" class=\\\"edd_price_option_1744\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_1744_2-5sites\\\"><label for=\\\"edd_price_option_1744_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_1744_2\\\" class=\\\"edd_price_option_1744\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_1744_unlimitedsites\\\"><label for=\\\"edd_price_option_1744_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_1744_3\\\" class=\\\"edd_price_option_1744\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"cc4d0ae31d\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"1744\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"1744\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"1744\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"1744","item_id":"1744","item_name":"PayFast Payment Gateway","currency":"USD","price":49,"download":{"download_id":1744},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_1744-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_1744\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"ZAR\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.1.0\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 1055,\n \"slug\": \"payu-biz-payment-gateway\",\n \"title\": \"PayU Biz Payment Gateway\",\n \"create_date\": \"2018-07-19 08:55:50\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=1055\",\n \"permalink\": \"\\/plugins\\/payu-biz-payment-gateway\\/\",\n \"content\": \"PayU Payment Gateway is an extension for WP Travel Engine that allows you to accept trip and tour payments via one of leading financial services in global growth markets, PayU.\\n\\nTour operators and travel agencies can enable the PayU Payment gateway for trip booking by setting up PayU Account with key details - Merchant Key and Merchant Salt.\\n\\nWhen a traveler books a trip via PayU Payment Gateway, the traveler is taken to PayU to make a secure payment. No SSL certificate is required on your site. After payment, the trip booking is confirmed and the traveler is redirected to your website.\\n\\nPayU Payment Gateway incorporates payment methods like Credit Card, Debit Card, Internet Banking, and PayPal. The travelers can make card payments as well as direct payments via any of the associated banks. This results in increased conversion rates, improved customer experience and access to the global market.\\n\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/B9tgL4GYX60\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><span data-mce-type=\\\"bookmark\\\" style=\\\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\\\" class=\\\"mce_SELRES_start\\\">\\ufeff<\\/span><\\/iframe>\",\n \"excerpt\": \"PayU Payment Gateway is an extension for WP Travel Engine that allows you to accept trip and tour payments via one of leading financial services in global growth markets, PayU. \",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayU-1.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayU-1-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"PayU Payment gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayU-1-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayU-1-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/PayU-1-65x65.jpg 65w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_1055\\\" class=\\\"edd_download_purchase_form edd_purchase_1055\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_1055_singlesite\\\"><label for=\\\"edd_price_option_1055_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_1055_1\\\" class=\\\"edd_price_option_1055\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_1055_2-5sites\\\"><label for=\\\"edd_price_option_1055_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_1055_2\\\" class=\\\"edd_price_option_1055\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_1055_unlimitedsites\\\"><label for=\\\"edd_price_option_1055_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_1055_3\\\" class=\\\"edd_price_option_1055\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"9baf35eec5\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"1055\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"1055\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"1055\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"1055","item_id":"1055","item_name":"PayU Biz Payment Gateway","currency":"USD","price":49,"download":{"download_id":1055},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_1055-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_1055\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"INR\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.1.1\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 577,\n \"slug\": \"authorize-net-payment-gateway\",\n \"title\": \"Authorize.net Payment Gateway\",\n \"create_date\": \"2018-02-26 11:10:40\",\n \"modified_date\": \"2023-10-13 10:50:29\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=577\",\n \"permalink\": \"\\/plugins\\/authorize-net-payment-gateway\\/\",\n \"content\": \"This Authorize.net Payment Gateway extension allows you to accept credit cards directly on your website through <a href=\\\"https:\\/\\/www.authorize.net\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Authorize.net<\\/a> account.\\r\\n\\r\\nWhen using Authorize.net Payment Gateway with WP Travel Engine, the travelers enter their credit card details on the checkout page and never leave your site. This results in a better user experience and increases sales or conversion.\\r\\n\\r\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/-LoDaQ0ZsrY\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe>\",\n \"excerpt\": \"This Authorize.net Payment Gateway extension allows you to accept credit cards directly on your website through Authorize.net account.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Authorized.net_.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Authorized.net_-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"Authorized.net payment gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Authorized.net_-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Authorized.net_-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Authorized.net_-65x65.jpg 65w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_577\\\" class=\\\"edd_download_purchase_form edd_purchase_577\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_577_singlesite\\\"><label for=\\\"edd_price_option_577_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_577_1\\\" class=\\\"edd_price_option_577\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_577_2-5sites\\\"><label for=\\\"edd_price_option_577_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_577_2\\\" class=\\\"edd_price_option_577\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_577_unlimitedsites\\\"><label for=\\\"edd_price_option_577_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_577_3\\\" class=\\\"edd_price_option_577\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"5310a62361\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"577\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"577\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"577\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"577","item_id":"577","item_name":"Authorize.net Payment Gateway","currency":"USD","price":49,"download":{"download_id":577},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_577-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_577\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"AUD\",\n \"CAD\",\n \"CHF\",\n \"DKK\",\n \"EUR\",\n \"GBP\",\n \"NOK\",\n \"NZD\",\n \"PLN\",\n \"SEK\",\n \"USD\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.0.0\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n },\n {\n \"info\": {\n \"id\": 557,\n \"slug\": \"stripe-payment-gateway\",\n \"title\": \"Stripe Payment Gateway\",\n \"create_date\": \"2018-02-26 09:44:18\",\n \"modified_date\": \"2023-10-13 10:50:30\",\n \"status\": \"publish\",\n \"link\": \"https:\\/\\/wptravelengine.com\\/?post_type=download&p=557\",\n \"permalink\": \"\\/plugins\\/stripe-payment-gateway\\/\",\n \"content\": \"This Stripe Payment Gateway extension allows you to accept credit cards directly on your website through <a href=\\\"https:\\/\\/stripe.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Stripe.com<\\/a> account.\\n\\nWhen using Stripe payment gateway with WP Travel Engine, the travelers enter their credit card details on the checkout page and never leave your site. This results in a better user experience and increases in sales or conversion.\\n\\n<iframe title=\\\"YouTube video player\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/FxzH560e6CI\\\" width=\\\"790\\\" height=\\\"444\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe>\\n\\n<strong>Which countries does Stripe support?<\\/strong>\\n\\nStripe is currently available in many countries. It is also constantly expanding to more countries. To know if your country is supported, please visit the <a href=\\\"https:\\/\\/stripe.com\\/global\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Stripe Global page<\\/a>.\\n\\n<strong>Does Stripe require my site to have an SSL certificate?<\\/strong>\\n\\nYes, you will need to use SSL certificate with Stripe. The pages that include a payment form should be prefixed with <i>https:\\/\\/<\\/i>. For more information, please visit <a href=\\\"https:\\/\\/stripe.com\\/docs\\/security\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Stripe Security page<\\/a>.\",\n \"excerpt\": \"This Stripe Payment Gateway extension allows you to accept credit cards directly on your website through Stripe.com account.\",\n \"thumbnail\": \"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Stripe-Payment.jpg\",\n \"category\": [\n {\n \"term_id\": 5,\n \"name\": \"Add-Ons\",\n \"slug\": \"add-ons\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 5,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 30,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 6,\n \"name\": \"Payment Gateways\",\n \"slug\": \"payment-gateways\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 6,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 5,\n \"count\": 11,\n \"filter\": \"raw\"\n },\n {\n \"term_id\": 107,\n \"name\": \"Pricing - Growth\",\n \"slug\": \"pricing-growth\",\n \"term_group\": 0,\n \"term_taxonomy_id\": 107,\n \"taxonomy\": \"download_category\",\n \"description\": \"\",\n \"parent\": 0,\n \"count\": 27,\n \"filter\": \"raw\"\n }\n ],\n \"tags\": false,\n \"image\": \"<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Stripe-Payment-150x150.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"Stripe Payment Gateway\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Stripe-Payment-150x150.jpg 150w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Stripe-Payment-75x75.jpg 75w, https:\\/\\/wptravelengine.com\\/wp-content\\/uploads\\/edd\\/2018\\/07\\/Stripe-Payment-65x65.jpg 65w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>\",\n \"purchase_link\": \"\\t<form id=\\\"edd_purchase_557\\\" class=\\\"edd_download_purchase_form edd_purchase_557\\\" method=\\\"post\\\">\\n\\n\\t\\t\\t<div class=\\\"edd_price_options edd_single_mode\\\">\\n\\t\\t<ul>\\n\\t\\t\\t<li id=\\\"edd_price_option_557_singlesite\\\"><label for=\\\"edd_price_option_557_1\\\"><input type=\\\"radio\\\" checked=\'checked\' name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_557_1\\\" class=\\\"edd_price_option_557\\\" value=\\\"1\\\" data-price=\\\"49.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Single Site<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$49.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_557_2-5sites\\\"><label for=\\\"edd_price_option_557_2\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_557_2\\\" class=\\\"edd_price_option_557\\\" value=\\\"2\\\" data-price=\\\"99.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">2-5 Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$99.00<\\/span><\\/label><\\/li><li id=\\\"edd_price_option_557_unlimitedsites\\\"><label for=\\\"edd_price_option_557_3\\\"><input type=\\\"radio\\\" name=\\\"edd_options[price_id][]\\\" id=\\\"edd_price_option_557_3\\\" class=\\\"edd_price_option_557\\\" value=\\\"3\\\" data-price=\\\"149.00\\\"\\/> <span class=\\\"edd_price_option_name\\\">Unlimited Sites<\\/span><span class=\\\"edd_price_option_sep\\\"> – <\\/span><span class=\\\"edd_price_option_price\\\">$149.00<\\/span><\\/label><\\/li>\\t\\t<\\/ul>\\n\\t<\\/div><!--end .edd_price_options-->\\n\\n\\t\\t<div class=\\\"edd_purchase_submit_wrapper\\\">\\n\\t\\t\\t<button class=\\\"edd-add-to-cart button blue edd-submit\\\" data-nonce=\\\"d829b37498\\\" data-timestamp=\\\"1708107603\\\" data-token=\\\"8d42fa79ad7528cb30da8b90d4b1b871c80e366bb15cdf941d8a6c1b00a41bb7\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"557\\\" data-variable-price=\\\"yes\\\" data-price-mode=single data-price=\\\"0\\\" ><span class=\\\"edd-add-to-cart-label\\\">Download Now<\\/span> <span class=\\\"edd-loading\\\" aria-label=\\\"Loading\\\"><\\/span><\\/button><input type=\\\"submit\\\" class=\\\"edd-add-to-cart edd-no-js button blue edd-submit\\\" name=\\\"edd_purchase_download\\\" value=\\\"Download Now\\\" data-action=\\\"edd_add_to_cart\\\" data-download-id=\\\"557\\\" data-variable-price=\\\"yes\\\" data-price-mode=single \\/><a href=\\\"https:\\/\\/wptravelengine.com\\/checkout\\/\\\" class=\\\"edd_go_to_checkout button blue edd-submit\\\" style=\\\"display:none;\\\">Checkout<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"edd-cart-ajax-alert\\\" aria-live=\\\"assertive\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"edd-cart-added-alert\\\" style=\\\"display: none;\\\">\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"edd-icon edd-icon-check\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 28 28\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<path d=\\\"M26.11 8.844c0 .39-.157.78-.44 1.062L12.234 23.344c-.28.28-.672.438-1.062.438s-.78-.156-1.06-.438l-7.782-7.78c-.28-.282-.438-.673-.438-1.063s.156-.78.438-1.06l2.125-2.126c.28-.28.672-.438 1.062-.438s.78.156 1.062.438l4.594 4.61L21.42 5.656c.282-.28.673-.438 1.063-.438s.78.155 1.062.437l2.125 2.125c.28.28.438.672.438 1.062z\\\"\\/>\\n\\t\\t\\t\\t\\t\\t<\\/svg>\\n\\t\\t\\t\\t\\t\\tAdded to cart\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div><!--end .edd_purchase_submit_wrapper-->\\n\\n\\t\\t<input type=\\\"hidden\\\" name=\\\"download_id\\\" value=\\\"557\\\">\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_action\\\" class=\\\"edd_action_input\\\" value=\\\"add_to_cart\\\">\\n\\t\\t\\n\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"edd_redirect_to_checkout\\\" value=\\\"1\\\">\\n\\t\\t\\n\\t\\t<input type=\\\"hidden\\\" class=\\\"gtmkit_product_data\\\" name=\\\"gtmkit_product_data\\\" value=\\\"{"id":"557","item_id":"557","item_name":"Stripe Payment Gateway","currency":"USD","price":49,"download":{"download_id":557},"item_category":"Add-Ons","item_category2":"Payment Gateways"}\\\" \\/>\\n\\n\\t<\\/form><!--end #edd_purchase_557-->\\n\",\n \"price\": \"<span class=\\\"edd_price\\\" id=\\\"edd_price_557\\\">$49.00<\\/span>\"\n },\n \"pricing\": {\n \"singlesite\": \"49.00\",\n \"2-5sites\": \"99.00\",\n \"unlimitedsites\": \"149.00\"\n },\n \"wte\": {\n \"supported_currencies\": [\n \"GBP\",\n \"USD\"\n ]\n },\n \"licensing\": {\n \"enabled\": true,\n \"version\": \"2.2.2\",\n \"exp_unit\": \"years\",\n \"exp_length\": \"1\"\n }\n }\n ],\n \"request_speed\": 0.09171080589294434\n}','no'),(1210,'_wp_session_5a71258433747c886079a2e1f72cb5cc','a:0:{}','yes'),(1211,'_wp_session_expires_5a71258433747c886079a2e1f72cb5cc','1708240110','yes'),(1212,'_wp_session_8ce83e4ecc1d24ec55a4d963ad008475','a:0:{}','yes'),(1213,'_wp_session_expires_8ce83e4ecc1d24ec55a4d963ad008475','1708240114','yes'),(1214,'_wp_session_4505ec5483c6fe51d03cc2fb86eadcec','a:0:{}','yes'),(1215,'_wp_session_expires_4505ec5483c6fe51d03cc2fb86eadcec','1708240116','yes'); /*!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 = utf8mb4 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=382 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(6,7,'_customize_changeset_uuid','42bf3114-c000-457a-8067-55ed27d6b676'),(5,7,'_customize_draft_post_name','home'),(7,8,'_customize_draft_post_name','blog'),(8,8,'_customize_changeset_uuid','42bf3114-c000-457a-8067-55ed27d6b676'),(159,94,'_menu_item_menu_item_parent','0'),(10,10,'_customize_changeset_uuid','25cf1a77-410b-4ae0-a161-82d2001a197e'),(158,94,'_menu_item_type','post_type'),(12,11,'_customize_changeset_uuid','25cf1a77-410b-4ae0-a161-82d2001a197e'),(13,13,'_wp_attached_file','2024/02/giraffe-01.jpg'),(14,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2024/02/giraffe-01.jpg\";s:8:\"filesize\";i:51696;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"giraffe-01-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22814;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"giraffe-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8773;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:22:\"giraffe-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26709;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:22:\"giraffe-01-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27675;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:22:\"giraffe-01-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15323;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:22:\"giraffe-01-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16118;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"giraffe-01-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1779;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15,14,'_wp_attached_file','2024/02/38.jpg'),(16,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/38.jpg\";s:8:\"filesize\";i:54905;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"38-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"38-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5820;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"38-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46523;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"38-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16162;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"38-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18497;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"38-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10109;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"38-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10754;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"38-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2374;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,15,'_wp_attached_file','2024/02/36.jpg'),(18,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/36.jpg\";s:8:\"filesize\";i:71902;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"36-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7839;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"36-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64715;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"36-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22350;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"36-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25191;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"36-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13751;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"36-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14499;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"36-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2972;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19,16,'_wp_attached_file','2024/02/34.jpg'),(20,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/34.jpg\";s:8:\"filesize\";i:69244;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"34-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7710;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"34-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78191;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"34-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26374;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"34-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30282;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"34-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15222;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"34-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16613;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"34-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2577;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21,17,'_wp_attached_file','2024/02/33.jpg'),(22,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/33.jpg\";s:8:\"filesize\";i:67656;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"33-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8402;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"33-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59566;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"33-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22739;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"33-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25606;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"33-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14817;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"33-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15429;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"33-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3356;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23,18,'_wp_attached_file','2024/02/32.jpg'),(24,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/32.jpg\";s:8:\"filesize\";i:39846;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"32-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9122;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4736;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"32-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36721;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"32-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13021;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"32-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14481;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"32-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8010;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"32-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8661;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"32-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1907;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,19,'_wp_attached_file','2024/02/32-1.jpg'),(26,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2024/02/32-1.jpg\";s:8:\"filesize\";i:39846;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"32-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9122;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"32-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4736;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:16:\"32-1-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36721;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:16:\"32-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13021;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:16:\"32-1-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14481;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:16:\"32-1-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8010;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:16:\"32-1-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8661;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:14:\"32-1-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1907;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,20,'_wp_attached_file','2024/02/2b.jpg'),(28,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/2b.jpg\";s:8:\"filesize\";i:84460;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"2b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18483;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"2b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7486;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"2b-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69076;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"2b-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21530;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"2b-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28773;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"2b-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15340;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"2b-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16108;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"2b-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3150;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,21,'_customize_draft_post_name','home'),(30,21,'_customize_changeset_uuid','29996b10-f689-4c8d-9e7f-783a910249d6'),(31,22,'_customize_draft_post_name','blog'),(32,22,'_customize_changeset_uuid','29996b10-f689-4c8d-9e7f-783a910249d6'),(33,24,'_wp_attached_file','2024/02/caption-e1708090639400.jpg'),(34,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:298;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2024/02/caption-e1708090639400.jpg\";s:8:\"filesize\";i:15812;s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"caption-e1708090639400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5034;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:34:\"caption-e1708090639400-298x250.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12773;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:34:\"caption-e1708090639400-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7765;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:34:\"caption-e1708090639400-298x170.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8969;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:32:\"caption-e1708090639400-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,25,'_wp_attached_file','2024/02/30.jpg'),(36,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2024/02/30.jpg\";s:8:\"filesize\";i:106917;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"30-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9267;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:14:\"30-630x480.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96035;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:14:\"30-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30705;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:14:\"30-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34200;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"30-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17581;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:14:\"30-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18889;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:12:\"30-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2887;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(37,26,'_wp_attached_file','2024/02/flamingos.jpg'),(38,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:413;s:4:\"file\";s:21:\"2024/02/flamingos.jpg\";s:8:\"filesize\";i:115331;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"flamingos-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"flamingos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9208;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"flamingos-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29263;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"flamingos-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32642;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"flamingos-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17124;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"flamingos-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18147;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:19:\"flamingos-80x60.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2850;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(39,27,'_customize_draft_post_name','home'),(40,27,'_customize_changeset_uuid','c6b7ba3d-3c98-4684-9e3f-8f41384137ac'),(41,28,'_customize_draft_post_name','blog'),(42,28,'_customize_changeset_uuid','c6b7ba3d-3c98-4684-9e3f-8f41384137ac'),(43,30,'_wp_attached_file','2024/02/mounnt-kenya-3.jpg'),(44,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2024/02/mounnt-kenya-3.jpg\";s:8:\"filesize\";i:373888;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13936;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"mounnt-kenya-3-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8373;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76685;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:27:\"mounnt-kenya-3-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168422;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108821;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28883;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30799;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15290;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-3-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16027;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:25:\"mounnt-kenya-3-120x60.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3247;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,31,'_customize_draft_post_name','home'),(46,31,'_customize_changeset_uuid','1934249c-9631-4098-8243-b28791c260bf'),(47,32,'_customize_draft_post_name','blog'),(48,32,'_customize_changeset_uuid','1934249c-9631-4098-8243-b28791c260bf'),(49,34,'_wp_attached_file','2024/02/mounnt-kenya-2.jpg'),(50,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:765;s:4:\"file\";s:26:\"2024/02/mounnt-kenya-2.jpg\";s:8:\"filesize\";i:302577;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12646;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"mounnt-kenya-2-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8328;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74912;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"mounnt-kenya-2-1536x612.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260291;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:27:\"mounnt-kenya-2-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200698;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104502;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28780;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33911;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16507;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:26:\"mounnt-kenya-2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17642;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:25:\"mounnt-kenya-2-151x60.jpg\";s:5:\"width\";i:151;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4046;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51,35,'_wp_attached_file','2024/02/mounnt-kenya.jpg'),(52,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:544;s:4:\"file\";s:24:\"2024/02/mounnt-kenya.jpg\";s:8:\"filesize\";i:45074;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5125;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"mounnt-kenya-1024x363.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28224;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3486;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-768x272.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18091;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:25:\"mounnt-kenya-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43333;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-630x544.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22404;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8712;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10607;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6314;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:24:\"mounnt-kenya-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6749;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:23:\"mounnt-kenya-169x60.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2549;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53,36,'_wp_attached_file','2024/02/AFRICAN-WILDLIFE-SAFARI-2.png'),(54,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:428;s:6:\"height\";i:292;s:4:\"file\";s:37:\"2024/02/AFRICAN-WILDLIFE-SAFARI-2.png\";s:8:\"filesize\";i:308224;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"AFRICAN-WILDLIFE-SAFARI-2-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"AFRICAN-WILDLIFE-SAFARI-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:50421;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:37:\"AFRICAN-WILDLIFE-SAFARI-2-300x292.png\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172020;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:37:\"AFRICAN-WILDLIFE-SAFARI-2-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184552;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:37:\"AFRICAN-WILDLIFE-SAFARI-2-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95869;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:37:\"AFRICAN-WILDLIFE-SAFARI-2-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101743;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-2-88x60.png\";s:5:\"width\";i:88;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13119;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,37,'_wp_attached_file','2024/02/service-9.jpg'),(56,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:21:\"2024/02/service-9.jpg\";s:8:\"filesize\";i:180155;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"service-9-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14000;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"service-9-1024x536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"service-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7862;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"service-9-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65581;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:22:\"service-9-1200x540.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131355;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:21:\"service-9-630x628.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80951;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"service-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24026;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"service-9-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27881;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"service-9-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14595;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"service-9-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15354;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"service-9-115x60.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57,38,'_wp_attached_file','2024/02/service-8.jpg'),(58,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:230;s:4:\"file\";s:21:\"2024/02/service-8.jpg\";s:8:\"filesize\";i:52991;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"service-8-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"service-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5717;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"service-8-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12238;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"service-8-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9047;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"service-8-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9187;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:19:\"service-8-97x60.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59,39,'_wp_attached_file','2024/02/service-6.jpg'),(60,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2024/02/service-6.jpg\";s:8:\"filesize\";i:338037;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"service-6-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16118;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"service-6-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118065;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"service-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7233;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"service-6-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74626;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"service-6-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222796;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:22:\"service-6-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144451;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:21:\"service-6-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72217;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"service-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22141;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"service-6-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28914;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"service-6-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15073;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"service-6-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16333;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"service-6-107x60.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3396;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:3:\"ACN\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:3:\"ACN\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(61,40,'_wp_attached_file','2024/02/service-4.jpg'),(62,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:635;s:6:\"height\";i:357;s:4:\"file\";s:21:\"2024/02/service-4.jpg\";s:8:\"filesize\";i:40362;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"service-4-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"service-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6348;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:21:\"service-4-630x357.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35120;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"service-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15725;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"service-4-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19512;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"service-4-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11186;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"service-4-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11865;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"service-4-107x60.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,1,'_raratheme_view_count','8'),(64,41,'_wp_attached_file','2024/02/slider-9.jpg'),(65,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1180;s:6:\"height\";i:663;s:4:\"file\";s:20:\"2024/02/slider-9.jpg\";s:8:\"filesize\";i:187514;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"slider-9-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20588;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"slider-9-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164257;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"slider-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"slider-9-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103535;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:21:\"slider-9-1180x540.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194589;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:20:\"slider-9-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117275;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:20:\"slider-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35708;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:20:\"slider-9-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39675;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:20:\"slider-9-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20195;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:20:\"slider-9-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20894;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:19:\"slider-9-107x60.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3704;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66,42,'_wp_attached_file','2024/02/slider-5.jpg'),(67,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:765;s:4:\"file\";s:20:\"2024/02/slider-5.jpg\";s:8:\"filesize\";i:302577;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"slider-5-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12646;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"slider-5-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"slider-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8328;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"slider-5-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74912;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"slider-5-1536x612.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260291;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:21:\"slider-5-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200698;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:20:\"slider-5-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104502;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:20:\"slider-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28780;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:20:\"slider-5-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33911;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:20:\"slider-5-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16507;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:20:\"slider-5-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17642;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:19:\"slider-5-151x60.jpg\";s:5:\"width\";i:151;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4046;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(68,43,'_wp_attached_file','2024/02/TSAVO-EAST.png'),(69,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:462;s:6:\"height\";i:531;s:4:\"file\";s:22:\"2024/02/TSAVO-EAST.png\";s:8:\"filesize\";i:334605;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TSAVO-EAST-261x300.png\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TSAVO-EAST-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42009;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:22:\"TSAVO-EAST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132106;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:22:\"TSAVO-EAST-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131159;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:22:\"TSAVO-EAST-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70602;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:22:\"TSAVO-EAST-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73311;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"TSAVO-EAST-52x60.png\";s:5:\"width\";i:52;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(70,44,'_wp_attached_file','2024/02/TSAVO-WEST.png'),(71,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:531;s:6:\"height\";i:527;s:4:\"file\";s:22:\"2024/02/TSAVO-WEST.png\";s:8:\"filesize\";i:301018;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TSAVO-WEST-300x298.png\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TSAVO-WEST-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30411;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:22:\"TSAVO-WEST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93732;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:22:\"TSAVO-WEST-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85054;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:22:\"TSAVO-WEST-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46688;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:22:\"TSAVO-WEST-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48022;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"TSAVO-WEST-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(72,45,'_customize_draft_post_name','home'),(73,45,'_customize_changeset_uuid','83e109c4-7d32-40e4-9717-efc8efadb3f1'),(74,46,'_customize_draft_post_name','blog'),(75,46,'_customize_changeset_uuid','83e109c4-7d32-40e4-9717-efc8efadb3f1'),(76,48,'_wp_attached_file','2024/02/AFRICAN-WILDLIFE-SAFARI.png'),(77,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:428;s:6:\"height\";i:534;s:4:\"file\";s:35:\"2024/02/AFRICAN-WILDLIFE-SAFARI.png\";s:8:\"filesize\";i:531336;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141958;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49210;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168027;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176872;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92495;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:35:\"AFRICAN-WILDLIFE-SAFARI-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96539;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:33:\"AFRICAN-WILDLIFE-SAFARI-48x60.png\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7335;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(78,49,'_wp_attached_file','2024/02/zebra-4444.jpg'),(79,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:728;s:6:\"height\";i:262;s:4:\"file\";s:22:\"2024/02/zebra-4444.jpg\";s:8:\"filesize\";i:59469;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"zebra-4444-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"zebra-4444-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8799;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:22:\"zebra-4444-630x262.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62054;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:22:\"zebra-4444-300x262.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31146;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:22:\"zebra-4444-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35634;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:22:\"zebra-4444-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17898;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:22:\"zebra-4444-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19194;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:21:\"zebra-4444-167x60.jpg\";s:5:\"width\";i:167;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4228;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(80,50,'_wp_attached_file','2024/02/migration.png'),(81,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:450;s:4:\"file\";s:21:\"2024/02/migration.png\";s:8:\"filesize\";i:975833;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"migration-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"migration-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60318;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"migration-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:628007;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:21:\"migration-630x450.png\";s:5:\"width\";i:630;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:683608;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"migration-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224690;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"migration-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259481;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"migration-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124178;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"migration-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132984;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"migration-137x60.png\";s:5:\"width\";i:137;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(82,51,'_customize_draft_post_name','home'),(83,51,'_customize_changeset_uuid','da402a9f-1cdc-43e8-8df9-1cc7e45cf16c'),(84,52,'_customize_draft_post_name','blog'),(85,52,'_customize_changeset_uuid','da402a9f-1cdc-43e8-8df9-1cc7e45cf16c'),(86,54,'_wp_attached_file','2024/02/arabuko-sokoke-bird-viewing2.jpg'),(87,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:40:\"2024/02/arabuko-sokoke-bird-viewing2.jpg\";s:8:\"filesize\";i:271539;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17420;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"arabuko-sokoke-bird-viewing2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9404;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72859;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:41:\"arabuko-sokoke-bird-viewing2-1200x540.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122391;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81692;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27311;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30651;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16720;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:40:\"arabuko-sokoke-bird-viewing2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17460;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:39:\"arabuko-sokoke-bird-viewing2-107x60.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(88,55,'_wp_attached_file','2024/02/gedi-ruins3.jpeg'),(89,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2024/02/gedi-ruins3.jpeg\";s:8:\"filesize\";i:184972;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16716;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"gedi-ruins3-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144002;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88849;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:25:\"gedi-ruins3-1280x540.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165455;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-630x630.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78179;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20876;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-410x250.jpeg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26121;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-280x170.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13123;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:24:\"gedi-ruins3-300x170.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14373;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:22:\"gedi-ruins3-80x60.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2120;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(90,56,'_wp_attached_file','2024/02/ellllleeeee.png'),(91,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:23:\"2024/02/ellllleeeee.png\";s:8:\"filesize\";i:1948683;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96246;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"ellllleeeee-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:915460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42544;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:543489;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"ellllleeeee-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1868947;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:24:\"ellllleeeee-1290x540.png\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1126376;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-630x630.png\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:592449;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153412;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184008;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90451;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:23:\"ellllleeeee-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96773;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:22:\"ellllleeeee-107x60.png\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(92,57,'_wp_attached_file','2024/02/starfish.png'),(93,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:643;s:6:\"height\";i:360;s:4:\"file\";s:20:\"2024/02/starfish.png\";s:8:\"filesize\";i:398584;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"starfish-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"starfish-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34611;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:20:\"starfish-630x360.png\";s:5:\"width\";i:630;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:283549;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:20:\"starfish-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119005;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:20:\"starfish-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132613;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:20:\"starfish-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67195;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:20:\"starfish-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71491;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:19:\"starfish-107x60.png\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11644;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(94,58,'_wp_attached_file','2024/02/safari-booking.png'),(95,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:345;s:6:\"height\";i:146;s:4:\"file\";s:26:\"2024/02/safari-booking.png\";s:8:\"filesize\";i:7191;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"safari-booking-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22479;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"safari-booking-150x146.png\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13303;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:26:\"safari-booking-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21252;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:26:\"safari-booking-280x146.png\";s:5:\"width\";i:280;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19925;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:26:\"safari-booking-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21252;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:25:\"safari-booking-142x60.png\";s:5:\"width\";i:142;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,59,'_wp_attached_file','2024/02/Falconry.png'),(97,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:40;s:4:\"file\";s:20:\"2024/02/Falconry.png\";s:8:\"filesize\";i:7157;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98,60,'_wp_attached_file','2024/02/Sea-Beach-Backgrounds-scaled.jpg'),(99,60,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:40:\"2024/02/Sea-Beach-Backgrounds-scaled.jpg\";s:8:\"filesize\";i:591927;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15286;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Sea-Beach-Backgrounds-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7020;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77571;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"Sea-Beach-Backgrounds-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252811;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"Sea-Beach-Backgrounds-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:407328;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:34:\"Sea-Beach-Backgrounds-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132520;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80161;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22529;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26046;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13344;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:33:\"Sea-Beach-Backgrounds-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14180;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:31:\"Sea-Beach-Backgrounds-96x60.jpg\";s:5:\"width\";i:96;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"Sea-Beach-Backgrounds.jpg\";}'),(100,61,'_wp_attached_file','2024/02/zebra.jpg'),(101,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:728;s:6:\"height\";i:410;s:4:\"file\";s:17:\"2024/02/zebra.jpg\";s:8:\"filesize\";i:87207;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"zebra-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"zebra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:17:\"zebra-630x410.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71480;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:17:\"zebra-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25485;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:17:\"zebra-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28165;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:17:\"zebra-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13707;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:17:\"zebra-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14552;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:16:\"zebra-107x60.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2702;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(102,62,'_wp_attached_file','2024/02/elephants.jpg'),(103,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1340;s:6:\"height\";i:571;s:4:\"file\";s:21:\"2024/02/elephants.jpg\";s:8:\"filesize\";i:271311;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"elephants-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11339;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"elephants-1024x436.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"elephants-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7101;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"elephants-768x327.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55967;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:22:\"elephants-1290x540.jpg\";s:5:\"width\";i:1290;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126328;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:21:\"elephants-630x571.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73358;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"elephants-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21823;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"elephants-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26109;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"elephants-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13902;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"elephants-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14879;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"elephants-141x60.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3471;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(104,63,'_wp_attached_file','2024/02/wildebeest-river-crossing.jpg'),(105,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:424;s:4:\"file\";s:37:\"2024/02/wildebeest-river-crossing.jpg\";s:8:\"filesize\";i:219496;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15805;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"wildebeest-river-crossing-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11043;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92203;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-630x424.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:424;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116480;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39331;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45380;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22053;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:37:\"wildebeest-river-crossing-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23553;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:36:\"wildebeest-river-crossing-150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4779;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(106,64,'_wp_attached_file','2024/02/rhino.jpg'),(107,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:489;s:4:\"file\";s:17:\"2024/02/rhino.jpg\";s:8:\"filesize\";i:43156;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"rhino-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14960;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"rhino-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6535;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:17:\"rhino-630x489.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:489;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60107;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:17:\"rhino-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20325;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:17:\"rhino-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23539;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:17:\"rhino-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12170;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:17:\"rhino-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12904;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:15:\"rhino-88x60.jpg\";s:5:\"width\";i:88;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(108,65,'_wp_attached_file','2024/02/tra.png'),(109,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:293;s:6:\"height\";i:98;s:4:\"file\";s:15:\"2024/02/tra.png\";s:8:\"filesize\";i:12193;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"tra-150x98.png\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7654;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:14:\"tra-280x98.png\";s:5:\"width\";i:280;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13489;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:14:\"tra-179x60.png\";s:5:\"width\";i:179;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8891;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(110,66,'_wp_attached_file','2024/02/partner-3.png'),(111,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:21:\"2024/02/partner-3.png\";s:8:\"filesize\";i:14647;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"partner-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:10899;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"partner-3-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20972;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"partner-3-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18576;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"partner-3-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4575;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(112,67,'_wp_attached_file','2024/02/partner-7.png'),(113,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:301;s:6:\"height\";i:151;s:4:\"file\";s:21:\"2024/02/partner-7.png\";s:8:\"filesize\";i:5934;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"partner-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:6811;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"partner-7-280x151.png\";s:5:\"width\";i:280;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6049;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"partner-7-120x60.png\";s:5:\"width\";i:120;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3672;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(114,68,'_wp_attached_file','2024/02/partner-2.png'),(115,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:317;s:6:\"height\";i:180;s:4:\"file\";s:21:\"2024/02/partner-2.png\";s:8:\"filesize\";i:33249;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"partner-2-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"partner-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:22281;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"partner-2-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33343;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"partner-2-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35304;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"partner-2-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36195;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"partner-2-106x60.png\";s:5:\"width\";i:106;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(116,69,'_wp_attached_file','2024/02/partner-1.png'),(117,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:162;s:4:\"file\";s:21:\"2024/02/partner-1.png\";s:8:\"filesize\";i:41839;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"partner-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:35207;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"partner-1-280x162.png\";s:5:\"width\";i:280;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48493;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"partner-1-111x60.png\";s:5:\"width\";i:111;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11080;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(118,70,'_wp_attached_file','2024/02/partner-4.png'),(119,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:21:\"2024/02/partner-4.png\";s:8:\"filesize\";i:14622;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"partner-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:13310;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"partner-4-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16880;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"partner-4-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14168;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"partner-4-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(120,71,'_wp_attached_file','2024/02/marine.png'),(121,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:18:\"2024/02/marine.png\";s:8:\"filesize\";i:927761;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"marine-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"marine-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43415;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"marine-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:588060;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:19:\"marine-1000x540.png\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:798488;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:18:\"marine-630x630.png\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:535340;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:18:\"marine-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153265;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:18:\"marine-410x250.png\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182770;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:18:\"marine-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90470;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:18:\"marine-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96874;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:16:\"marine-90x60.png\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11545;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(122,72,'_wp_attached_file','2024/02/gedi.jpg'),(123,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2024/02/gedi.jpg\";s:8:\"filesize\";i:74568;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"gedi-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"gedi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9378;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:16:\"gedi-630x540.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103293;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:16:\"gedi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32320;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:16:\"gedi-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36136;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:16:\"gedi-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18462;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:16:\"gedi-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19654;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:14:\"gedi-80x60.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2657;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(124,73,'_customize_draft_post_name','home'),(125,73,'_customize_changeset_uuid','45feb416-f13b-4d8a-9a58-2e5c62359c1f'),(126,74,'_customize_draft_post_name','blog'),(127,74,'_customize_changeset_uuid','45feb416-f13b-4d8a-9a58-2e5c62359c1f'),(128,76,'_wp_attached_file','2024/02/gedi-1.jpg'),(129,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:18:\"2024/02/gedi-1.jpg\";s:8:\"filesize\";i:74568;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"gedi-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"gedi-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9378;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:18:\"gedi-1-630x540.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103293;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:18:\"gedi-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32320;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:18:\"gedi-1-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36136;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:18:\"gedi-1-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18462;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:18:\"gedi-1-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19654;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:16:\"gedi-1-80x60.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2657;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130,77,'_wp_attached_file','2024/02/IMG-20220926-WA0006.jpg'),(131,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2024/02/IMG-20220926-WA0006.jpg\";s:8:\"filesize\";i:113345;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14826;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"IMG-20220926-WA0006-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77164;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:32:\"IMG-20220926-WA0006-1080x540.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82242;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-630x630.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54873;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14826;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17593;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9355;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:31:\"IMG-20220926-WA0006-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10125;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:29:\"IMG-20220926-WA0006-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1607;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132,78,'_wp_attached_file','2024/02/AdobeStock_606514625_Preview.jpeg'),(133,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:560;s:4:\"file\";s:41:\"2024/02/AdobeStock_606514625_Preview.jpeg\";s:8:\"filesize\";i:129156;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-300x168.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8699;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4972;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-768x430.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36635;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:42:\"AdobeStock_606514625_Preview-1000x540.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59353;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-630x560.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42945;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13676;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-410x250.jpeg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14709;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-280x170.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8133;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:41:\"AdobeStock_606514625_Preview-300x170.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8718;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:40:\"AdobeStock_606514625_Preview-107x60.jpeg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2160;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:22:\"Oleg - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(134,79,'_wp_attached_file','2024/02/AdobeStock_606514.jpeg'),(135,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:562;s:4:\"file\";s:30:\"2024/02/AdobeStock_606514.jpeg\";s:8:\"filesize\";i:178528;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9316;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4894;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38597;}s:18:\"travel-agency-full\";a:5:{s:4:\"file\";s:31:\"AdobeStock_606514-1000x540.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58884;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-630x562.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40498;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13422;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-410x250.jpeg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15530;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-280x170.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8506;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:30:\"AdobeStock_606514-300x170.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9291;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:29:\"AdobeStock_606514-107x60.jpeg\";s:5:\"width\";i:107;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2316;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:23:\"Rixie - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(136,80,'_wp_attached_file','2024/02/wilderbeast.jpg'),(137,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:23:\"2024/02/wilderbeast.jpg\";s:8:\"filesize\";i:112376;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"wilderbeast-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15662;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"wilderbeast-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"wilderbeast-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70822;}s:21:\"travel-agency-popular\";a:5:{s:4:\"file\";s:23:\"wilderbeast-630x512.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71914;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:23:\"wilderbeast-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24455;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:23:\"wilderbeast-410x250.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30126;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:23:\"wilderbeast-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16072;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:23:\"wilderbeast-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17194;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:22:\"wilderbeast-120x60.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3669;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(138,81,'_wp_attached_file','2024/02/discover.jpg'),(139,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:310;s:4:\"file\";s:20:\"2024/02/discover.jpg\";s:8:\"filesize\";i:195516;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"discover-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"discover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8882;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:20:\"discover-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28087;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:20:\"discover-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32670;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:20:\"discover-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16490;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:20:\"discover-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17575;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:18:\"discover-72x60.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(140,82,'_wp_attached_file','2024/02/gorrila_t.jpg'),(141,82,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:310;s:4:\"file\";s:21:\"2024/02/gorrila_t.jpg\";s:8:\"filesize\";i:229815;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gorrila_t-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32193;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gorrila_t-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10910;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:21:\"gorrila_t-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34727;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:21:\"gorrila_t-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40905;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:21:\"gorrila_t-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20130;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:21:\"gorrila_t-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21156;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:19:\"gorrila_t-72x60.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2840;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(142,83,'_wp_attached_file','2024/02/honey2.jpg'),(143,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:310;s:4:\"file\";s:18:\"2024/02/honey2.jpg\";s:8:\"filesize\";i:109037;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"honey2-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"honey2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6018;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:18:\"honey2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16643;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:18:\"honey2-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18191;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:18:\"honey2-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10338;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:18:\"honey2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10939;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:16:\"honey2-72x60.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2024;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(144,84,'_wp_attached_file','2024/02/vegan.jpg'),(145,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:310;s:4:\"file\";s:17:\"2024/02/vegan.jpg\";s:8:\"filesize\";i:116457;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"vegan-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16220;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"vegan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6200;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:17:\"vegan-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18650;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:17:\"vegan-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21086;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:17:\"vegan-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11066;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:17:\"vegan-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11613;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:15:\"vegan-72x60.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1975;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(146,85,'_wp_attached_file','2024/02/logo.png'),(147,85,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:151;s:4:\"file\";s:16:\"2024/02/logo.png\";s:8:\"filesize\";i:425128;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42106;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:14:\"logo-64x60.png\";s:5:\"width\";i:64;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8986;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,86,'_customize_draft_post_name','home'),(149,86,'_customize_changeset_uuid','938886b0-4dbb-4597-8db5-21534bf3a756'),(150,87,'_customize_draft_post_name','blog'),(151,87,'_customize_changeset_uuid','938886b0-4dbb-4597-8db5-21534bf3a756'),(152,89,'_customize_draft_post_name','home'),(153,89,'_customize_changeset_uuid','8f190252-60f9-41eb-b3b6-b5c02fd13a3f'),(154,90,'_customize_draft_post_name','blog'),(155,90,'_customize_changeset_uuid','8f190252-60f9-41eb-b3b6-b5c02fd13a3f'),(156,35,'_wp_attachment_custom_header_last_used_travel-charm','1708090251'),(157,35,'_wp_attachment_is_custom_header','travel-charm'),(160,94,'_menu_item_object_id','10'),(161,94,'_menu_item_object','page'),(162,94,'_menu_item_target',''),(163,94,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(164,94,'_menu_item_xfn',''),(165,94,'_menu_item_url',''),(166,95,'_menu_item_type','post_type'),(167,95,'_menu_item_menu_item_parent','0'),(168,95,'_menu_item_object_id','11'),(169,95,'_menu_item_object','page'),(170,95,'_menu_item_target',''),(171,95,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(172,95,'_menu_item_xfn',''),(173,95,'_menu_item_url',''),(174,12,'_wp_trash_meta_status','publish'),(175,12,'_wp_trash_meta_time','1708090251'),(176,96,'_wp_trash_meta_status','publish'),(177,96,'_wp_trash_meta_time','1708090363'),(178,91,'_customize_restore_dismissed','1'),(179,88,'_customize_restore_dismissed','1'),(180,75,'_customize_restore_dismissed','1'),(181,53,'_customize_restore_dismissed','1'),(182,47,'_customize_restore_dismissed','1'),(183,33,'_customize_restore_dismissed','1'),(184,29,'_customize_restore_dismissed','1'),(185,23,'_customize_restore_dismissed','1'),(186,9,'_customize_restore_dismissed','1'),(187,97,'_edit_lock','1708090506:1'),(188,97,'_wp_trash_meta_status','publish'),(189,97,'_wp_trash_meta_time','1708090495'),(190,98,'_edit_lock','1708090684:1'),(191,24,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:11:\"caption.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:19:\"caption-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5405;}s:23:\"travel-agency-blog-orig\";a:5:{s:4:\"file\";s:19:\"caption-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13066;}s:26:\"travel-agency-related-orig\";a:5:{s:4:\"file\";s:19:\"caption-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8037;}s:25:\"travel-agency-recent-orig\";a:5:{s:4:\"file\";s:19:\"caption-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9209;}s:25:\"travel-agency-schema-orig\";a:5:{s:4:\"file\";s:17:\"caption-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1916;}}'),(192,98,'_wp_trash_meta_status','publish'),(193,98,'_wp_trash_meta_time','1708090713'),(194,99,'_wp_trash_meta_status','publish'),(195,99,'_wp_trash_meta_time','1708090822'),(196,100,'_edit_lock','1708090945:1'),(197,101,'_wp_attached_file','2024/02/cropped-IMG-20220926-WA0006.jpg'),(198,101,'_wp_attachment_context','activities'),(199,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:39:\"2024/02/cropped-IMG-20220926-WA0006.jpg\";s:8:\"filesize\";i:25115;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"cropped-IMG-20220926-WA0006-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11886;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"cropped-IMG-20220926-WA0006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5109;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:39:\"cropped-IMG-20220926-WA0006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14539;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:39:\"cropped-IMG-20220926-WA0006-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17414;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:39:\"cropped-IMG-20220926-WA0006-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9683;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:39:\"cropped-IMG-20220926-WA0006-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10483;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:37:\"cropped-IMG-20220926-WA0006-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(200,100,'_wp_trash_meta_status','publish'),(201,100,'_wp_trash_meta_time','1708090950'),(202,102,'_edit_lock','1708091225:1'),(203,103,'_wp_attached_file','2024/02/cropped-arabuko-sokoke-bird-viewing2.jpg'),(204,103,'_wp_attachment_context','activities'),(205,103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:48:\"2024/02/cropped-arabuko-sokoke-bird-viewing2.jpg\";s:8:\"filesize\";i:42637;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"cropped-arabuko-sokoke-bird-viewing2-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"cropped-arabuko-sokoke-bird-viewing2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8670;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:48:\"cropped-arabuko-sokoke-bird-viewing2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24312;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:48:\"cropped-arabuko-sokoke-bird-viewing2-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23651;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:48:\"cropped-arabuko-sokoke-bird-viewing2-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13173;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:48:\"cropped-arabuko-sokoke-bird-viewing2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13757;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:46:\"cropped-arabuko-sokoke-bird-viewing2-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2082;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(206,102,'_wp_trash_meta_status','publish'),(207,102,'_wp_trash_meta_time','1708091227'),(208,104,'_edit_lock','1708091335:1'),(209,105,'_wp_attached_file','2024/02/cropped-honey2.jpg'),(210,105,'_wp_attachment_context','activities'),(211,105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:26:\"2024/02/cropped-honey2.jpg\";s:8:\"filesize\";i:24488;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-honey2-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-honey2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5759;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:26:\"cropped-honey2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15036;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:26:\"cropped-honey2-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14014;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:26:\"cropped-honey2-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8400;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:26:\"cropped-honey2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8589;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:24:\"cropped-honey2-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212,104,'_wp_trash_meta_status','publish'),(213,104,'_wp_trash_meta_time','1708091343'),(214,106,'_wp_attached_file','2024/02/cropped-starfish.png'),(215,106,'_wp_attachment_context','activities'),(216,106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:28:\"2024/02/cropped-starfish.png\";s:8:\"filesize\";i:195554;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95311;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33614;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111419;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-360x250.png\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100275;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53927;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56361;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:26:\"cropped-starfish-48x60.png\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5637;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(217,107,'_edit_lock','1708091910:1'),(218,108,'_wp_attached_file','2024/02/cropped-starfish-1.png'),(219,108,'_wp_attachment_context','activities'),(220,108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:30:\"2024/02/cropped-starfish-1.png\";s:8:\"filesize\";i:195598;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"cropped-starfish-1-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95087;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"cropped-starfish-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:33675;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:30:\"cropped-starfish-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:111332;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:30:\"cropped-starfish-1-360x250.png\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100266;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:30:\"cropped-starfish-1-280x170.png\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53919;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:30:\"cropped-starfish-1-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56508;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:28:\"cropped-starfish-1-48x60.png\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(221,107,'_wp_trash_meta_status','publish'),(222,107,'_wp_trash_meta_time','1708091823'),(223,109,'_edit_lock','1708092065:1'),(224,110,'_wp_attached_file','2024/02/cropped-zebra.jpg'),(225,110,'_wp_attachment_context','activities'),(226,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:25:\"2024/02/cropped-zebra.jpg\";s:8:\"filesize\";i:40468;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7194;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22493;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24015;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13160;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14020;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:23:\"cropped-zebra-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(227,111,'_wp_attached_file','2024/02/cropped-zebra-1.jpg'),(228,111,'_wp_attachment_context','activities'),(229,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:27:\"2024/02/cropped-zebra-1.jpg\";s:8:\"filesize\";i:40468;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-zebra-1-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-zebra-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7194;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:27:\"cropped-zebra-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22493;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:27:\"cropped-zebra-1-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24015;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:27:\"cropped-zebra-1-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13160;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:27:\"cropped-zebra-1-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14020;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:25:\"cropped-zebra-1-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(230,109,'_wp_trash_meta_status','publish'),(231,109,'_wp_trash_meta_time','1708092047'),(232,112,'_wp_trash_meta_status','publish'),(233,112,'_wp_trash_meta_time','1708092372'),(234,113,'_wp_trash_meta_status','publish'),(235,113,'_wp_trash_meta_time','1708093623'),(236,114,'_wp_trash_meta_status','publish'),(237,114,'_wp_trash_meta_time','1708093652'),(238,115,'_wp_trash_meta_status','publish'),(239,115,'_wp_trash_meta_time','1708093708'),(240,116,'_wp_trash_meta_status','publish'),(241,116,'_wp_trash_meta_time','1708093770'),(242,117,'_edit_lock','1708093835:1'),(243,117,'_wp_trash_meta_status','publish'),(244,117,'_wp_trash_meta_time','1708093839'),(245,118,'_edit_lock','1708094052:1'),(246,118,'_wp_trash_meta_status','publish'),(247,118,'_wp_trash_meta_time','1708094052'),(248,119,'_wp_trash_meta_status','publish'),(249,119,'_wp_trash_meta_time','1708094093'),(250,120,'_wp_trash_meta_status','publish'),(251,120,'_wp_trash_meta_time','1708094124'),(252,121,'_wp_trash_meta_status','publish'),(253,121,'_wp_trash_meta_time','1708094164'),(254,122,'_wp_trash_meta_status','publish'),(255,122,'_wp_trash_meta_time','1708094197'),(256,123,'_wp_trash_meta_status','publish'),(257,123,'_wp_trash_meta_time','1708094309'),(258,124,'_wp_attached_file','2024/02/cropped-34.jpg'),(259,124,'_wp_attachment_context','activities'),(260,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2024/02/cropped-34.jpg\";s:8:\"filesize\";i:40357;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"cropped-34-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19709;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"cropped-34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7695;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:22:\"cropped-34-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24304;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:22:\"cropped-34-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28008;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:22:\"cropped-34-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15328;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:22:\"cropped-34-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16078;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"cropped-34-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1695;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(261,125,'_wp_trash_meta_status','publish'),(262,125,'_wp_trash_meta_time','1708094423'),(263,126,'_wp_attached_file','2024/02/cropped-gedi.jpg'),(264,126,'_wp_attachment_context','activities'),(265,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:24:\"2024/02/cropped-gedi.jpg\";s:8:\"filesize\";i:50609;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"cropped-gedi-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"cropped-gedi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9208;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:24:\"cropped-gedi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28717;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:24:\"cropped-gedi-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28987;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:24:\"cropped-gedi-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15695;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:24:\"cropped-gedi-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16397;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:22:\"cropped-gedi-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(266,127,'_edit_lock','1708094491:1'),(267,127,'_wp_trash_meta_status','publish'),(268,127,'_wp_trash_meta_time','1708094492'),(269,128,'_edit_lock','1708094551:1'),(270,129,'_wp_attached_file','2024/02/cropped-32.jpg'),(271,129,'_wp_attachment_context','activities'),(272,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2024/02/cropped-32.jpg\";s:8:\"filesize\";i:20562;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"cropped-32-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10749;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"cropped-32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5199;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:22:\"cropped-32-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13801;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:22:\"cropped-32-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14611;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:22:\"cropped-32-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8299;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:22:\"cropped-32-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8497;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:20:\"cropped-32-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(273,128,'_wp_trash_meta_status','publish'),(274,128,'_wp_trash_meta_time','1708094578'),(275,130,'_wp_attached_file','2024/02/cropped-wilderbeast.jpg'),(276,130,'_wp_attachment_context','activities'),(277,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:31:\"2024/02/cropped-wilderbeast.jpg\";s:8:\"filesize\";i:36663;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"cropped-wilderbeast-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18706;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"cropped-wilderbeast-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7685;}s:27:\"travel-agency-popular-small\";a:5:{s:4:\"file\";s:31:\"cropped-wilderbeast-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21340;}s:18:\"travel-agency-blog\";a:5:{s:4:\"file\";s:31:\"cropped-wilderbeast-360x250.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20990;}s:21:\"travel-agency-related\";a:5:{s:4:\"file\";s:31:\"cropped-wilderbeast-280x170.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12301;}s:20:\"travel-agency-recent\";a:5:{s:4:\"file\";s:31:\"cropped-wilderbeast-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12814;}s:20:\"travel-agency-schema\";a:5:{s:4:\"file\";s:29:\"cropped-wilderbeast-48x60.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1863;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(278,131,'_edit_lock','1708094672:1'),(279,131,'_wp_trash_meta_status','publish'),(280,131,'_wp_trash_meta_time','1708094708'),(281,132,'_wp_trash_meta_status','publish'),(282,132,'_wp_trash_meta_time','1708094856'),(283,133,'_wp_trash_meta_status','publish'),(284,133,'_wp_trash_meta_time','1708094879'),(285,134,'_edit_lock','1708094923:1'),(286,134,'_wp_trash_meta_status','publish'),(287,134,'_wp_trash_meta_time','1708094936'),(288,135,'_wp_trash_meta_status','publish'),(289,135,'_wp_trash_meta_time','1708094973'),(290,137,'_menu_item_type','post_type'),(291,137,'_menu_item_menu_item_parent','0'),(292,137,'_menu_item_object_id','11'),(293,137,'_menu_item_object','page'),(294,137,'_menu_item_target',''),(295,137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(296,137,'_menu_item_xfn',''),(297,137,'_menu_item_url',''),(298,138,'_menu_item_type','post_type'),(299,138,'_menu_item_menu_item_parent','0'),(300,138,'_menu_item_object_id','2'),(301,138,'_menu_item_object','page'),(302,138,'_menu_item_target',''),(303,138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(304,138,'_menu_item_xfn',''),(305,138,'_menu_item_url',''),(306,136,'_wp_trash_meta_status','publish'),(307,136,'_wp_trash_meta_time','1708095086'),(308,140,'_menu_item_type','post_type'),(309,140,'_menu_item_menu_item_parent','0'),(310,140,'_menu_item_object_id','2'),(311,140,'_menu_item_object','page'),(312,140,'_menu_item_target',''),(313,140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(314,140,'_menu_item_xfn',''),(315,140,'_menu_item_url',''),(316,139,'_wp_trash_meta_status','publish'),(317,139,'_wp_trash_meta_time','1708095130'),(318,141,'_edit_lock','1708095149:1'),(319,141,'_wp_trash_meta_status','publish'),(320,141,'_wp_trash_meta_time','1708095154'),(321,142,'_wp_trash_meta_status','publish'),(322,142,'_wp_trash_meta_time','1708095187'),(323,143,'_edit_lock','1708095209:1'),(324,143,'_wp_trash_meta_status','publish'),(325,143,'_wp_trash_meta_time','1708095214'),(326,145,'_menu_item_type','post_type'),(327,145,'_menu_item_menu_item_parent','0'),(328,145,'_menu_item_object_id','2'),(329,145,'_menu_item_object','page'),(330,145,'_menu_item_target',''),(331,145,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(332,145,'_menu_item_xfn',''),(333,145,'_menu_item_url',''),(334,144,'_wp_trash_meta_status','publish'),(335,144,'_wp_trash_meta_time','1708095245'),(336,146,'_edit_lock','1708095269:1'),(337,147,'_menu_item_type','post_type'),(338,147,'_menu_item_menu_item_parent','0'),(339,147,'_menu_item_object_id','2'),(340,147,'_menu_item_object','page'),(341,147,'_menu_item_target',''),(342,147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(343,147,'_menu_item_xfn',''),(344,147,'_menu_item_url',''),(345,146,'_wp_trash_meta_status','publish'),(346,146,'_wp_trash_meta_time','1708095276'),(347,148,'_wp_trash_meta_status','publish'),(348,148,'_wp_trash_meta_time','1708095293'),(349,149,'_wp_trash_meta_status','publish'),(350,149,'_wp_trash_meta_time','1708095424'),(351,150,'_edit_lock','1708095789:1'),(352,150,'_wp_trash_meta_status','publish'),(353,150,'_wp_trash_meta_time','1708095814'),(354,151,'_wp_trash_meta_status','publish'),(355,151,'_wp_trash_meta_time','1708096205'),(356,152,'_edit_lock','1708096263:1'),(357,152,'_wp_trash_meta_status','publish'),(358,152,'_wp_trash_meta_time','1708096282'),(359,153,'_wp_trash_meta_status','publish'),(360,153,'_wp_trash_meta_time','1708097057'),(361,154,'_wp_trash_meta_status','publish'),(362,154,'_wp_trash_meta_time','1708100881'),(363,155,'_form','<label> Your name\n [text* your-name autocomplete:name] </label>\n\n<label> Your email\n [email* your-email autocomplete:email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),(364,155,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:52:\"[_site_title] <wordpress@kenyaclassictourtravel.com>\";s:4:\"body\";s:191:\"From: [your-name] [your-email]\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(365,155,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:52:\"[_site_title] <wordpress@kenyaclassictourtravel.com>\";s:4:\"body\";s:220:\"Message Body:\n[your-message]\n\n-- \nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(366,155,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(367,155,'_additional_settings',''),(368,155,'_locale','en_US'),(369,155,'_hash','2cc4acab7eb45afa397b0d65ff7e4c3d3b6c0da5'),(370,1,'_wp_trash_meta_status','publish'),(371,1,'_wp_trash_meta_time','1708149793'),(372,1,'_wp_desired_post_slug','hello-world'),(373,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(374,159,'_wp_page_template','templates/template-trip_types.php'),(375,160,'_wp_page_template','templates/template-destination.php'),(376,161,'_wp_page_template','templates/template-activities.php'),(377,171,'trip_version','2.0.0'),(378,171,'_edit_lock','1708150204:1'),(379,172,'_edit_lock','1708151017:1'),(380,173,'_edit_lock','1708151532:1'),(381,174,'_edit_lock','1708177881: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 = utf8mb4 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(255) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT 0, `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=175 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2024-02-16 12:47:44','2024-02-16 12:47:44','<!-- 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!','','trash','open','open','','hello-world__trashed','','','2024-02-17 06:03:13','2024-02-17 06:03:13','',0,'https://kenyaclassictourtravel.com/?p=1',0,'post','',1),(2,1,'2024-02-16 12:47:44','2024-02-16 12:47:44','<!-- 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ñ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=\"https://kenyaclassictourtravel.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2024-02-16 12:47:44','2024-02-16 12:47:44','',0,'https://kenyaclassictourtravel.com/?page_id=2',0,'page','',0),(3,1,'2024-02-16 12:47:44','2024-02-16 12:47:44','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://kenyaclassictourtravel.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><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’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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 "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2024-02-16 12:47:44','2024-02-16 12:47:44','',0,'https://kenyaclassictourtravel.com/?page_id=3',0,'page','',0),(4,0,'2024-02-16 12:47:45','2024-02-16 12:47:45','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-02-16 12:47:45','2024-02-16 12:47:45','',0,'https://kenyaclassictourtravel.com/2024/02/16/navigation/',0,'wp_navigation','',0),(5,1,'2024-02-16 12:48:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-02-16 12:48:03','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=5',0,'post','',0),(7,1,'2024-02-16 12:53:32','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 12:53:32','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=7',0,'page','',0),(8,1,'2024-02-16 12:53:32','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 12:53:32','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=8',0,'page','',0),(9,1,'2024-02-16 12:53:32','0000-00-00 00:00:00','{\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-02-16 12:53:32\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 7,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 8,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 7,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 12:53:32\"\n }\n}','','','auto-draft','closed','closed','','42bf3114-c000-457a-8067-55ed27d6b676','','','2024-02-16 12:53:32','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=9',0,'customize_changeset','',0),(10,1,'2024-02-16 13:30:51','2024-02-16 13:30:51','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','publish','closed','closed','','home','','','2024-02-16 13:30:51','2024-02-16 13:30:51','',0,'https://kenyaclassictourtravel.com/?page_id=10',0,'page','',0),(11,1,'2024-02-16 13:30:51','2024-02-16 13:30:51','','Blog','','publish','closed','closed','','blog','','','2024-02-16 13:30:51','2024-02-16 13:30:51','',0,'https://kenyaclassictourtravel.com/?page_id=11',0,'page','',0),(12,1,'2024-02-16 13:30:51','2024-02-16 13:30:51','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 10,\n 11\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:03: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-02-16 13:30:51\"\n },\n \"nav_menu_item[-1]\": {\n \"value\": {\n \"object_id\": 10,\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-02-16 13:30:51\"\n },\n \"nav_menu_item[-2]\": {\n \"value\": {\n \"object_id\": 11,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"post_type\",\n \"title\": \"Blog\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Blog\",\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-02-16 13:30:51\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:03:03\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:03:03\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:03:03\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 11,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:03:03\"\n },\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Cycling%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:51\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:51\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22859%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%221021%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:51\"\n },\n \"travel-charm::header_image\": {\n \"value\": \"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:51\"\n },\n \"travel-charm::header_image_data\": {\n \"value\": {\n \"url\": \"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg\",\n \"thumbnail_url\": \"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg\",\n \"timestamp\": 1708090242823,\n \"attachment_id\": 35,\n \"width\": 1536,\n \"height\": 544\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:51\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:51\"\n }\n}','','','trash','closed','closed','','25cf1a77-410b-4ae0-a161-82d2001a197e','','','2024-02-16 13:30:51','2024-02-16 13:30:51','',0,'https://kenyaclassictourtravel.com/?p=12',0,'customize_changeset','',0),(13,1,'2024-02-16 13:07:09','2024-02-16 13:07:09','','giraffe 01','','inherit','open','closed','','giraffe-01','','','2024-02-16 13:07:09','2024-02-16 13:07:09','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/giraffe-01.jpg',0,'attachment','image/jpeg',0),(14,1,'2024-02-16 13:09:08','2024-02-16 13:09:08','','38','','inherit','open','closed','','38','','','2024-02-16 13:09:08','2024-02-16 13:09:08','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/38.jpg',0,'attachment','image/jpeg',0),(15,1,'2024-02-16 13:11:36','2024-02-16 13:11:36','','36','','inherit','open','closed','','36','','','2024-02-16 13:11:36','2024-02-16 13:11:36','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/36.jpg',0,'attachment','image/jpeg',0),(16,1,'2024-02-16 13:11:43','2024-02-16 13:11:43','','34','','inherit','open','closed','','34','','','2024-02-16 13:11:43','2024-02-16 13:11:43','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/34.jpg',0,'attachment','image/jpeg',0),(17,1,'2024-02-16 13:11:55','2024-02-16 13:11:55','','33','','inherit','open','closed','','33','','','2024-02-16 13:11:55','2024-02-16 13:11:55','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/33.jpg',0,'attachment','image/jpeg',0),(18,1,'2024-02-16 13:12:05','2024-02-16 13:12:05','','32','','inherit','open','closed','','32','','','2024-02-16 13:12:05','2024-02-16 13:12:05','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/32.jpg',0,'attachment','image/jpeg',0),(19,1,'2024-02-16 13:12:30','2024-02-16 13:12:30','','32','','inherit','open','closed','','32-2','','','2024-02-16 13:12:30','2024-02-16 13:12:30','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/32-1.jpg',0,'attachment','image/jpeg',0),(20,1,'2024-02-16 13:12:38','2024-02-16 13:12:38','','2b','','inherit','open','closed','','2b','','','2024-02-16 13:12:38','2024-02-16 13:12:38','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/2b.jpg',0,'attachment','image/jpeg',0),(21,1,'2024-02-16 13:12:39','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:12:39','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=21',0,'page','',0),(22,1,'2024-02-16 13:12:39','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:12:39','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=22',0,'page','',0),(23,1,'2024-02-16 13:12:39','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 21,\n 22\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 21,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 22,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 21,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 22,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:12:39\"\n }\n}','','','auto-draft','closed','closed','','29996b10-f689-4c8d-9e7f-783a910249d6','','','2024-02-16 13:12:39','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=23',0,'customize_changeset','',0),(24,1,'2024-02-16 13:12:42','2024-02-16 13:12:42','','caption','','inherit','open','closed','','caption','','','2024-02-16 13:12:42','2024-02-16 13:12:42','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/caption.jpg',0,'attachment','image/jpeg',0),(25,1,'2024-02-16 13:12:55','2024-02-16 13:12:55','','30','','inherit','open','closed','','30','','','2024-02-16 13:12:55','2024-02-16 13:12:55','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/30.jpg',0,'attachment','image/jpeg',0),(26,1,'2024-02-16 13:13:00','2024-02-16 13:13:00','','flamingos','','inherit','open','closed','','flamingos','','','2024-02-16 13:13:00','2024-02-16 13:13:00','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/flamingos.jpg',0,'attachment','image/jpeg',0),(27,1,'2024-02-16 13:13:17','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:13:17','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=27',0,'page','',0),(28,1,'2024-02-16 13:13:17','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:13:17','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=28',0,'page','',0),(29,1,'2024-02-16 13:13:17','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 27,\n 28\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 27,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 28,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 27,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 28,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:17\"\n }\n}','','','auto-draft','closed','closed','','c6b7ba3d-3c98-4684-9e3f-8f41384137ac','','','2024-02-16 13:13:17','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=29',0,'customize_changeset','',0),(30,1,'2024-02-16 13:13:23','2024-02-16 13:13:23','','mounnt kenya 3','','inherit','open','closed','','mounnt-kenya-3','','','2024-02-16 13:13:23','2024-02-16 13:13:23','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya-3.jpg',0,'attachment','image/jpeg',0),(31,1,'2024-02-16 13:13:29','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:13:29','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=31',0,'page','',0),(32,1,'2024-02-16 13:13:29','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:13:29','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=32',0,'page','',0),(33,1,'2024-02-16 13:13:29','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 31,\n 32\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 31,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 32,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 31,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 32,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:13:29\"\n }\n}','','','auto-draft','closed','closed','','1934249c-9631-4098-8243-b28791c260bf','','','2024-02-16 13:13:29','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=33',0,'customize_changeset','',0),(34,1,'2024-02-16 13:13:37','2024-02-16 13:13:37','','mounnt kenya 2','','inherit','open','closed','','mounnt-kenya-2','','','2024-02-16 13:13:37','2024-02-16 13:13:37','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya-2.jpg',0,'attachment','image/jpeg',0),(35,1,'2024-02-16 13:13:43','2024-02-16 13:13:43','','mounnt kenya','','inherit','open','closed','','mounnt-kenya','','','2024-02-16 13:13:43','2024-02-16 13:13:43','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/mounnt-kenya.jpg',0,'attachment','image/jpeg',0),(36,1,'2024-02-16 13:13:50','2024-02-16 13:13:50','','AFRICAN WILDLIFE SAFARI 2','','inherit','open','closed','','african-wildlife-safari-2','','','2024-02-16 13:13:50','2024-02-16 13:13:50','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/AFRICAN-WILDLIFE-SAFARI-2.png',0,'attachment','image/png',0),(37,1,'2024-02-16 13:14:08','2024-02-16 13:14:08','','service-9','','inherit','open','closed','','service-9','','','2024-02-16 13:14:08','2024-02-16 13:14:08','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/service-9.jpg',0,'attachment','image/jpeg',0),(38,1,'2024-02-16 13:14:14','2024-02-16 13:14:14','','service-8','','inherit','open','closed','','service-8','','','2024-02-16 13:14:14','2024-02-16 13:14:14','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/service-8.jpg',0,'attachment','image/jpeg',0),(39,1,'2024-02-16 13:14:27','2024-02-16 13:14:27','','service-6','','inherit','open','closed','','service-6','','','2024-02-16 13:14:27','2024-02-16 13:14:27','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/service-6.jpg',0,'attachment','image/jpeg',0),(40,1,'2024-02-16 13:14:32','2024-02-16 13:14:32','','service-4','','inherit','open','closed','','service-4','','','2024-02-16 13:14:32','2024-02-16 13:14:32','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/service-4.jpg',0,'attachment','image/jpeg',0),(41,1,'2024-02-16 13:14:46','2024-02-16 13:14:46','','slider-9','','inherit','open','closed','','slider-9','','','2024-02-16 13:14:46','2024-02-16 13:14:46','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/slider-9.jpg',0,'attachment','image/jpeg',0),(42,1,'2024-02-16 13:15:06','2024-02-16 13:15:06','','slider-5','','inherit','open','closed','','slider-5','','','2024-02-16 13:15:06','2024-02-16 13:15:06','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/slider-5.jpg',0,'attachment','image/jpeg',0),(43,1,'2024-02-16 13:15:15','2024-02-16 13:15:15','','TSAVO EAST','','inherit','open','closed','','tsavo-east','','','2024-02-16 13:15:15','2024-02-16 13:15:15','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/TSAVO-EAST.png',0,'attachment','image/png',0),(44,1,'2024-02-16 13:15:38','2024-02-16 13:15:38','','TSAVO WEST','','inherit','open','closed','','tsavo-west','','','2024-02-16 13:15:38','2024-02-16 13:15:38','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/TSAVO-WEST.png',0,'attachment','image/png',0),(45,1,'2024-02-16 13:16:01','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:16:01','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=45',0,'page','',0),(46,1,'2024-02-16 13:16:01','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:16:01','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=46',0,'page','',0),(47,1,'2024-02-16 13:16:01','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 45,\n 46\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 45,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 46,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 45,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 46,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:16:01\"\n }\n}','','','auto-draft','closed','closed','','83e109c4-7d32-40e4-9717-efc8efadb3f1','','','2024-02-16 13:16:01','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=47',0,'customize_changeset','',0),(48,1,'2024-02-16 13:16:03','2024-02-16 13:16:03','','AFRICAN WILDLIFE SAFARI','','inherit','open','closed','','african-wildlife-safari','','','2024-02-16 13:16:03','2024-02-16 13:16:03','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/AFRICAN-WILDLIFE-SAFARI.png',0,'attachment','image/png',0),(49,1,'2024-02-16 13:16:10','2024-02-16 13:16:10','','zebra 4444','','inherit','open','closed','','zebra-4444','','','2024-02-16 13:16:10','2024-02-16 13:16:10','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/zebra-4444.jpg',0,'attachment','image/jpeg',0),(50,1,'2024-02-16 13:17:10','2024-02-16 13:17:10','','migration','','inherit','open','closed','','migration','','','2024-02-16 13:17:10','2024-02-16 13:17:10','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/migration.png',0,'attachment','image/png',0),(51,1,'2024-02-16 13:17:30','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:17:30','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=51',0,'page','',0),(52,1,'2024-02-16 13:17:30','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:17:30','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=52',0,'page','',0),(53,1,'2024-02-16 13:17:30','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 51,\n 52\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 51,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 52,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 51,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 52,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:17:30\"\n }\n}','','','auto-draft','closed','closed','','da402a9f-1cdc-43e8-8df9-1cc7e45cf16c','','','2024-02-16 13:17:30','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=53',0,'customize_changeset','',0),(54,1,'2024-02-16 13:19:30','2024-02-16 13:19:30','','arabuko-sokoke-bird-viewing2','','inherit','open','closed','','arabuko-sokoke-bird-viewing2','','','2024-02-16 13:19:30','2024-02-16 13:19:30','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/arabuko-sokoke-bird-viewing2.jpg',0,'attachment','image/jpeg',0),(55,1,'2024-02-16 13:19:41','2024-02-16 13:19:41','','gedi-ruins3','','inherit','open','closed','','gedi-ruins3','','','2024-02-16 13:19:41','2024-02-16 13:19:41','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/gedi-ruins3.jpeg',0,'attachment','image/jpeg',0),(56,1,'2024-02-16 13:20:32','2024-02-16 13:20:32','','ellllleeeee','','inherit','open','closed','','ellllleeeee','','','2024-02-16 13:20:32','2024-02-16 13:20:32','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/ellllleeeee.png',0,'attachment','image/png',0),(57,1,'2024-02-16 13:21:10','2024-02-16 13:21:10','','starfish','','inherit','open','closed','','starfish','','','2024-02-16 13:21:10','2024-02-16 13:21:10','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/starfish.png',0,'attachment','image/png',0),(58,1,'2024-02-16 13:21:14','2024-02-16 13:21:14','','safari booking','','inherit','open','closed','','safari-booking','','','2024-02-16 13:21:14','2024-02-16 13:21:14','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/safari-booking.png',0,'attachment','image/png',0),(59,1,'2024-02-16 13:21:30','2024-02-16 13:21:30','','Falconry','','inherit','open','closed','','falconry','','','2024-02-16 13:21:30','2024-02-16 13:21:30','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/Falconry.png',0,'attachment','image/png',0),(60,1,'2024-02-16 13:22:20','2024-02-16 13:22:20','','Sea-Beach-Backgrounds','','inherit','open','closed','','sea-beach-backgrounds','','','2024-02-16 13:22:20','2024-02-16 13:22:20','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/Sea-Beach-Backgrounds.jpg',0,'attachment','image/jpeg',0),(61,1,'2024-02-16 13:22:33','2024-02-16 13:22:33','','zebra','','inherit','open','closed','','zebra','','','2024-02-16 13:22:33','2024-02-16 13:22:33','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/zebra.jpg',0,'attachment','image/jpeg',0),(62,1,'2024-02-16 13:22:47','2024-02-16 13:22:47','','elephants','','inherit','open','closed','','elephants','','','2024-02-16 13:22:47','2024-02-16 13:22:47','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/elephants.jpg',0,'attachment','image/jpeg',0),(63,1,'2024-02-16 13:22:53','2024-02-16 13:22:53','','wildebeest-river-crossing','','inherit','open','closed','','wildebeest-river-crossing','','','2024-02-16 13:22:53','2024-02-16 13:22:53','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/wildebeest-river-crossing.jpg',0,'attachment','image/jpeg',0),(64,1,'2024-02-16 13:22:57','2024-02-16 13:22:57','','rhino','','inherit','open','closed','','rhino','','','2024-02-16 13:22:57','2024-02-16 13:22:57','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/rhino.jpg',0,'attachment','image/jpeg',0),(65,1,'2024-02-16 13:22:59','2024-02-16 13:22:59','','tra','','inherit','open','closed','','tra','','','2024-02-16 13:22:59','2024-02-16 13:22:59','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/tra.png',0,'attachment','image/png',0),(66,1,'2024-02-16 13:23:02','2024-02-16 13:23:02','','partner-3','','inherit','open','closed','','partner-3','','','2024-02-16 13:23:02','2024-02-16 13:23:02','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/partner-3.png',0,'attachment','image/png',0),(67,1,'2024-02-16 13:23:11','2024-02-16 13:23:11','','partner-7','','inherit','open','closed','','partner-7','','','2024-02-16 13:23:11','2024-02-16 13:23:11','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/partner-7.png',0,'attachment','image/png',0),(68,1,'2024-02-16 13:23:17','2024-02-16 13:23:17','','partner-2','','inherit','open','closed','','partner-2','','','2024-02-16 13:23:17','2024-02-16 13:23:17','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/partner-2.png',0,'attachment','image/png',0),(69,1,'2024-02-16 13:23:19','2024-02-16 13:23:19','','partner-1','','inherit','open','closed','','partner-1','','','2024-02-16 13:23:19','2024-02-16 13:23:19','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/partner-1.png',0,'attachment','image/png',0),(70,1,'2024-02-16 13:23:36','2024-02-16 13:23:36','','partner-4','','inherit','open','closed','','partner-4','','','2024-02-16 13:23:36','2024-02-16 13:23:36','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/partner-4.png',0,'attachment','image/png',0),(71,1,'2024-02-16 13:24:05','2024-02-16 13:24:05','','marine','','inherit','open','closed','','marine','','','2024-02-16 13:24:05','2024-02-16 13:24:05','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/marine.png',0,'attachment','image/png',0),(72,1,'2024-02-16 13:24:14','2024-02-16 13:24:14','','gedi','','inherit','open','closed','','gedi','','','2024-02-16 13:24:14','2024-02-16 13:24:14','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/gedi.jpg',0,'attachment','image/jpeg',0),(73,1,'2024-02-16 13:24:53','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:24:53','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=73',0,'page','',0),(74,1,'2024-02-16 13:24:53','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:24:53','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=74',0,'page','',0),(75,1,'2024-02-16 13:24:53','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 73,\n 74\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 73,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 74,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 73,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 74,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:24:53\"\n }\n}','','','auto-draft','closed','closed','','45feb416-f13b-4d8a-9a58-2e5c62359c1f','','','2024-02-16 13:24:53','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=75',0,'customize_changeset','',0),(76,1,'2024-02-16 13:25:02','2024-02-16 13:25:02','','gedi','','inherit','open','closed','','gedi-2','','','2024-02-16 13:25:02','2024-02-16 13:25:02','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/gedi-1.jpg',0,'attachment','image/jpeg',0),(77,1,'2024-02-16 13:25:07','2024-02-16 13:25:07','','IMG-20220926-WA0006','','inherit','open','closed','','img-20220926-wa0006','','','2024-02-16 13:25:07','2024-02-16 13:25:07','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/IMG-20220926-WA0006.jpg',0,'attachment','image/jpeg',0),(78,1,'2024-02-16 13:25:15','2024-02-16 13:25:15','','AdobeStock_606514625_Preview','','inherit','open','closed','','adobestock_606514625_preview','','','2024-02-16 13:25:15','2024-02-16 13:25:15','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/AdobeStock_606514625_Preview.jpeg',0,'attachment','image/jpeg',0),(79,1,'2024-02-16 13:25:36','2024-02-16 13:25:36','','AdobeStock_606514','','inherit','open','closed','','adobestock_606514','','','2024-02-16 13:25:36','2024-02-16 13:25:36','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/AdobeStock_606514.jpeg',0,'attachment','image/jpeg',0),(80,1,'2024-02-16 13:25:43','2024-02-16 13:25:43','','wilderbeast','','inherit','open','closed','','wilderbeast','','','2024-02-16 13:25:43','2024-02-16 13:25:43','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/wilderbeast.jpg',0,'attachment','image/jpeg',0),(81,1,'2024-02-16 13:25:49','2024-02-16 13:25:49','','discover','','inherit','open','closed','','discover','','','2024-02-16 13:25:49','2024-02-16 13:25:49','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/discover.jpg',0,'attachment','image/jpeg',0),(82,1,'2024-02-16 13:25:59','2024-02-16 13:25:59','','gorrila_t','','inherit','open','closed','','gorrila_t','','','2024-02-16 13:25:59','2024-02-16 13:25:59','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/gorrila_t.jpg',0,'attachment','image/jpeg',0),(83,1,'2024-02-16 13:26:10','2024-02-16 13:26:10','','honey2','','inherit','open','closed','','honey2','','','2024-02-16 13:26:10','2024-02-16 13:26:10','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/honey2.jpg',0,'attachment','image/jpeg',0),(84,1,'2024-02-16 13:26:14','2024-02-16 13:26:14','','vegan','','inherit','open','closed','','vegan','','','2024-02-16 13:26:14','2024-02-16 13:26:14','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/vegan.jpg',0,'attachment','image/jpeg',0),(85,1,'2024-02-16 13:26:24','2024-02-16 13:26:24','','logo','','inherit','open','closed','','logo','','','2024-02-16 13:26:24','2024-02-16 13:26:24','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/logo.png',0,'attachment','image/png',0),(86,1,'2024-02-16 13:28:59','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:28:59','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=86',0,'page','',0),(87,1,'2024-02-16 13:28:59','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:28:59','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=87',0,'page','',0),(88,1,'2024-02-16 13:28:59','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 86,\n 87\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 86,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 87,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 86,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 87,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:28:59\"\n }\n}','','','auto-draft','closed','closed','','938886b0-4dbb-4597-8db5-21534bf3a756','','','2024-02-16 13:28:59','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=88',0,'customize_changeset','',0),(89,1,'2024-02-16 13:30:15','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','auto-draft','closed','closed','','','','','2024-02-16 13:30:15','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=89',0,'page','',0),(90,1,'2024-02-16 13:30:15','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2024-02-16 13:30:15','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?page_id=90',0,'page','',0),(91,1,'2024-02-16 13:30:15','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 89,\n 90\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 89,\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"title\": \"Home\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 90,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"travel-charm::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 89,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 90,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:30:15\"\n }\n}','','','auto-draft','closed','closed','','8f190252-60f9-41eb-b3b6-b5c02fd13a3f','','','2024-02-16 13:30:15','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=91',0,'customize_changeset','',0),(92,1,'2024-02-16 13:30:51','2024-02-16 13:30:51','<!-- wp:paragraph -->\n<p>Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.</p>\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','10-revision-v1','','','2024-02-16 13:30:51','2024-02-16 13:30:51','',10,'https://kenyaclassictourtravel.com/?p=92',0,'revision','',0),(93,1,'2024-02-16 13:30:51','2024-02-16 13:30:51','','Blog','','inherit','closed','closed','','11-revision-v1','','','2024-02-16 13:30:51','2024-02-16 13:30:51','',11,'https://kenyaclassictourtravel.com/?p=93',0,'revision','',0),(94,1,'2024-02-16 13:30:51','2024-02-16 13:30:51',' ','','','publish','closed','closed','','94','','','2024-02-16 13:30:51','2024-02-16 13:30:51','',0,'https://kenyaclassictourtravel.com/2024/02/16/94/',0,'nav_menu_item','',0),(95,1,'2024-02-16 14:52:34','2024-02-16 13:30:51','','About us','','publish','closed','closed','','95','','','2024-02-16 14:52:34','2024-02-16 14:52:34','',0,'https://kenyaclassictourtravel.com/2024/02/16/95/',2,'nav_menu_item','',0),(96,1,'2024-02-16 13:32:43','2024-02-16 13:32:43','{\n \"travel-charm::about_us_title\": {\n \"value\": \"Welcome to Kenya Classic Tour Travel\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:32:43\"\n }\n}','','','trash','closed','closed','','dd4f693b-936e-498d-a04e-cfd6c6202635','','','2024-02-16 13:32:43','2024-02-16 13:32:43','',0,'https://kenyaclassictourtravel.com/2024/02/16/dd4f693b-936e-498d-a04e-cfd6c6202635/',0,'customize_changeset','',0),(97,1,'2024-02-16 13:34:55','2024-02-16 13:34:55','{\n \"travel-charm::about_us_desc\": {\n \"value\": \"Kenya Classic Tour Travel is a well established Tours and Travel company, that is registered under the registrar of companies and business names act of Kenya since the year 2006, The company is based in the coast of Malindi to undertake in giving professional and reliable tourism services across east and central Africa to its esteemed clients from all walks of life, Offering all the information that might be necessary while on safari. Kenya Classic Tour Travel was founded by George Ngala, a professional field safari guide passionate for wildlife, his aim has always been to enthusiastically share that love and passion with the thousands of satisfied tourists that have been through our hands. We do not aim for exclusivity, we have made our packages accessible and affordable to a wide range of pockets in terms of costs and logistics categorized in different homemade itineraries.\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:34:47\"\n }\n}','','','trash','closed','closed','','d104f065-1401-489e-849e-14dc3b23bc06','','','2024-02-16 13:34:55','2024-02-16 13:34:55','',0,'https://kenyaclassictourtravel.com/?p=97',0,'customize_changeset','',0),(98,1,'2024-02-16 13:38:33','2024-02-16 13:38:33','{\n \"travel-charm::about_us_ad_content\": {\n \"value\": \"<p><img class=\\\"alignnone wp-image-24 size-full\\\" src=\\\"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/caption-e1708090639400.jpg\\\" alt=\\\"\\\" width=\\\"298\\\" height=\\\"300\\\" /></p>\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:37:47\"\n }\n}','','','trash','closed','closed','','c2eeb291-ee91-4d1e-adc0-223d7f84dc60','','','2024-02-16 13:38:33','2024-02-16 13:38:33','',0,'https://kenyaclassictourtravel.com/?p=98',0,'customize_changeset','',0),(99,1,'2024-02-16 13:40:21','2024-02-16 13:40:21','{\n \"travel-charm::activities_desc\": {\n \"value\": \"It is said that the concept of the safari holiday experience, it all started life in Kenya. The word \\u2018safari\\u2019 itself even stems from local Swahili dialect for \\u2018journey\\u2019. However Kenya safari holidays are no ordinary journey, here wildlife roams the grassy open plains in front of majestic snow-capped mountains, savage nature contrasts with absolute luxury and adventure combines all too well with a relaxing stay at the beach.\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:40:21\"\n }\n}','','','trash','closed','closed','','7a7c044f-edc6-4bac-96f1-88b899ced89c','','','2024-02-16 13:40:21','2024-02-16 13:40:21','',0,'https://kenyaclassictourtravel.com/2024/02/16/7a7c044f-edc6-4bac-96f1-88b899ced89c/',0,'customize_changeset','',0),(100,1,'2024-02-16 13:42:30','2024-02-16 13:42:30','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:%22101%22,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Cycling%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:42:25\"\n }\n}','','','trash','closed','closed','','77fb6e7e-2fc0-4a99-b4c2-6173701c1f8f','','','2024-02-16 13:42:30','2024-02-16 13:42:30','',0,'https://kenyaclassictourtravel.com/?p=100',0,'customize_changeset','',0),(102,1,'2024-02-16 13:47:07','2024-02-16 13:47:07','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:%22101%22,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22103%22,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Cycling%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:47:07\"\n }\n}','','','trash','closed','closed','','11d51972-7993-4c15-a54d-0d25060cf3fa','','','2024-02-16 13:47:07','2024-02-16 13:47:07','',0,'https://kenyaclassictourtravel.com/?p=102',0,'customize_changeset','',0),(101,1,'2024-02-16 13:41:27','2024-02-16 13:41:27','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-IMG-20220926-WA0006.jpg','cropped-IMG-20220926-WA0006.jpg','','inherit','open','closed','','cropped-img-20220926-wa0006-jpg','','','2024-02-16 13:41:27','2024-02-16 13:41:27','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-IMG-20220926-WA0006.jpg',0,'attachment','image/jpeg',0),(104,1,'2024-02-16 13:49:03','2024-02-16 13:49:03','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:%22101%22,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22103%22,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22105%22,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Cycling%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:48:55\"\n }\n}','','','trash','closed','closed','','3bb1e2f3-6adc-4065-ad29-9b0ce34c4421','','','2024-02-16 13:49:03','2024-02-16 13:49:03','',0,'https://kenyaclassictourtravel.com/?p=104',0,'customize_changeset','',0),(103,1,'2024-02-16 13:46:55','2024-02-16 13:46:55','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-arabuko-sokoke-bird-viewing2.jpg','cropped-arabuko-sokoke-bird-viewing2.jpg','','inherit','open','closed','','cropped-arabuko-sokoke-bird-viewing2-jpg','','','2024-02-16 13:46:55','2024-02-16 13:46:55','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-arabuko-sokoke-bird-viewing2.jpg',0,'attachment','image/jpeg',0),(106,1,'2024-02-16 13:51:29','2024-02-16 13:51:29','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-starfish.png','cropped-starfish.png','','inherit','open','closed','','cropped-starfish-png','','','2024-02-16 13:51:29','2024-02-16 13:51:29','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-starfish.png',0,'attachment','image/png',0),(105,1,'2024-02-16 13:48:48','2024-02-16 13:48:48','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-honey2.jpg','cropped-honey2.jpg','','inherit','open','closed','','cropped-honey2-jpg','','','2024-02-16 13:48:48','2024-02-16 13:48:48','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-honey2.jpg',0,'attachment','image/jpeg',0),(107,1,'2024-02-16 13:57:03','2024-02-16 13:57:03','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:%22101%22,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22103%22,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22105%22,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22108%22,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 13:57:03\"\n }\n}','','','trash','closed','closed','','e0a4153e-25ec-4ba0-81da-7ef49feb465c','','','2024-02-16 13:57:03','2024-02-16 13:57:03','',0,'https://kenyaclassictourtravel.com/?p=107',0,'customize_changeset','',0),(108,1,'2024-02-16 13:56:55','2024-02-16 13:56:55','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-starfish-1.png','cropped-starfish-1.png','','inherit','open','closed','','cropped-starfish-1-png','','','2024-02-16 13:56:55','2024-02-16 13:56:55','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-starfish-1.png',0,'attachment','image/png',0),(109,1,'2024-02-16 14:00:47','2024-02-16 14:00:47','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:%22101%22,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22103%22,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22111%22,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22108%22,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:00:34\"\n }\n}','','','trash','closed','closed','','97253de5-79f8-4e70-bb9c-f4b14812e1dd','','','2024-02-16 14:00:47','2024-02-16 14:00:47','',0,'https://kenyaclassictourtravel.com/?p=109',0,'customize_changeset','',0),(110,1,'2024-02-16 13:59:40','2024-02-16 13:59:40','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-zebra.jpg','cropped-zebra.jpg','','inherit','open','closed','','cropped-zebra-jpg','','','2024-02-16 13:59:40','2024-02-16 13:59:40','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-zebra.jpg',0,'attachment','image/jpeg',0),(111,1,'2024-02-16 14:00:16','2024-02-16 14:00:16','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-zebra-1.jpg','cropped-zebra-1.jpg','','inherit','open','closed','','cropped-zebra-1-jpg','','','2024-02-16 14:00:16','2024-02-16 14:00:16','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-zebra-1.jpg',0,'attachment','image/jpeg',0),(112,1,'2024-02-16 14:06:12','2024-02-16 14:06:12','{\n \"travel-charm::ed_popular_section\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:06:12\"\n }\n}','','','trash','closed','closed','','5d45df33-9155-4a94-8547-9fbcc9943eda','','','2024-02-16 14:06:12','2024-02-16 14:06:12','',0,'https://kenyaclassictourtravel.com/2024/02/16/5d45df33-9155-4a94-8547-9fbcc9943eda/',0,'customize_changeset','',0),(113,1,'2024-02-16 14:27:03','2024-02-16 14:27:03','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img3.jpg%22,%22name%22:%22Paragliding%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:27:03\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:27:03\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22859%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%221021%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:27:03\"\n },\n \"travel-charm::custom_logo\": {\n \"value\": 85,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:27:03\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:27:03\"\n }\n}','','','trash','closed','closed','','fc588f46-b66a-4918-94a0-ad952d4c0521','','','2024-02-16 14:27:03','2024-02-16 14:27:03','',0,'https://kenyaclassictourtravel.com/2024/02/16/fc588f46-b66a-4918-94a0-ad952d4c0521/',0,'customize_changeset','',0),(114,1,'2024-02-16 14:27:32','2024-02-16 14:27:32','{\n \"travel-charm::header_text\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:27:32\"\n }\n}','','','trash','closed','closed','','d903309b-b136-4c79-a4fb-8b8d1ef9e59a','','','2024-02-16 14:27:32','2024-02-16 14:27:32','',0,'https://kenyaclassictourtravel.com/2024/02/16/d903309b-b136-4c79-a4fb-8b8d1ef9e59a/',0,'customize_changeset','',0),(115,1,'2024-02-16 14:28:28','2024-02-16 14:28:28','{\n \"site_icon\": {\n \"value\": 85,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:28:28\"\n }\n}','','','trash','closed','closed','','125a4ff9-ab20-4ab2-90b2-8deb25436445','','','2024-02-16 14:28:28','2024-02-16 14:28:28','',0,'https://kenyaclassictourtravel.com/2024/02/16/125a4ff9-ab20-4ab2-90b2-8deb25436445/',0,'customize_changeset','',0),(116,1,'2024-02-16 14:29:30','2024-02-16 14:29:30','{\n \"travel-charm::ed_social_links\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:29:30\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:29:30\"\n }\n}','','','trash','closed','closed','','b4744974-20ba-4b26-8b77-78729269448a','','','2024-02-16 14:29:30','2024-02-16 14:29:30','',0,'https://kenyaclassictourtravel.com/2024/02/16/b4744974-20ba-4b26-8b77-78729269448a/',0,'customize_changeset','',0),(117,1,'2024-02-16 14:30:39','2024-02-16 14:30:39','{\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:30:35\"\n }\n}','','','trash','closed','closed','','6243e7fa-8be3-4336-a1ef-6f553b4d08f7','','','2024-02-16 14:30:39','2024-02-16 14:30:39','',0,'https://kenyaclassictourtravel.com/?p=117',0,'customize_changeset','',0),(118,1,'2024-02-16 14:34:12','2024-02-16 14:34:12','{\n \"travel-charm::time\": {\n \"value\": \"Mon - Fri 8:00 - 18:00\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:32:35\"\n },\n \"travel-charm::phone\": {\n \"value\": \"+254 738 955 558 / +254 716 810 167\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:33:35\"\n },\n \"travel-charm::email\": {\n \"value\": \"info@kenyaclassictourtravel.com\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:32:35\"\n },\n \"travel-charm::phone_label\": {\n \"value\": \"Get in Touch\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:34:12\"\n }\n}','','','trash','closed','closed','','3f805789-4148-4981-a6ca-cf55d4527227','','','2024-02-16 14:34:12','2024-02-16 14:34:12','',0,'https://kenyaclassictourtravel.com/?p=118',0,'customize_changeset','',0),(119,1,'2024-02-16 14:34:53','2024-02-16 14:34:53','{\n \"travel-charm::phone_label\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:34:53\"\n }\n}','','','trash','closed','closed','','e59f7af3-e091-48e6-800e-d1b5b3c5fbe1','','','2024-02-16 14:34:53','2024-02-16 14:34:53','',0,'https://kenyaclassictourtravel.com/2024/02/16/e59f7af3-e091-48e6-800e-d1b5b3c5fbe1/',0,'customize_changeset','',0),(120,1,'2024-02-16 14:35:24','2024-02-16 14:35:24','{\n \"travel-charm::time\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:35:24\"\n }\n}','','','trash','closed','closed','','fd79dd5e-7ec1-4dfd-85aa-a2a68562f141','','','2024-02-16 14:35:24','2024-02-16 14:35:24','',0,'https://kenyaclassictourtravel.com/2024/02/16/fd79dd5e-7ec1-4dfd-85aa-a2a68562f141/',0,'customize_changeset','',0),(121,1,'2024-02-16 14:36:04','2024-02-16 14:36:04','{\n \"travel-charm::phone\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:36:04\"\n }\n}','','','trash','closed','closed','','8fc7c7be-d41b-4737-90fb-27b2f3fd7269','','','2024-02-16 14:36:04','2024-02-16 14:36:04','',0,'https://kenyaclassictourtravel.com/2024/02/16/8fc7c7be-d41b-4737-90fb-27b2f3fd7269/',0,'customize_changeset','',0),(122,1,'2024-02-16 14:36:37','2024-02-16 14:36:37','{\n \"travel-charm::ed_social_links\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:36:37\"\n }\n}','','','trash','closed','closed','','3e48247a-e7e8-477d-a47e-81a8f695df09','','','2024-02-16 14:36:37','2024-02-16 14:36:37','',0,'https://kenyaclassictourtravel.com/2024/02/16/3e48247a-e7e8-477d-a47e-81a8f695df09/',0,'customize_changeset','',0),(123,1,'2024-02-16 14:38:29','2024-02-16 14:38:29','{\n \"travel-charm::about_us_title\": {\n \"value\": \"Welcome to Kenya Classic Tours\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:38:29\"\n }\n}','','','trash','closed','closed','','05744454-9e0d-4738-9a63-355aa223fd6b','','','2024-02-16 14:38:29','2024-02-16 14:38:29','',0,'https://kenyaclassictourtravel.com/2024/02/16/05744454-9e0d-4738-9a63-355aa223fd6b/',0,'customize_changeset','',0),(124,1,'2024-02-16 14:40:20','2024-02-16 14:40:20','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-34.jpg','cropped-34.jpg','','inherit','open','closed','','cropped-34-jpg','','','2024-02-16 14:40:20','2024-02-16 14:40:20','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-34.jpg',0,'attachment','image/jpeg',0),(125,1,'2024-02-16 14:40:23','2024-02-16 14:40:23','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22124%22,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img4.jpg%22,%22name%22:%22Whitewater%20Rafting%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:40:23\"\n }\n}','','','trash','closed','closed','','43bf167c-7c7c-4d3c-9a91-62d2eb14d45e','','','2024-02-16 14:40:23','2024-02-16 14:40:23','',0,'https://kenyaclassictourtravel.com/2024/02/16/43bf167c-7c7c-4d3c-9a91-62d2eb14d45e/',0,'customize_changeset','',0),(126,1,'2024-02-16 14:41:07','2024-02-16 14:41:07','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-gedi.jpg','cropped-gedi.jpg','','inherit','open','closed','','cropped-gedi-jpg','','','2024-02-16 14:41:07','2024-02-16 14:41:07','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-gedi.jpg',0,'attachment','image/jpeg',0),(127,1,'2024-02-16 14:41:32','2024-02-16 14:41:32','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22124%22,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22126%22,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img6.jpg%22,%22name%22:%22Skiing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:41:31\"\n }\n}','','','trash','closed','closed','','d849c2f6-6ec0-4c73-914d-9a41c1a1fd84','','','2024-02-16 14:41:32','2024-02-16 14:41:32','',0,'https://kenyaclassictourtravel.com/?p=127',0,'customize_changeset','',0),(128,1,'2024-02-16 14:42:58','2024-02-16 14:42:58','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22124%22,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22129%22,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22126%22,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22https://kenyaclassictourtravel.com/wp-content/plugins/travel-agency-companion//includes/images/img5.jpg%22,%22name%22:%22Hiking%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:42:58\"\n }\n}','','','trash','closed','closed','','1c3ee5dc-8ce4-4706-bcb7-0d0c6f697ddc','','','2024-02-16 14:42:58','2024-02-16 14:42:58','',0,'https://kenyaclassictourtravel.com/?p=128',0,'customize_changeset','',0),(130,1,'2024-02-16 14:44:19','2024-02-16 14:44:19','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-wilderbeast.jpg','cropped-wilderbeast.jpg','','inherit','open','closed','','cropped-wilderbeast-jpg','','','2024-02-16 14:44:19','2024-02-16 14:44:19','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-wilderbeast.jpg',0,'attachment','image/jpeg',0),(129,1,'2024-02-16 14:42:44','2024-02-16 14:42:44','https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-32.jpg','cropped-32.jpg','','inherit','open','closed','','cropped-32-jpg','','','2024-02-16 14:42:44','2024-02-16 14:42:44','',0,'https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/cropped-32.jpg',0,'attachment','image/jpeg',0),(131,1,'2024-02-16 14:45:08','2024-02-16 14:45:08','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22124%22,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22129%22,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22126%22,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:%22130%22,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:45:08\"\n }\n}','','','trash','closed','closed','','7825612e-2e22-4d92-8699-a2edbc661432','','','2024-02-16 14:45:08','2024-02-16 14:45:08','',0,'https://kenyaclassictourtravel.com/?p=131',0,'customize_changeset','',0),(132,1,'2024-02-16 14:47:36','2024-02-16 14:47:36','{\n \"travel-charm::whyus_bg_image\": {\n \"value\": \"https://kenyaclassictourtravel.com/wp-content/uploads/2024/02/slider-9.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:47:36\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:47:36\"\n }\n}','','','trash','closed','closed','','ba4cd58b-221c-4025-974e-13ca7699f95d','','','2024-02-16 14:47:36','2024-02-16 14:47:36','',0,'https://kenyaclassictourtravel.com/2024/02/16/ba4cd58b-221c-4025-974e-13ca7699f95d/',0,'customize_changeset','',0),(133,1,'2024-02-16 14:47:59','2024-02-16 14:47:59','{\n \"travel-charm::ed_deal_section\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:47:59\"\n }\n}','','','trash','closed','closed','','f93b0f75-26e1-4b01-a488-c7c0c6214be5','','','2024-02-16 14:47:59','2024-02-16 14:47:59','',0,'https://kenyaclassictourtravel.com/2024/02/16/f93b0f75-26e1-4b01-a488-c7c0c6214be5/',0,'customize_changeset','',0),(134,1,'2024-02-16 14:48:56','2024-02-16 14:48:56','{\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:48:56\"\n }\n}','','','trash','closed','closed','','311289cc-bc5d-4731-aa4e-61658dbc2b0c','','','2024-02-16 14:48:56','2024-02-16 14:48:56','',0,'https://kenyaclassictourtravel.com/?p=134',0,'customize_changeset','',0),(135,1,'2024-02-16 14:49:33','2024-02-16 14:49:33','{\n \"travel-charm::ed_feature_section\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:49:33\"\n }\n}','','','trash','closed','closed','','c402e408-e731-4fbc-bbda-b02898ec8f97','','','2024-02-16 14:49:33','2024-02-16 14:49:33','',0,'https://kenyaclassictourtravel.com/2024/02/16/c402e408-e731-4fbc-bbda-b02898ec8f97/',0,'customize_changeset','',0),(136,1,'2024-02-16 14:51:26','2024-02-16 14:51:26','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:124,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:129,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:126,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:130,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:51:26\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:51:26\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:51:26\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:51:26\"\n },\n \"nav_menu_item[-5143777976268704000]\": {\n \"value\": {\n \"object_id\": 11,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Blog\",\n \"url\": \"https://kenyaclassictourtravel.com/blog/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Blog\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Posts Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:51:26\"\n },\n \"nav_menu_item[-1210602741427738600]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"post_type\",\n \"title\": \"Sample Page\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:51:26\"\n }\n}','','','trash','closed','closed','','11acdfd8-1d6f-4273-ba6f-1701c27cbe19','','','2024-02-16 14:51:26','2024-02-16 14:51:26','',0,'https://kenyaclassictourtravel.com/2024/02/16/11acdfd8-1d6f-4273-ba6f-1701c27cbe19/',0,'customize_changeset','',0),(137,1,'2024-02-16 14:53:07','2024-02-16 14:51:26','','Safaris & Excursions','','publish','closed','closed','','137','','','2024-02-16 14:53:07','2024-02-16 14:53:07','',0,'https://kenyaclassictourtravel.com/2024/02/16/137/',3,'nav_menu_item','',0),(138,1,'2024-02-16 14:53:34','2024-02-16 14:51:26','','Accommodation','','publish','closed','closed','','138','','','2024-02-16 14:53:34','2024-02-16 14:53:34','',0,'https://kenyaclassictourtravel.com/2024/02/16/138/',4,'nav_menu_item','',0),(139,1,'2024-02-16 14:52:09','2024-02-16 14:52:09','{\n \"nav_menu_item[-2206590870519912400]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 5,\n \"type\": \"post_type\",\n \"title\": \"Sample Page\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:52:09\"\n }\n}','','','trash','closed','closed','','222821c8-80c0-471f-a5f6-4963029cd50a','','','2024-02-16 14:52:09','2024-02-16 14:52:09','',0,'https://kenyaclassictourtravel.com/2024/02/16/222821c8-80c0-471f-a5f6-4963029cd50a/',0,'customize_changeset','',0),(140,1,'2024-02-16 14:54:05','2024-02-16 14:52:09','','Transfers','','publish','closed','closed','','140','','','2024-02-16 14:54:05','2024-02-16 14:54:05','',0,'https://kenyaclassictourtravel.com/2024/02/16/140/',5,'nav_menu_item','',0),(141,1,'2024-02-16 14:52:34','2024-02-16 14:52:34','{\n \"nav_menu_item[95]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 11,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Posts Page\",\n \"url\": \"https://kenyaclassictourtravel.com/blog/\",\n \"title\": \"About us\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 2,\n \"position\": 2,\n \"status\": \"publish\",\n \"original_title\": \"Blog\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:52:34\"\n }\n}','','','trash','closed','closed','','7562e13c-306c-463e-8ac7-854aab745cff','','','2024-02-16 14:52:34','2024-02-16 14:52:34','',0,'https://kenyaclassictourtravel.com/?p=141',0,'customize_changeset','',0),(142,1,'2024-02-16 14:53:07','2024-02-16 14:53:07','{\n \"nav_menu_item[137]\": {\n \"value\": {\n \"object_id\": 11,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Safaris & Excursions\",\n \"url\": \"https://kenyaclassictourtravel.com/blog/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Blog\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Posts Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:53:07\"\n }\n}','','','trash','closed','closed','','5cf71628-3e5c-4b15-ac21-d1ba1e31d999','','','2024-02-16 14:53:07','2024-02-16 14:53:07','',0,'https://kenyaclassictourtravel.com/2024/02/16/5cf71628-3e5c-4b15-ac21-d1ba1e31d999/',0,'customize_changeset','',0),(143,1,'2024-02-16 14:53:34','2024-02-16 14:53:34','{\n \"nav_menu_item[138]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"post_type\",\n \"title\": \"Accommodation\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:53:34\"\n }\n}','','','trash','closed','closed','','cd80aaae-8b6c-4ad0-8c38-00ffadb4e05a','','','2024-02-16 14:53:34','2024-02-16 14:53:34','',0,'https://kenyaclassictourtravel.com/?p=143',0,'customize_changeset','',0),(144,1,'2024-02-16 14:54:05','2024-02-16 14:54:05','{\n \"nav_menu_item[140]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 5,\n \"type\": \"post_type\",\n \"title\": \"Transfers\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:54:05\"\n },\n \"nav_menu_item[-3429069442833576000]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 6,\n \"type\": \"post_type\",\n \"title\": \"Sample Page\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:54:05\"\n }\n}','','','trash','closed','closed','','9ce4f12f-484c-4c80-a8a2-73718b8685e5','','','2024-02-16 14:54:05','2024-02-16 14:54:05','',0,'https://kenyaclassictourtravel.com/2024/02/16/9ce4f12f-484c-4c80-a8a2-73718b8685e5/',0,'customize_changeset','',0),(145,1,'2024-02-16 14:54:36','2024-02-16 14:54:05','','Gallery','','publish','closed','closed','','145','','','2024-02-16 14:54:36','2024-02-16 14:54:36','',0,'https://kenyaclassictourtravel.com/2024/02/16/145/',6,'nav_menu_item','',0),(146,1,'2024-02-16 14:54:36','2024-02-16 14:54:36','{\n \"nav_menu_item[-164615865434085380]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 7,\n \"type\": \"post_type\",\n \"title\": \"Sample Page\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:54:29\"\n },\n \"nav_menu_item[145]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 6,\n \"type\": \"post_type\",\n \"title\": \"Gallery \",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:54:36\"\n }\n}','','','trash','closed','closed','','363a4b19-d81e-4002-b929-d250b1780804','','','2024-02-16 14:54:36','2024-02-16 14:54:36','',0,'https://kenyaclassictourtravel.com/?p=146',0,'customize_changeset','',0),(147,1,'2024-02-16 14:54:53','2024-02-16 14:54:36','','Contact us','','publish','closed','closed','','147','','','2024-02-16 14:54:53','2024-02-16 14:54:53','',0,'https://kenyaclassictourtravel.com/2024/02/16/147/',7,'nav_menu_item','',0),(148,1,'2024-02-16 14:54:53','2024-02-16 14:54:53','{\n \"nav_menu_item[147]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 7,\n \"type\": \"post_type\",\n \"title\": \"Contact us\",\n \"url\": \"https://kenyaclassictourtravel.com/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:54:53\"\n }\n}','','','trash','closed','closed','','43e29405-6996-4c6f-b8e5-ac8d2adea8b9','','','2024-02-16 14:54:53','2024-02-16 14:54:53','',0,'https://kenyaclassictourtravel.com/2024/02/16/43e29405-6996-4c6f-b8e5-ac8d2adea8b9/',0,'customize_changeset','',0),(149,1,'2024-02-16 14:57:04','2024-02-16 14:57:04','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:124,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:129,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:126,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:130,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:57:04\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:57:04\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:57:04\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:57:04\"\n },\n \"travel-charm::ed_blog_section\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 14:57:04\"\n }\n}','','','trash','closed','closed','','4d27d00a-7205-4cf1-90fe-30ff32a1836d','','','2024-02-16 14:57:04','2024-02-16 14:57:04','',0,'https://kenyaclassictourtravel.com/2024/02/16/4d27d00a-7205-4cf1-90fe-30ff32a1836d/',0,'customize_changeset','',0),(150,1,'2024-02-16 15:03:34','2024-02-16 15:03:34','{\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:03:34\"\n }\n}','','','trash','closed','closed','','a53ebd43-b213-415b-ab8b-ecbb7197439f','','','2024-02-16 15:03:34','2024-02-16 15:03:34','',0,'https://kenyaclassictourtravel.com/?p=150',0,'customize_changeset','',0),(151,1,'2024-02-16 15:10:05','2024-02-16 15:10:05','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:124,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:129,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:126,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:130,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:10:05\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:10:05\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:10:05\"\n },\n \"travel-charm::ed_social_links\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:10:05\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:10:05\"\n }\n}','','','trash','closed','closed','','3f30f648-4467-4933-bf3e-a90201dccde4','','','2024-02-16 15:10:05','2024-02-16 15:10:05','',0,'https://kenyaclassictourtravel.com/2024/02/16/3f30f648-4467-4933-bf3e-a90201dccde4/',0,'customize_changeset','',0),(152,1,'2024-02-16 15:11:22','2024-02-16 15:11:22','{\n \"travel-charm::time\": {\n \"value\": \"Mon - Fri : 08:00 - 18:00\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:11:22\"\n }\n}','','','trash','closed','closed','','33e5d6e1-2a46-4871-85af-94044edb5af8','','','2024-02-16 15:11:22','2024-02-16 15:11:22','',0,'https://kenyaclassictourtravel.com/?p=152',0,'customize_changeset','',0),(153,1,'2024-02-16 15:24:17','2024-02-16 15:24:17','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:124,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:129,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:126,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:130,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:24:17\"\n },\n \"travel-charm::whyus_desc\": {\n \"value\": \"Our team have lived, worked and travelled across the globe, and together we have the requisite knowledge and experience to plan the perfect safari for you.\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:24:17\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:24:17\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:24:17\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 15:24:17\"\n }\n}','','','trash','closed','closed','','4f956bb2-58ee-493e-b2b1-b266e3e403f4','','','2024-02-16 15:24:17','2024-02-16 15:24:17','',0,'https://kenyaclassictourtravel.com/2024/02/16/4f956bb2-58ee-493e-b2b1-b266e3e403f4/',0,'customize_changeset','',0),(154,1,'2024-02-16 16:28:01','2024-02-16 16:28:01','{\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:124,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:129,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:126,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:130,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 16:28:01\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 16:28:01\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 16:28:01\"\n },\n \"travel-charm::cta_desc\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 16:28:01\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-16 16:28:01\"\n }\n}','','','trash','closed','closed','','8c4d43e5-8dea-4398-bbc8-10bbcea39448','','','2024-02-16 16:28:01','2024-02-16 16:28:01','',0,'https://kenyaclassictourtravel.com/2024/02/16/8c4d43e5-8dea-4398-bbc8-10bbcea39448/',0,'customize_changeset','',0),(155,1,'2024-02-16 16:29:08','2024-02-16 16:29:08','<label> Your name\n [text* your-name autocomplete:name] </label>\n\n<label> Your email\n [email* your-email autocomplete:email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@kenyaclassictourtravel.com>\nFrom: [your-name] [your-email]\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@kenyaclassictourtravel.com>\nMessage Body:\n[your-message]\n\n-- \nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2024-02-16 16:29:08','2024-02-16 16:29:08','',0,'https://kenyaclassictourtravel.com/?post_type=wpcf7_contact_form&p=155',0,'wpcf7_contact_form','',0),(156,1,'2024-02-17 06:03:13','2024-02-17 06:03:13','<!-- 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!','','inherit','closed','closed','','1-revision-v1','','','2024-02-17 06:03:13','2024-02-17 06:03:13','',1,'https://kenyaclassictourtravel.com/?p=156',0,'revision','',0),(157,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[WP_TRAVEL_ENGINE_WISHLIST]','Wishlist','','publish','closed','closed','','wishlist','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/wishlist/',0,'page','',0),(158,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[WTE_Trip_Search]','Trip Search Result','','publish','closed','closed','','trip-search-result','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/trip-search-result/',0,'page','',0),(159,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','','Trip Types','','publish','closed','closed','','trip-types','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/trip-types/',0,'page','',0),(160,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','','Destination','','publish','closed','closed','','destination','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/destination/',0,'page','',0),(161,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','','Activities','','publish','closed','closed','','activities','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/activities/',0,'page','',0),(162,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','Thank you for the enquiry. We will soon get in touch with you.','Enquiry Thank You Page','','publish','closed','closed','','enquiry-thank-you-page','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/enquiry-thank-you-page/',0,'page','',0),(163,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[WP_TRAVEL_ENGINE_THANK_YOU]','Thank You','','publish','closed','closed','','thank-you','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/thank-you/',0,'page','',0),(164,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[WP_TRAVEL_ENGINE_PLACE_ORDER]','Checkout','','publish','closed','closed','','checkout','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/checkout/',0,'page','',0),(165,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/terms-and-conditions/',0,'page','',0),(166,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[WP_TRAVEL_ENGINE_BOOK_CONFIRMATION]','Travellers Information','','publish','closed','closed','','travellers-information','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/travellers-information/',0,'page','',0),(167,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[wp_travel_engine_dashboard]','My Account','','publish','closed','closed','','my-account','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/my-account/',0,'page','',0),(168,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[wp_travel_engine_cart]','WP Travel Engine Cart','','publish','closed','closed','','wp-travel-engine-cart','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/wp-travel-engine-cart/',0,'page','',0),(169,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[WP_TRAVEL_ENGINE_PLACE_ORDER]','WP Travel Engine Checkout','','publish','closed','closed','','wp-travel-engine-checkout','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/wp-travel-engine-checkout/',0,'page','',0),(170,1,'2024-02-17 06:03:34','2024-02-17 06:03:34','[wp_travel_engine_dashboard]','My account','','publish','closed','closed','','my-account-2','','','2024-02-17 06:03:34','2024-02-17 06:03:34','',0,'https://kenyaclassictourtravel.com/my-account-2/',0,'page','',0),(171,1,'2024-02-17 06:10:04','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','closed','','','','','2024-02-17 06:10:04','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?post_type=trip&p=171',0,'trip','',0),(172,1,'2024-02-17 06:23:37','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-02-17 06:23:37','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=172',0,'post','',0),(173,1,'2024-02-17 06:31:34','0000-00-00 00:00:00','{\n \"sidebars_widgets[footer-one]\": {\n \"value\": [\n \"block-8\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:30:34\"\n },\n \"travel-charm::activities\": {\n \"value\": \"%5B%7B%22thumbnail%22:101,%22name%22:%22Excursion%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:103,%22name%22:%22Birds%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:111,%22name%22:%22Wildlife%20Safari%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:108,%22name%22:%22Sand%20Dunes%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:124,%22name%22:%22Dolphin%20Watching%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:129,%22name%22:%22Sun%20Bathing%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:126,%22name%22:%22Archeological%20Sites%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D,%7B%22thumbnail%22:130,%22name%22:%22Wilderbeest%20Migration%20%22,%22desc%22:%22Tell%20your%20potential%20customers%20about%20the%20services%20that%20you%20provide%20here.%22,%22url%22:%22#%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:30:34\"\n },\n \"travel-charm::why_us\": {\n \"value\": \"%5B%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22TripAdvisor%20Multiple%20Award%20winning%20company%22,%22description%22:%22We\'ve%20received%20Certificate%20of%20Excellence%20award%20from%20TripAdvisor,%20the%20world\'s%20largest%20travel%20website.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22Local%20Experts.%20Middle-man%20Free%20Pricing%22,%22description%22:%22We\'re%20a%20local%20travel%20agency.%20When%20you%20book%20with%20us,%20you%20get%20best%20possible%20price,%20which%20is%20middle-man%20free.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22100%25%20Customizable%22,%22description%22:%22Tell%20us%20about%20your%20trip%20requirement.%20We\'ll%20work%20together%20to%20customize%20your%20trip%20to%20meet%20your%20exact%20requirement%20so%20that%20you%20have%20a%20memorable%20trip.%22,%22url%22:%22%22%7D,%7B%22whyus-icon%22:%22fa%20fa-check%22,%22title%22:%22No%20Hidden%20Charges%22,%22description%22:%22We%20don\'t%20add%20hidden%20extras%20cost.%20All%20trips%20include%20travel%20permit,%20lodging%20and%20fooding.%20There%20are%20no%20surprises%20with%20hidden%20costs.%22,%22url%22:%22%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:30:34\"\n },\n \"travel-charm::counter\": {\n \"value\": \"%5B%7B%22icon%22:%22fa%20fa-group%22,%22title%22:%22Number%20of%20Customers%22,%22number%22:%22325%22%7D,%7B%22icon%22:%22fa%20fa-globe%22,%22title%22:%22Number%20of%20Trips%22,%22number%22:%22175%22%7D,%7B%22icon%22:%22fa%20fa-plane%22,%22title%22:%22Trips%20Types%22,%22number%22:%22225%22%7D,%7B%22icon%22:%22fa%20fa-bus%22,%22title%22:%22Travel%20with%20Bus%22,%22number%22:%221020%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:30:34\"\n },\n \"travel-charm::social_links\": {\n \"value\": \"%5B%7B%22font%22:%22fab%20fa-facebook%22,%22link%22:%22https://facebook.com/kenyaclassictour%22%7D%5D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:30:34\"\n },\n \"widget_block[8]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:30:34\"\n },\n \"travel-charm::ed_breadcrumb\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-02-17 06:31:34\"\n }\n}','','','auto-draft','closed','closed','','f51f3f4c-41a0-4cea-bd07-751c3f7e26c4','','','2024-02-17 06:31:34','2024-02-17 06:31:34','',0,'https://kenyaclassictourtravel.com/?p=173',0,'customize_changeset','',0),(174,1,'2024-02-17 13:51:21','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-02-17 13:51:21','0000-00-00 00:00:00','',0,'https://kenyaclassictourtravel.com/?p=174',0,'post','',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 = utf8mb4 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0),(94,2,0),(95,2,0),(137,2,0),(138,2,0),(140,2,0),(145,2,0),(147,2,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 = utf8mb4 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT 0, `count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,7),(3,3,'trip_tag','This is a guided tour. You will be accompanied by an expert guide.',0,0),(4,4,'trip_tag','This is a group tour. Other travellers with a common interest will join this tour and travel together on a schedule.',0,0),(5,5,'trip_tag','This is a private tour where you can travel at your own pace.',0,0),(6,6,'difficulty','The trip is easy and suitable for everyone, including children and older people. It does not require any skills in mountain climbing or traversing difficult terrain.',0,0),(7,7,'difficulty','You need to have good physical condition and be in top form. You\'ll also require the right clothes for weather conditions and food items such as snacks or lunch breaks from your hiking adventure; water is essential too! This type of activity takes time, so ensure you\'re physically able to get enough rest before starting any trips.',0,0),(8,8,'difficulty','Physical training before the trip should begin no later than 2 months before, as you will have a height of 3,000 meters above sea level and more. Hiking is from 6 km daily with an average pace that can be maintained for hours. It is important to have physical fitness & endurance. You will also need the right gear and clothes according to the weather.',0,0),(9,9,'difficulty','This level is for mountaineering, backcountry and expeditions. It requires more serious physical preparation and previous experience in similar activities like climbing skills. The preliminary stage starts 3-6 months before heading out so that you can get acclimated by running exercises which will help increase endurance. You will need special clothes and gear.',0,0); /*!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 = utf8mb4 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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 = utf8mb4 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT 0, PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'Primary','primary',0),(3,'Guided Tour','guided',0),(4,'Group Tour','group',0),(5,'Private Tour','private',0),(6,'Easy','easy',0),(7,'Medium','medium',0),(8,'Hard','hard',0),(9,'Extreme','extreme',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 = utf8mb4 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','hkellah'),(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:5:{s:64:\"95271aeee5f7f61b64ccb554f6b7130e9112d5504deffca8381eec729558771b\";a:4:{s:10:\"expiration\";i:1708260481;s:2:\"ip\";s:14:\"197.248.140.95\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0\";s:5:\"login\";i:1708087681;}s:64:\"96e00e3723f5d513cf7546f6e54005fe01fa7bdd4e3ab9cd8234ae1aef901b5c\";a:4:{s:10:\"expiration\";i:1708261015;s:2:\"ip\";s:14:\"197.248.140.95\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36\";s:5:\"login\";i:1708088215;}s:64:\"65c8b8ccc77bc3b2da1298a71c1d66b736b5eb5d51deb2a7bf1a8086016e54e6\";a:4:{s:10:\"expiration\";i:1708261022;s:2:\"ip\";s:14:\"197.248.140.95\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36\";s:5:\"login\";i:1708088222;}s:64:\"360beae19113fffafaed9331a279b9f625d773a8862ef6f99176ea6e53408798\";a:4:{s:10:\"expiration\";i:1708262384;s:2:\"ip\";s:14:\"197.248.140.95\";s:2:\"ua\";s:141:\"Mozilla/5.0 (Linux; Android 10; COL-L29 Build/HUAWEICOL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36\";s:5:\"login\";i:1708089584;}s:64:\"9b66b37ce363918d016a625b8c742e3c0b1caa61262d70b8d9727cde4c3f837d\";a:4:{s:10:\"expiration\";i:1708262420;s:2:\"ip\";s:14:\"197.248.140.95\";s:2:\"ua\";s:141:\"Mozilla/5.0 (Linux; Android 10; COL-L29 Build/HUAWEICOL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36\";s:5:\"login\";i:1708089620;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','5'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"197.248.140.0\";}'),(19,1,'wp_user-settings','libraryContent=browse'),(20,1,'wp_user-settings-time','1708089425'),(21,1,'nav_menu_recently_edited','2'),(22,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\";}'),(23,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'); /*!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 = utf8mb4 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(255) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT 0, `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_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` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'hkellah','$P$BXBKKZ7mC3gRpZ9cHeuh3qlFneGkGZ0','hkellah','hkellah@gmail.com','https://kenyaclassictourtravel.com','2024-02-16 12:47:44','',0,'hkellah'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'kenyacla_watamunew' -- -- -- Dumping routines for database 'kenyacla_watamunew' -- /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-09-01 11:27:14