Skip to content

Instantly share code, notes, and snippets.

@Y0lan
Created October 6, 2019 21:11
Show Gist options
  • Save Y0lan/cc14ac3eeda0782537265a44a4b3239f to your computer and use it in GitHub Desktop.
Save Y0lan/cc14ac3eeda0782537265a44a4b3239f to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
-- MySQL dump 10.13 Distrib 5.7.21, for Linux(x86_64) -- -- Host: localhost Database: scotchbox -- ------------------------------------------------------ -- Server version 5.7.21-0ubuntu0.17.10.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!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 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191))) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_eg_grids` -- DROP TABLE IF EXISTS `wp_eg_grids`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_eg_grids` ( `id` mediumint(6) NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `postparams` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `layers` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `settings` text COLLATE utf8mb4_unicode_520_ci, `last_modified` datetime DEFAULT NULL, UNIQUE KEY `id` (`id`), UNIQUE KEY `handle` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_eg_grids` -- LOCK TABLES `wp_eg_grids` WRITE; /*!40000 ALTER TABLE `wp_eg_grids` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_eg_grids` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_eg_item_elements` -- DROP TABLE IF EXISTS `wp_eg_item_elements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_eg_item_elements` ( `id` mediumint(6) NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `settings` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, UNIQUE KEY `id` (`id`), UNIQUE KEY `handle` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_eg_item_elements` -- LOCK TABLES `wp_eg_item_elements` WRITE; /*!40000 ALTER TABLE `wp_eg_item_elements` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_eg_item_elements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_eg_item_skins` -- DROP TABLE IF EXISTS `wp_eg_item_skins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_eg_item_skins` ( `id` mediumint(6) NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `layers` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `settings` text COLLATE utf8mb4_unicode_520_ci, UNIQUE KEY `id` (`id`), UNIQUE KEY `name` (`name`), UNIQUE KEY `handle` (`handle`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_eg_item_skins` -- LOCK TABLES `wp_eg_item_skins` WRITE; /*!40000 ALTER TABLE `wp_eg_item_skins` DISABLE KEYS */; INSERT INTO `wp_eg_item_skins` VALUES (1,'Washington','washington','{\"eg-item-skin-element-last-id\":\"9\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0,0,0,0.65)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#3f424a\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.50)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\"\",\"css-hover\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.50)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"css\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css-hover\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"3\",\"order\":\"4\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"8\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"9\",\"order\":\"5\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(2,'Adams','adams','{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(137,175,114,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"transparent\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"10\",\"cover-animation-center\":\"flipleft\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"turnout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\".eg-adams-element-0{}\",\"css-hover\":\".eg-adams-element-0{}\",\"transition-type\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"3\",\"order\":\"4\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\".eg-adams-element-3{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-3{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"5\",\"order\":\"7\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-adams-element-5{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-5{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}},{\"id\":\"8\",\"order\":\"5\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}}]',NULL),(3,'Jefferson','jefferson','{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(227,58,12,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fliphorizontal\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"fliphorizontalout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"46\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"3\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"17\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"60\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"5\",\"order\":\"6\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"1\",\"5\",\"1\",\"5\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"70\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\" \",\"limit-type\":\"words\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-catmax\":\"-1\"}},{\"id\":\"7\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"8\",\"order\":\"4\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(4,'Madison','madison','{\"eg-item-skin-element-last-id\":\"7\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(88,92,103,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#585c67\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"flipvertical\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"flipverticalout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"19\",\"19\",\"19\",\"19\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.25)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"19\",\"19\",\"19\",\"19\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.25)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"35\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"3\",\"order\":\"4\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"35\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},\"\",{\"id\":\"5\",\"order\":\"7\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"45\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"6\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":\"5\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(5,'ESGBlankSkin','esgblankskin','{\"eg-item-skin-element-last-id\":\"0\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"splitted-item\":\"none\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0, 0, 0, 0)\",\"cover-always-visible-desktop\":\"false\",\"cover-always-visible-mobile\":\"false\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"rgba(255, 255, 255, 0)\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"rgba(255, 255, 255, 0)\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"element-hover-image\":\"false\",\"hover-image-animation\":\"fade\",\"hover-image-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[]',NULL),(6,'FlickrStream','flickrstream','{\"eg-item-skin-element-last-id\":\"19\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0,0,0,0.50)\",\"0\":\"Default\",\"cover-always-visible-desktop\":\"\",\"cover-always-visible-mobile\":\"\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#222222\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#222222\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"link-set-to\":\"cover\",\"link-link-type\":\"lightbox\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[{\"id\":\"1\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"right\",\"clear\":\"none\",\"margin\":[\"0\",\"15\",\"10\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.50)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"css\":\"\",\"css-hover\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"\",\"source-icon\":\"eg-icon-link\"}},\"\",{\"id\":\"15\",\"order\":\"1\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"15\",\"20\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"source-post\":\"title\"}},\"\",{\"id\":\"17\",\"order\":\"2\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"15\",\"20\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"<i class=\\\"eg-icon-star-empty\\\"><\\/i> %favorites%\"}},{\"id\":\"19\",\"order\":\"3\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-function\":\"link\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"source-text-style-disable\":\"\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"rgba(255,255,255,0.5)\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"15\",\"20\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"link-target\":\"_self\",\"tag-type\":\"div\",\"force-important\":\"true\",\"facebook-sharing-link\":\"site\",\"facebook-link-url\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"by %author_name%\"}}]',NULL),(7,'FacebookStream','facebookstream','{\"eg-item-skin-element-last-id\":\"33\",\"choose-layout\":\"masonry\",\"show-content\":\"top\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(54,88,153,0.65)\",\"0\":\"Default\",\"cover-always-visible-desktop\":\"\",\"cover-always-visible-mobile\":\"\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"26\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"1\",\"10\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"14\",\"line-height\":\"22\",\"color\":\"#363839\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"rgba(255,255,255,1)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"20\",\"line-height-hover\":\"25\",\"color-hover\":\"#13c0df\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"\",\"source-post\":\"title\"}},{\"id\":\"25\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"3\",\"10\"],\"background-color\":\"rgba(0,0,0,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(0,0,0,0.50)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"true\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"\",\"source-text\":\"SHOW IMAGE\"}},{\"id\":\"28\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"5\"],\"padding\":[\"5\",\"10\",\"3\",\"10\"],\"background-color\":\"rgba(0,0,0,0.15)\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(0,0,0,0.50)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"true\",\"source-text\":\"PLAY VIDEO\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"14\",\"line-height\":\"22\",\"color\":\"#365899\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"10\",\"15\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"rgba(255,255,255,1)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"14\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"show-on-lightbox-video\":\"\",\"source-text\":\"<i class=\\\"eg-icon-thumbs-up-alt\\\" style=\\\"background:#365899;color:#fff;float:left;width:23px;height:23px;font-size:12px;text-align:center;border-radius:14px;margin-right:5px;\\\"><\\/i> %likes_short%\"}},{\"id\":\"33\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"14\",\"line-height\":\"22\",\"color\":\"#90949c\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"14\",\"line-height-hover\":\"22\",\"color-hover\":\"#7f7f7f\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"900\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"skewleft\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"<i class=\\\"eg-icon-calendar-empty\\\" style=\\\"background:#90949c;color:#fff;float:left;width:23px;height:23px;font-size:12px;text-align:center;border-radius:14px;margin-right:5px;\\\"><\\/i> %date%\"}}]',NULL),(8,'YoutubeStream','youtubestream','{\"eg-item-skin-element-last-id\":\"35\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0,0,0,0.65)\",\"0\":\"Default\",\"cover-always-visible-desktop\":\"\",\"cover-always-visible-mobile\":\"\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"20\",\"20\",\"20\",\"20\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"1\",\"10\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"link-set-to\":\"cover\",\"link-link-type\":\"lightbox\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"14\",\"line-height\":\"19\",\"color\":\"#167ac6\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"rgba(255,255,255,1)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"14\",\"line-height-hover\":\"19\",\"color-hover\":\"#167ac6\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"underline\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"\",\"source-post\":\"title\"}},{\"id\":\"25\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"\",\"font-size\":\"60\",\"line-height\":\"60\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"60\",\"line-height-hover\":\"60\",\"color-hover\":\"rgba(255,255,255,0.85)\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"zoomback\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"true\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"source-icon\":\"eg-icon-play\"}},{\"id\":\"33\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"chars\",\"limit-num\":\"100\",\"enable-hover\":\"\",\"font-size\":\"14\",\"line-height\":\"22\",\"color\":\"#90949c\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"14\",\"line-height-hover\":\"22\",\"color-hover\":\"#7f7f7f\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"900\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"skewleft\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"%views_short% views\"}},{\"id\":\"34\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"source-function\":\"link\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"source-text-style-disable\":\"\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"12\",\"color\":\"#90949c\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"5\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"rgba(255,255,255,1)\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"22\",\"color-hover\":\"#e81c4f\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"none\",\"transition-type\":\"\",\"delay\":\"34\",\"link-type\":\"post\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"link-target\":\"_blank\",\"tag-type\":\"div\",\"force-important\":\"true\",\"facebook-sharing-link\":\"\",\"facebook-link-url\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"<i class=\\\"eg-icon-thumbs-up-1\\\"><\\/i>%likes_short%\"}},{\"id\":\"35\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"source-function\":\"link\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"source-text-style-disable\":\"\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"12\",\"color\":\"#90949c\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"5\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"rgba(255,255,255,1)\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"22\",\"color-hover\":\"#e81c4f\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"none\",\"transition-type\":\"\",\"delay\":\"34\",\"link-type\":\"post\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"link-target\":\"_blank\",\"tag-type\":\"div\",\"force-important\":\"true\",\"facebook-sharing-link\":\"site\",\"facebook-link-url\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"<i class=\\\"eg-icon-thumbs-down\\\"><\\/i>%dislikes_short%\"}}]',NULL),(9,'TwitterStream','twitterstream','{\"eg-item-skin-element-last-id\":\"38\",\"choose-layout\":\"masonry\",\"show-content\":\"top\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(41,47,51,0.20)\",\"0\":\"Default\",\"cover-always-visible-desktop\":\"\",\"cover-always-visible-mobile\":\"\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"30\",\"30\",\"30\",\"30\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"20\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"1\",\"10\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"zoomtodefault\",\"media-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[{\"id\":\"25\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"30\",\"line-height\":\"30\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"30\",\"line-height-hover\":\"30\",\"color-hover\":\"rgba(255,255,255,0.85)\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"true\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"37\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-function\":\"link\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"source-text-style-disable\":\"\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"10\",\"15\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"22\",\"color-hover\":\"#e81c4f\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"slideshortup\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"post\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"link-target\":\"_blank\",\"tag-type\":\"div\",\"force-important\":\"true\",\"facebook-sharing-link\":\"\",\"facebook-link-url\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"show-on-lightbox-video\":\"\",\"source-text\":\"@%author_name%\"}},{\"id\":\"35\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"limit-type\":\"none\",\"limit-num\":\"40\",\"enable-hover\":\"on\",\"font-size\":\"26\",\"line-height\":\"32\",\"color\":\"#292f33\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"10\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"26\",\"line-height-hover\":\"32\",\"color-hover\":\"#0084b4\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"underline\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"none\",\"transition-type\":\"\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-lightbox-video\":\"\",\"source-post\":\"title\"}},{\"settings\":\"\"},{\"id\":\"33\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#aab8c2\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"15\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"22\",\"color-hover\":\"#19cf68\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"skewleft\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"sharetwitter\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-text\":\"<i class=\\\"eg-icon-shuffle-1\\\"><\\/i> %retweets%\"}},{\"id\":\"36\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-function\":\"link\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"source-text-style-disable\":\"\",\"enable-hover\":\"on\",\"font-size\":\"30\",\"line-height\":\"30\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"30\",\"line-height-hover\":\"30\",\"color-hover\":\"rgba(255,255,255,0.85)\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"link-target\":\"_self\",\"tag-type\":\"div\",\"force-important\":\"true\",\"facebook-sharing-link\":\"\",\"facebook-link-url\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"show-on-lightbox-video\":\"true\",\"source-icon\":\"eg-icon-play\"}},{\"id\":\"3\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#aab8c2\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"15\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"rgba(255,255,255,1)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"22\",\"color-hover\":\"#e81c4f\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"<i class=\\\"eg-icon-heart\\\"><\\/i> %likes%\"}}]',NULL),(10,'VimeoStream','vimeostream','{\"eg-item-skin-element-last-id\":\"34\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0,0,0,0.65)\",\"0\":\"Default\",\"cover-always-visible-desktop\":\"\",\"cover-always-visible-mobile\":\"\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"20\",\"20\",\"20\",\"20\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"1\",\"10\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"lightbox\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"24\",\"line-height\":\"28\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"10\",\"0\",\"10\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"24\",\"line-height-hover\":\"28\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"900\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"source-post\":\"title\"}},{\"id\":\"34\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"3\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"12\",\"color\":\"rgba(255,255,255,0.5)\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"10\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"slideshortup\",\"transition-type\":\"\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"source-text\":\"%duration%\"}},{\"id\":\"33\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\", \",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"chars\",\"limit-num\":\"100\",\"enable-hover\":\"\",\"font-size\":\"18\",\"line-height\":\"22\",\"color\":\"#99aabc\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"10\",\"0\",\"10\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"18\",\"line-height-hover\":\"22\",\"color-hover\":\"#99aabc\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_blank\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"by %author_name%\"}},{\"id\":\"25\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"14\",\"line-height\":\"40\",\"color\":\"#44bbff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"30\",\"0\",\"30\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"4\",\"4\",\"4\",\"4\"],\"border-radius-unit\":\"px\",\"border-color\":\"#44bbff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"14\",\"line-height-hover\":\"40\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"4\",\"4\",\"4\",\"4\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"true\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"source-text\":\"Play Video\"}}]',NULL),(11,'InstagramStream','instagramstream','{\"eg-item-skin-element-last-id\":\"37\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"splitted-item\":\"none\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0,0,0,0.50)\",\"cover-always-visible-desktop\":\"false\",\"cover-always-visible-mobile\":\"false\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"20\",\"20\",\"20\",\"20\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-box-shadow\":[\"0\",\"1\",\"10\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"element-hover-image\":\"false\",\"hover-image-animation\":\"fade\",\"hover-image-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"lightbox\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"16\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"5\",\"0\",\"5\"],\"background-color\":\"transparent\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"24\",\"line-height-hover\":\"28\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"900\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"transparent\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"false\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"show-on-lightbox-video\":\"hide\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-text\":\"<i class=\\\"eg-icon-heart\\\"><\\/i> %likes_short%\"}},{\"id\":\"35\",\"order\":\"0\",\"container\":\"tl\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"24\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"right\",\"clear\":\"none\",\"margin\":[\"10\",\"7\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"24\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"transparent\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"hide-on-video\":\"false\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"none\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"adv-rules\":{\"ar-show\":\"show\",\"ar-type\":[\"off\",\"off\",\"off\",\"off\",\"off\",\"off\",\"off\",\"off\",\"off\"],\"ar-meta\":[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],\"ar-operator\":[\"isset\",\"isset\",\"isset\",\"isset\",\"isset\",\"isset\",\"isset\",\"isset\",\"isset\"],\"ar-value\":[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],\"ar-value-2\":[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],\"ar-logic\":[\"and\",\"and\",\"and\",\"and\",\"and\",\"and\"],\"ar-logic-glob\":[\"and\",\"and\"]},\"show-on-lightbox-video\":\"true\",\"source-icon\":\"eg-icon-videocam\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}},{\"id\":\"37\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"16\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"5\",\"0\",\"5\"],\"background-color\":\"transparent\",\"shadow-color\":\"#000000\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"20\",\"line-height-hover\":\"25\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"transparent\",\"shadow-color-hover\":\"#000000\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"false\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"show-on-lightbox-video\":\"true\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-text\":\"<i class=\\\"eg-icon-play\\\"><\\/i> %likes_short%\"}},{\"id\":\"36\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"16\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"5\",\"0\",\"5\"],\"background-color\":\"transparent\",\"shadow-color\":\"#000000\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"17\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"shadow-color-hover\":\"#000000\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"false\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"fade\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"margin-unit\":\"px\",\"show-on-lightbox-video\":\"false\",\"source-catmax\":\"-1\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"source-text\":\"<i class=\\\"eg-icon-align-left\\\"><\\/i> %num_comments%\"}}]',NULL); /*!40000 ALTER TABLE `wp_eg_item_skins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_eg_navigation_skins` -- DROP TABLE IF EXISTS `wp_eg_navigation_skins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_eg_navigation_skins` ( `id` mediumint(6) NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `css` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, UNIQUE KEY `id` (`id`), UNIQUE KEY `handle` (`handle`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_eg_navigation_skins` -- LOCK TABLES `wp_eg_navigation_skins` WRITE; /*!40000 ALTER TABLE `wp_eg_navigation_skins` DISABLE KEYS */; INSERT INTO `wp_eg_navigation_skins` VALUES (1,'Flat Light','flat-light','/********************************\n - FLAT LIGHT BUTTONS -\n*********************************/\n.flat-light .navigationbuttons,\n.flat-light .esg-pagination,\n.flat-light .esg-filters{ text-transform:uppercase;\n text-align: center;\n }\n\n.flat-light .esg-filterbutton,\n.flat-light .esg-navigationbutton,\n.flat-light .esg-sortbutton,\n.flat-light .esg-cartbutton { color:#000;\n margin-right:5px;\n cursor:pointer;\n position: relative;\n z-index:2;\n padding:1px 30px;\n border:none;\n line-height:38px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n font-size:12px;\n font-weight:700;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background: #fff;\n margin-bottom:5px;\n }\n\n.flat-light .esg-navigationbutton { padding:2px 12px; }\n.flat-light .esg-navigationbutton * { color:#000; }\n.flat-light .esg-pagination-button:last-child { margin-right: 0; }\n\n.flat-light .esg-sortbutton-wrapper,\n.flat-light .esg-cartbutton-wrapper { display:inline-block; }\n.flat-light .esg-sortbutton-order,\n.flat-light .esg-cartbutton-order { display:inline-block;\n vertical-align:top;\n border:none;\n width:40px;\n line-height:40px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n font-size:12px;\n font-weight:700;\n color:#999;\n cursor: pointer;\n background:#eee;\n background: #fff;\n margin-left:5px;\n }\n\n.flat-light .esg-cartbutton { color:#fff;\n cursor: default !important;\n }\n.flat-light .esg-cartbutton .esgicon-basket {\n color:#fff;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.flat-light .esg-cartbutton-wrapper { cursor: default !important; }\n\n.flat-light .esg-sortbutton,\n.flat-light .esg-cartbutton { display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:0px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n }\n\n.flat-light .esg-navigationbutton:hover,\n.flat-light .esg-filterbutton:hover,\n.flat-light .esg-sortbutton:hover,\n.flat-light .esg-sortbutton-order:hover,\n.flat-light .esg-cartbutton-order:hover,\n.flat-light .esg-filterbutton.selected {\n border-color:none;color:#000;\n background:#fff;\n }\n\n.flat-light .esg-navigationbutton:hover * { color:#333; }\n\n.flat-light .esg-sortbutton-order.tp-desc:hover { color:#333; }\n\n.flat-light .esg-filter-checked { padding:1px 3px;\n color:#cbcbcb;\n background:#cbcbcb;\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n.flat-light .esg-filterbutton.selected .esg-filter-checked,\n.flat-light .esg-filterbutton:hover .esg-filter-checked {\n padding:1px 3px 1px 3px;\n color:#fff;\n background:#000;\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }'),(2,'Flat Dark','flat-dark','/********************************\n - FLAT DARK BUTTONS -\n*********************************/\n.flat-dark .navigationbuttons,\n.flat-dark .esg-pagination,\n.flat-dark .esg-filters {\n text-transform:uppercase;\n text-align: center;\n }\n\n.flat-dark .esg-filterbutton,\n.flat-dark .esg-navigationbutton,\n.flat-dark .esg-sortbutton,\n.flat-dark .esg-cartbutton {color:#fff;\n margin-right:5px;\n cursor:pointer;\n padding:1px 30px;\n border:none;\n line-height:38px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n font-size:12px;\n font-weight:600;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background:#3a3a3a;\n background: rgba(0,0,0,0.2);\n margin-bottom:5px;\n }\n\n.flat-dark .esg-navigationbutton { padding:1px 18px; }\n.flat-dark .esg-navigationbutton * { color:#fff; }\n.flat-dark .esg-pagination-button:last-child,\n.flat-dark .esg-filterbutton:last-child{ margin-right: 0; }\n.flat-dark .esg-left, .flat-dark .esg-right { padding:1px 12px; }\n\n.flat-dark .esg-sortbutton-wrapper,\n.flat-dark .esg-cartbutton-wrapper { display:inline-block; }\n.flat-dark .esg-sortbutton-order,\n.flat-dark .esg-cartbutton-order { display:inline-block;\n vertical-align:top;\n border:none;\n width:40px;\n line-height:40px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n font-size:12px;\n font-weight:700;\n color:#999;\n cursor: pointer;\n background:#eee;\n background: rgba(0,0,0,0.2);\n margin-left:5px;\n }\n\n.flat-dark .esg-cartbutton {color:#fff;\n cursor: default !important;\n }\n.flat-dark .esg-cartbutton .esgicon-basket {color:#fff;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.flat-dark .esg-cartbutton-wrapper { cursor: default !important; }\n\n.flat-dark .esg-sortbutton,\n.flat-dark .esg-cartbutton { display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:0px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n }\n\n.flat-dark .esg-navigationbutton:hover,\n.flat-dark .esg-filterbutton:hover,\n.flat-dark .esg-sortbutton:hover,\n.flat-dark .esg-sortbutton-order:hover,\n.flat-dark .esg-cartbutton-order:hover,\n.flat-dark .esg-filterbutton.selected { color:#fff;\n border-color:none;\n background:#4a4a4a;\n background: rgba(0,0,0,0.5);\n }\n\n.flat-dark .esg-navigationbutton:hover * { color:#fff; }\n.flat-dark .esg-sortbutton-order.tp-desc:hover { color:#fff; }\n.flat-dark .esg-filter-checked {padding:1px 3px;\n color:transparent;\n background:#000;\n background: rgba(0,0,0,0.2);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle:\n }\n \n.flat-dark .esg-filterbutton.selected .esg-filter-checked,\n.flat-dark .esg-filterbutton:hover .esg-filter-checked {padding:1px 3px 1px 3px;\n color:#fff;\n background:#000;\n background: rgba(0,0,0,0.2);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle\n }'),(3,'Minimal Dark','minimal-dark','/********************************\n - MINIMAL DARK BUTTONS -\n*********************************/\n\n.minimal-dark .navigationbuttons,\n.minimal-dark .esg-pagination,\n.minimal-dark .esg-filters { text-align: center; }\n\n.minimal-dark .esg-filterbutton,\n.minimal-dark .esg-navigationbutton,\n.minimal-dark .esg-sortbutton,\n.minimal-dark .esg-cartbutton { color:#fff;\n color:rgba(255,255,255,1);\n margin-right:5px;\n cursor:pointer;\n padding:0px 17px;\n border:1px solid rgb(255,255,255);\n border:1px solid rgba(255,255,255,0.1);\n line-height:38px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n font-size:12px;\n font-weight:600;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background:transparent;\n margin-bottom:5px;\n }\n\n\n.minimal-dark .esg-navigationbutton * {\n color:#fff;\n color:rgba(255,255,255,1);\n }\n.minimal-dark .esg-navigationbutton { padding:0px 11px; }\n.minimal-dark .esg-pagination-button { padding:0px 16px; }\n.minimal-dark .esg-pagination-button:last-child { margin-right: 0; }\n\n.minimal-dark .esg-sortbutton-wrapper,\n.minimal-dark .esg-cartbutton-wrapper { display:inline-block; }\n.minimal-dark .esg-sortbutton-order,\n.minimal-dark .esg-cartbutton-order { display:inline-block;\n vertical-align:top;\n border:1px solid rgb(255,255,255);\n border:1px solid rgba(255,255,255,0.1);\n width:40px;\n line-height:38px;\n border-radius: 0px 5px 5px 0px;\n -moz-border-radius: 0px 5px 5px 0px;\n -webkit-border-radius: 0px 5px 5px 0px;\n font-size:12px;\n font-weight:600;\n color:#fff;\n cursor: pointer;\n background:transparent;\n }\n\n.minimal-dark .esg-cartbutton {\n color:#fff;\n cursor: default !important;\n }\n.minimal-dark .esg-cartbutton .esgicon-basket {\n color:#fff;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.minimal-dark .esg-cartbutton-wrapper { cursor: default !important; }\n\n.minimal-dark .esg-sortbutton,\n.minimal-dark .esg-cartbutton {\n display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:0px;\n border-right:none;\n border-radius:5px 0px 0px 5px;\n -moz-border-radius:5px 0px 0px 5px;\n -webkit-border-radius:5px 0px 0px 5px;\n }\n\n.minimal-dark .esg-navigationbutton:hover,\n.minimal-dark .esg-filterbutton:hover,\n.minimal-dark .esg-sortbutton:hover,\n.minimal-dark .esg-sortbutton-order:hover,\n.minimal-dark .esg-cartbutton-order:hover,\n.minimal-dark .esg-filterbutton.selected {\n border-color:#fff;\n border-color:rgba(255,255,255,0.2);\n color:#fff;\n box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\n background:#333;\n background: rgba(255,255,255,0.1);\n }\n\n.minimal-dark .esg-navigationbutton:hover * { color:#fff; }\n\n.minimal-dark .esg-sortbutton-order.tp-desc:hover { border-color:#fff;\n border-color:rgba(255,255,255,0.2);\n color:#fff;\n box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\n }\n\n.minimal-dark .esg-filter-checked {\n padding:1px 3px;\n color:transparent;\n background:#000;\n background: rgba(0,0,0,0.10);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n.minimal-dark .esg-filterbutton.selected .esg-filter-checked,\n.minimal-dark .esg-filterbutton:hover .esg-filter-checked {\n padding:1px 3px 1px 3px;\n color:#fff;\n background:#000;\n background: rgba(0,0,0,0.10);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }'),(4,'Minimal Light','minimal-light','/******************************\n - MINIMAL LIGHT SKIN -\n********************************/\n\n.minimal-light .navigationbuttons,\n.minimal-light .esg-pagination,\n.minimal-light .esg-filters { text-align: center; }\n\n.minimal-light .esg-filterbutton,\n.minimal-light .esg-navigationbutton,\n.minimal-light .esg-sortbutton,\n.minimal-light .esg-cartbutton a{ \n color:#999;\n margin-right:5px;\n cursor:pointer;\n padding:0px 16px;\n border:1px solid #e5e5e5;\n line-height:38px;\n border-radius:5px;\n -moz-border-radius:5px;\n -webkit-border-radius:5px;\n font-size:12px;\n font-weight:700;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background:#fff;\n margin-bottom:5px;\n }\n\n/*.minimal-light .esg-cartbutton a { color: #999; }*/\n\n.minimal-light .esg-navigationbutton * { color:#999; }\n.minimal-light .esg-navigationbutton { padding:0px 16px; }\n.minimal-light .esg-pagination-button:last-child { margin-right: 0; }\n.minimal-light .esg-left, .minimal-light .esg-right { padding:0px 11px; }\n\n.minimal-light .esg-sortbutton-wrapper,\n.minimal-light .esg-cartbutton-wrapper { display:inline-block; }\n.minimal-light .esg-sortbutton-order,\n.minimal-light .esg-cartbutton-order { display:inline-block;\n vertical-align:top;\n border:1px solid #e5e5e5;\n width:40px;\n line-height:38px;\n border-radius: 0px 5px 5px 0px;\n -moz-border-radius: 0px 5px 5px 0px;\n -webkit-border-radius: 0px 5px 5px 0px;\n font-size:12px;\n font-weight:700;\n color:#999;\n cursor: pointer;\n background:#fff;\n }\n\n.minimal-light .esg-cartbutton {\n color:#333;\n cursor: default !important;\n }\n.minimal-light .esg-cartbutton .esgicon-basket {color:#333;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.minimal-light .esg-cartbutton-wrapper { cursor: default !important; }\n\n.minimal-light .esg-sortbutton,\n.minimal-light .esg-cartbutton { display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:0px;\n border-right:none;\n border-radius:5px 0px 0px 5px;\n -moz-border-radius:5px 0px 0px 5px;\n -webkit-border-radius:5px 0px 0px 5px;\n }\n\n.minimal-light .esg-navigationbutton:hover,\n.minimal-light .esg-filterbutton:hover,\n.minimal-light .esg-sortbutton:hover,\n.minimal-light .esg-sortbutton-order:hover,\n.minimal-light .esg-cartbutton a:hover,\n.minimal-light .esg-filterbutton.selected {\n background-color:#fff;\n border-color:#bbb;\n color:#333;\n box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\n }\n\n.minimal-light .esg-navigationbutton:hover * { color:#333; }\n\n.minimal-light .esg-sortbutton-order.tp-desc:hover {\n border-color:#bbb;\n color:#333;\n box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\n }\n\n.minimal-light .esg-filter-checked { \n padding:1px 3px;\n color:#cbcbcb;\n background:#cbcbcb;\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n.minimal-light .esg-filterbutton.selected .esg-filter-checked,\n.minimal-light .esg-filterbutton:hover .esg-filter-checked {\n padding:1px 3px 1px 3px;\n color:#fff;\n background:#000;\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }'),(5,'Simple Light','simple-light','/******************************\n - SIMPLE LIGHT SKIN -\n********************************/\n\n.simple-light .navigationbuttons,\n.simple-light .esg-pagination,\n.simple-light .esg-filters { text-align: center; }\n\n.simple-light .esg-filterbutton,\n.simple-light .esg-navigationbutton,\n.simple-light .esg-sortbutton,\n.simple-light .esg-cartbutton a {\n color:#000;\n margin-right:5px;\n cursor:pointer;\n padding:0px 11px;\n border:1px solid #e5e5e5;\n line-height:30px;\n font-size:12px;\n font-weight:400;\n font-family:\\\\\\\"Open Sans\\\\\\\",sans-serif;\n display: inline-block;\n background:#eee;\n margin-bottom:5px;\n }\n\n.simple-light .esg-navigationbutton * { color:#000; }\n.simple-light .esg-left,\n.simple-light .esg-right { color:#000; padding:0px 7px;}\n.simple-light .esg-pagination-button:last-child { margin-right: 0; }\n\n.simple-light .esg-sortbutton-wrapper,\n.simple-light .esg-cartbutton-wrapper { display:inline-block; }\n.simple-light .esg-sortbutton-order,\n.simple-light .esg-cartbutton-order {\n display: inline-block;\n vertical-align: top;\n border: 1px solid #e5e5e5;\n width: 29px;\n line-height: 30px;\n font-size: 9px;\n font-weight: 400;\n color: #000;\n cursor: pointer;\n background: #eee;\n }\n\n.simple-light .esg-cartbutton {\n color:#333;\n cursor: default !important;\n }\n.simple-light .esg-cartbutton .esgicon-basket {\n color:#333;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.simple-light .esg-cartbutton-wrapper { cursor: default !important; }\n\n.simple-light .esg-sortbutton,\n.simple-light .esg-cartbutton {\n display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:5px;\n }\n\n\n.simple-light .esg-navigationbutton:hover,\n.simple-light .esg-filterbutton:hover,\n.simple-light .esg-sortbutton:hover,\n.simple-light .esg-sortbutton-order:hover,\n.simple-light .esg-cartbutton a:hover,\n.simple-light .esg-filterbutton.selected {\n background-color:#fff;\n border-color:#bbb;\n color:#333;\n box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\n }\n\n.simple-light .esg-navigationbutton:hover * { color:#333; }\n\n.simple-light .esg-sortbutton-order.tp-desc:hover {\n border-color:#bbb;\n color:#333;\n box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\n }\n\n.simple-light .esg-filter-checked {\n padding:3px;\n color:#c5c5c5;\n background:#ddd;\n margin-left:7px;\n font-size:9px;\n font-weight:400;\n line-height:20px;\n vertical-align: middle;\n }\n.simple-light .esg-filterbutton.selected .esg-filter-checked,\n.simple-light .esg-filterbutton:hover .esg-filter-checked {\n padding: 3px;\n color:#fff;\n background:#000;\n margin-left:7px;\n font-size:9px;\n font-weight:400;\n line-height:20px;\n vertical-align: middle\n }'),(6,'Simple Dark','simple-dark','/********************************\n- SIMPLE DARK BUTTONS -\n*********************************/\n\n.simple-dark .navigationbuttons,\n.simple-dark .esg-pagination,\n.simple-dark .esg-filters { text-align: center; }\n\n.simple-dark .esg-filterbutton,\n.simple-dark .esg-navigationbutton,\n.simple-dark .esg-sortbutton,\n.simple-dark .esg-cartbutton {\n color:#fff;\n margin-right:5px;\n cursor:pointer;\n padding:0px 10px;\n border:1px solid rgb(255,255,255);\n border:1px solid rgba(255,255,255,0.15);\n line-height:29px;\n font-size:12px;\n font-weight:600;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background: rgba(255,255,255,0.08 );\n margin-bottom:5px;\n }\n\n.simple-dark .esg-navigationbutton * {\n color:#fff;\n }\n.simple-dark .esg-left, .simple-dark .esg-right { padding:0px 5px !important; }\n\n.simple-dark .esg-sortbutton-wrapper,\n.simple-dark .esg-cartbutton-wrapper { display:inline-block; }\n.simple-dark .esg-sortbutton-order,\n.simple-dark .esg-cartbutton-order {\n display: inline-block;\n vertical-align: top;\n border:1px solid rgb(255,255,255);\n border:1px solid rgba(255,255,255,0.15);\n width: 29px;\n line-height: 29px;\n font-size: 9px;\n font-weight: 600;\n color: #fff;\n cursor: pointer;\n background: rgba(255,255,255,0.08 );\n }\n\n.simple-dark .esg-cartbutton {\n color:#fff;\n cursor: default !important;\n }\n \n.simple-dark .esg-cartbutton .esgicon-basket {\n color:#fff;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.simple-dark .esg-cartbutton-wrapper { cursor: default !important; }\n\n.simple-dark .esg-sortbutton,\n.simple-dark .esg-cartbutton {\n display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:5px;\n }\n\n\n.simple-dark .esg-navigationbutton:hover,\n.simple-dark .esg-filterbutton:hover,\n.simple-dark .esg-sortbutton:hover,\n.simple-dark .esg-sortbutton-order:hover,\n.simple-dark .esg-cartbutton-order:hover,\n.simple-dark .esg-filterbutton.selected {\n border-color:#fff;\n color:#000;\n box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\n background:#fff;\n }\n\n.simple-dark .esg-navigationbutton:hover * { color:#000; }\n.simple-dark .esg-pagination-button:last-child { margin-right: 0; }\n\n.simple-dark .esg-sortbutton-order.tp-desc:hover {\n border-color:#fff;\n border-color:rgba(255,255,255,0.2);\n color:#000;\n box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\n }\n\n.simple-dark .esg-filter-checked {\n padding:1px;\n color:transparent;\n background:#000;\n background: rgba(255,255,255,0.15);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n\n.simple-dark .esg-filterbutton.selected .esg-filter-checked,\n.simple-dark .esg-filterbutton:hover .esg-filter-checked {\n padding:1px;\n color:#000;\n background:#fff;\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }'),(7,'Text Dark','text-dark','/********************************\n- TEXT DARK BUTTONS -\n*********************************/\n\n.text-dark .navigationbuttons,\n.text-dark .esg-pagination,\n.text-dark .esg-filters { text-align: center; }\n\n.text-dark .esg-filterbutton,\n.text-dark .esg-navigationbutton,\n.text-dark .esg-sortbutton,\n.text-dark .esg-cartbutton {\n color:#fff;\n color:rgba(255,255,255,0.4);\n margin-right:5px;\n cursor:pointer;\n padding:0px 15px 0px 10px;\n line-height:20px;\n font-size:12px;\n font-weight:600;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background:transparent;\n margin-bottom:5px;\n }\n\n.text-dark .esg-navigationbutton * {\n color:#fff;\n color:rgba(255,255,255,0.4);\n }\n\n.text-dark .esg-sortbutton-wrapper,\n.text-dark .esg-cartbutton-wrapper { display:inline-block; }\n.text-dark .esg-sortbutton-order,\n.text-dark .esg-cartbutton-order {\n display: inline-block;\n vertical-align: middle;\n width: 29px;\n line-height: 20px;\n font-size: 9px;\n font-weight: 700;\n color:#fff;\n color:rgba(255,255,255,0.4);\n cursor: pointer;\n background: transparent;\n }\n\n.text-dark .esg-cartbutton {\n color:#fff;\n color:rgba(255,255,255,0.4);\n cursor: default !important;\n }\n.text-dark .esg-cartbutton .esgicon-basket {\n color:#fff;\n color:rgba(255,255,255,0.4);\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.text-dark .esg-cartbutton-wrapper { cursor: default !important; }\n\n.text-dark .esg-sortbutton,\n.text-dark .esg-cartbutton {\n display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:0px;\n }\n\n.text-dark .esg-navigationbutton:hover,\n.text-dark .esg-filterbutton:hover,\n.text-dark .esg-sortbutton:hover,\n.text-dark .esg-filterbutton.selected,\n.text-dark .esg-sortbutton-order:hover,\n.text-dark .esg-cartbutton-order:hover { color:#fff; }\n\n.text-dark .esg-navigationbutton:hover,\n.text-dark .esg-filterbutton:hover span:first-child,\n.text-dark .esg-filterbutton.selected span:first-child { text-decoration: none; }\n\n.text-dark .esg-filterbutton {\n border-right:1px solid #fff;\n border-right:1px solid rgba(255,255,255,0.15);\n }\n.text-dark .esg-filterbutton:last-child { border-right:none; }\n\n.text-dark .esg-sortbutton-order {\n padding-left:10px;\n border-left:1px solid #fff;\n border-left:1px solid rgba(255,255,255,0.15);\n }\n\n.text-dark .esg-navigationbutton:hover * { color:#fff; }\n\n.text-dark .esg-sortbutton-order.tp-desc:hover {\n border-color:#fff;\n border-color:rgba(255,255,255,0.15);\n color:#fff;\n }\n\n.text-dark .esg-filter-checked {\n padding:1px 3px;\n color:transparent;\n background:#000;\n background: rgba(0,0,0,0.10);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n\n.text-dark .esg-filter-checked * { }\n.text-dark .esg-filterbutton.selected .esg-filter-checked,\n.text-dark .esg-filterbutton:hover .esg-filter-checked {\n padding:1px 3px 1px 3px;\n color:#fff;\n background:#000;\n background: rgba(0,0,0,0.10);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle\n }'),(8,'Text Light','text-light','/********************************\n- TEXT LIGHT BUTTONS -\n*********************************/\n\n.text-light .navigationbuttons,\n.text-light .esg-pagination,\n.text-light .esg-filters {\n text-align: center;\n position: relative;\n z-index:2;\n }\n\n.text-light .esg-filterbutton,\n.text-light .esg-navigationbutton,\n.text-light .esg-sortbutton,\n.text-light .esg-cartbutton {\n color:#999;\n margin-right:5px;\n cursor:pointer;\n padding:0px 15px 0px 10px;\n line-height:20px;\n font-size:12px;\n font-weight:600;\n font-family:\"Open Sans\",sans-serif;\n display: inline-block;\n background:transparent;\n margin-bottom:5px;\n }\n\n.text-light .esg-navigationbutton * { color:#999; }\n\n.text-light .esg-sortbutton-wrapper,\n.text-light .esg-cartbutton-wrapper { display:inline-block; }\n.text-light .esg-sortbutton-order,\n.text-light .esg-cartbutton-order {\n display: inline-block;\n vertical-align: middle;\n width: 29px;\n line-height: 20px;\n font-size: 9px;\n font-weight: 700;\n color:#999;\n cursor: pointer;\n background: transparent;\n }\n\n.text-light .esg-cartbutton {\n color:#999;\n cursor: default !important;\n }\n.text-light .esg-cartbutton .esgicon-basket {\n color:#999;\n font-size:15px;\n line-height:15px;\n margin-right:10px;\n }\n.text-light .esg-cartbutton-wrapper { cursor: default !important; }\n\n.text-light .esg-sortbutton,\n.text-light .esg-cartbutton {\n display:inline-block;\n position:relative;\n cursor: pointer;\n margin-right:0px;\n }\n\n.text-light .esg-navigationbutton:hover,\n.text-light .esg-filterbutton:hover,\n.text-light .esg-sortbutton:hover,\n.text-light .esg-filterbutton.selected,\n.text-light .esg-sortbutton-order:hover,\n.text-light .esg-cartbutton-order:hover { color:#444; }\n\n.text-light .esg-navigationbutton:hover,\n.text-light .esg-filterbutton:hover span:first-child,\n.text-light .esg-filterbutton.selected span:first-child { text-decoration: underline; }\n\n.text-light .esg-filterbutton { border-right:1px solid #e5e5e5; }\n.text-light .esg-filterbutton:last-child { border-right:none; }\n\n.text-light .esg-sortbutton-order {\n padding-left:10px;\n border-left:1px solid #e5e5e5;\n }\n\n.text-light .esg-navigationbutton:hover * { color:#444; }\n\n.text-light .esg-sortbutton-order.tp-desc:hover {\n border-color:#e5e5e5;\n color:#444;\n }\n\n.text-light .esg-filter-checked {\n padding:1px 3px;\n color:transparent;\n background:#eee;\n background: rgba(0,0,0,0.05);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n.text-light .esg-filter-checked * { }\n.text-light .esg-filterbutton.selected .esg-filter-checked,\n.text-light .esg-filterbutton:hover .esg-filter-checked {\n padding:1px 3px 1px 3px;\n color:#333;\n background:#eee;\n background: rgba(0,0,0,0.05);\n margin-left:7px;\n font-size:9px;\n font-weight:300;\n line-height:9px;\n vertical-align: middle;\n }\n'); /*!40000 ALTER TABLE `wp_eg_navigation_skins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=4390 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://wpdistillery.vm','yes'),(2,'home','http://wpdistillery.vm','yes'),(3,'blogname','Ambiances','yes'),(4,'blogdescription','ART DE VIVRE - MAISONS - DÉCORATION - CULTURE - TENDANCES','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','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','1','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','66','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','j F Y','yes'),(24,'time_format','G \\h i \\m\\i\\n','yes'),(25,'links_updated_date_format','j F Y G \\h i \\m\\i\\n','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:319:{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:\"portfolio-item/?$\";s:31:\"index.php?post_type=x-portfolio\";s:47:\"portfolio-item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=x-portfolio&feed=$matches[1]\";s:42:\"portfolio-item/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=x-portfolio&feed=$matches[1]\";s:34:\"portfolio-item/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=x-portfolio&paged=$matches[1]\";s:39:\"cs_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"cs_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"cs_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"cs_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"cs_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"cs_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"cs_template/([^/]+)/embed/?$\";s:44:\"index.php?cs_template=$matches[1]&embed=true\";s:32:\"cs_template/([^/]+)/trackback/?$\";s:38:\"index.php?cs_template=$matches[1]&tb=1\";s:40:\"cs_template/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?cs_template=$matches[1]&paged=$matches[2]\";s:47:\"cs_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?cs_template=$matches[1]&cpage=$matches[2]\";s:51:\"cs_template/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:66:\"index.php?cs_template=$matches[1]&cornerstone-endpoint=$matches[3]\";s:57:\"cs_template/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:68:\"cs_template/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:36:\"cs_template/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?cs_template=$matches[1]&page=$matches[2]\";s:28:\"cs_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"cs_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"cs_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"cs_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"cs_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"cs_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"cs_global_block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"cs_global_block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"cs_global_block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"cs_global_block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"cs_global_block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"cs_global_block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"cs_global_block/([^/]+)/embed/?$\";s:48:\"index.php?cs_global_block=$matches[1]&embed=true\";s:36:\"cs_global_block/([^/]+)/trackback/?$\";s:42:\"index.php?cs_global_block=$matches[1]&tb=1\";s:44:\"cs_global_block/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?cs_global_block=$matches[1]&paged=$matches[2]\";s:51:\"cs_global_block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?cs_global_block=$matches[1]&cpage=$matches[2]\";s:55:\"cs_global_block/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:70:\"index.php?cs_global_block=$matches[1]&cornerstone-endpoint=$matches[3]\";s:61:\"cs_global_block/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:72:\"cs_global_block/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:40:\"cs_global_block/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?cs_global_block=$matches[1]&page=$matches[2]\";s:32:\"cs_global_block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"cs_global_block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"cs_global_block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"cs_global_block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"cs_global_block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"cs_global_block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"cs_user_templates/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"cs_user_templates/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"cs_user_templates/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"cs_user_templates/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"cs_user_templates/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"cs_user_templates/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"cs_user_templates/([^/]+)/embed/?$\";s:50:\"index.php?cs_user_templates=$matches[1]&embed=true\";s:38:\"cs_user_templates/([^/]+)/trackback/?$\";s:44:\"index.php?cs_user_templates=$matches[1]&tb=1\";s:46:\"cs_user_templates/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?cs_user_templates=$matches[1]&paged=$matches[2]\";s:53:\"cs_user_templates/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?cs_user_templates=$matches[1]&cpage=$matches[2]\";s:57:\"cs_user_templates/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:72:\"index.php?cs_user_templates=$matches[1]&cornerstone-endpoint=$matches[3]\";s:63:\"cs_user_templates/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:74:\"cs_user_templates/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:42:\"cs_user_templates/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?cs_user_templates=$matches[1]&page=$matches[2]\";s:34:\"cs_user_templates/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"cs_user_templates/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"cs_user_templates/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"cs_user_templates/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"cs_user_templates/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"cs_user_templates/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:46:\"category/(.+?)/cornerstone-endpoint(/(.*))?/?$\";s:68:\"index.php?category_name=$matches[1]&cornerstone-endpoint=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:43:\"tag/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:58:\"index.php?tag=$matches[1]&cornerstone-endpoint=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:51:\"envira-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?envira-tag=$matches[1]&feed=$matches[2]\";s:46:\"envira-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?envira-tag=$matches[1]&feed=$matches[2]\";s:27:\"envira-tag/([^/]+)/embed/?$\";s:43:\"index.php?envira-tag=$matches[1]&embed=true\";s:39:\"envira-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?envira-tag=$matches[1]&paged=$matches[2]\";s:21:\"envira-tag/([^/]+)/?$\";s:32:\"index.php?envira-tag=$matches[1]\";s:56:\"envira-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?envira-category=$matches[1]&feed=$matches[2]\";s:51:\"envira-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?envira-category=$matches[1]&feed=$matches[2]\";s:32:\"envira-category/([^/]+)/embed/?$\";s:48:\"index.php?envira-category=$matches[1]&embed=true\";s:44:\"envira-category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?envira-category=$matches[1]&paged=$matches[2]\";s:26:\"envira-category/([^/]+)/?$\";s:37:\"index.php?envira-category=$matches[1]\";s:40:\"envira_album/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"envira_album/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"envira_album/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"envira_album/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"envira_album/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"envira_album/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"envira_album/([^/]+)/embed/?$\";s:45:\"index.php?envira_album=$matches[1]&embed=true\";s:33:\"envira_album/([^/]+)/trackback/?$\";s:39:\"index.php?envira_album=$matches[1]&tb=1\";s:41:\"envira_album/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?envira_album=$matches[1]&paged=$matches[2]\";s:48:\"envira_album/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?envira_album=$matches[1]&cpage=$matches[2]\";s:52:\"envira_album/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:67:\"index.php?envira_album=$matches[1]&cornerstone-endpoint=$matches[3]\";s:58:\"envira_album/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:69:\"envira_album/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:37:\"envira_album/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?envira_album=$matches[1]&page=$matches[2]\";s:29:\"envira_album/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"envira_album/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"envira_album/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"envira_album/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"envira_album/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"envira_album/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"wp_area/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"wp_area/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"wp_area/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"wp_area/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"wp_area/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"wp_area/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"wp_area/([^/]+)/embed/?$\";s:40:\"index.php?wp_area=$matches[1]&embed=true\";s:28:\"wp_area/([^/]+)/trackback/?$\";s:34:\"index.php?wp_area=$matches[1]&tb=1\";s:36:\"wp_area/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?wp_area=$matches[1]&paged=$matches[2]\";s:43:\"wp_area/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?wp_area=$matches[1]&cpage=$matches[2]\";s:47:\"wp_area/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:62:\"index.php?wp_area=$matches[1]&cornerstone-endpoint=$matches[3]\";s:53:\"wp_area/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:64:\"wp_area/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:32:\"wp_area/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?wp_area=$matches[1]&page=$matches[2]\";s:24:\"wp_area/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"wp_area/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"wp_area/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"wp_area/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"wp_area/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"wp_area/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:52:\"vc_grid_item/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:67:\"index.php?vc_grid_item=$matches[1]&cornerstone-endpoint=$matches[3]\";s:58:\"vc_grid_item/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:69:\"vc_grid_item/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"media-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?media-category=$matches[1]&feed=$matches[2]\";s:50:\"media-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?media-category=$matches[1]&feed=$matches[2]\";s:31:\"media-category/([^/]+)/embed/?$\";s:47:\"index.php?media-category=$matches[1]&embed=true\";s:43:\"media-category/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?media-category=$matches[1]&paged=$matches[2]\";s:25:\"media-category/([^/]+)/?$\";s:36:\"index.php?media-category=$matches[1]\";s:50:\"media-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?media-tag=$matches[1]&feed=$matches[2]\";s:45:\"media-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?media-tag=$matches[1]&feed=$matches[2]\";s:26:\"media-tag/([^/]+)/embed/?$\";s:42:\"index.php?media-tag=$matches[1]&embed=true\";s:38:\"media-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?media-tag=$matches[1]&paged=$matches[2]\";s:20:\"media-tag/([^/]+)/?$\";s:31:\"index.php?media-tag=$matches[1]\";s:36:\"the_grid/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"the_grid/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"the_grid/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"the_grid/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"the_grid/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"the_grid/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"the_grid/([^/]+)/embed/?$\";s:56:\"index.php?post_type=the_grid&name=$matches[1]&embed=true\";s:29:\"the_grid/([^/]+)/trackback/?$\";s:50:\"index.php?post_type=the_grid&name=$matches[1]&tb=1\";s:37:\"the_grid/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?post_type=the_grid&name=$matches[1]&paged=$matches[2]\";s:44:\"the_grid/([^/]+)/comment-page-([0-9]{1,})/?$\";s:63:\"index.php?post_type=the_grid&name=$matches[1]&cpage=$matches[2]\";s:48:\"the_grid/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:78:\"index.php?post_type=the_grid&name=$matches[1]&cornerstone-endpoint=$matches[3]\";s:54:\"the_grid/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:65:\"the_grid/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:33:\"the_grid/([^/]+)(?:/([0-9]+))?/?$\";s:62:\"index.php?post_type=the_grid&name=$matches[1]&page=$matches[2]\";s:25:\"the_grid/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"the_grid/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"the_grid/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"the_grid/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"the_grid/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"the_grid/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"portfolio-item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"portfolio-item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"portfolio-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"portfolio-item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"portfolio-item/([^/]+)/embed/?$\";s:44:\"index.php?x-portfolio=$matches[1]&embed=true\";s:35:\"portfolio-item/([^/]+)/trackback/?$\";s:38:\"index.php?x-portfolio=$matches[1]&tb=1\";s:55:\"portfolio-item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?x-portfolio=$matches[1]&feed=$matches[2]\";s:50:\"portfolio-item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?x-portfolio=$matches[1]&feed=$matches[2]\";s:43:\"portfolio-item/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?x-portfolio=$matches[1]&paged=$matches[2]\";s:50:\"portfolio-item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?x-portfolio=$matches[1]&cpage=$matches[2]\";s:54:\"portfolio-item/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:66:\"index.php?x-portfolio=$matches[1]&cornerstone-endpoint=$matches[3]\";s:60:\"portfolio-item/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:71:\"portfolio-item/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:39:\"portfolio-item/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?x-portfolio=$matches[1]&page=$matches[2]\";s:31:\"portfolio-item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"portfolio-item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"portfolio-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"portfolio-item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-item-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-item-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-item-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:47:\"portfolio-item-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-item-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";s:64:\"portfolio-item-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:59:\"portfolio-item-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:40:\"portfolio-item-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:52:\"portfolio-item-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:34:\"portfolio-item-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:34:\"envira/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"envira/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"envira/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"envira/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"envira/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"envira/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"envira/([^/]+)/embed/?$\";s:39:\"index.php?envira=$matches[1]&embed=true\";s:27:\"envira/([^/]+)/trackback/?$\";s:33:\"index.php?envira=$matches[1]&tb=1\";s:35:\"envira/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?envira=$matches[1]&paged=$matches[2]\";s:42:\"envira/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?envira=$matches[1]&cpage=$matches[2]\";s:46:\"envira/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:61:\"index.php?envira=$matches[1]&cornerstone-endpoint=$matches[3]\";s:52:\"envira/[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:63:\"envira/[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:31:\"envira/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?envira=$matches[1]&page=$matches[2]\";s:23:\"envira/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"envira/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"envira/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"envira/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"envira/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"envira/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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=38&cpage=$matches[1]\";s:31:\"cornerstone-endpoint(/(.*))?/?$\";s:43:\"index.php?&cornerstone-endpoint=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:40:\"comments/cornerstone-endpoint(/(.*))?/?$\";s:43:\"index.php?&cornerstone-endpoint=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:43:\"search/(.+)/cornerstone-endpoint(/(.*))?/?$\";s:56:\"index.php?s=$matches[1]&cornerstone-endpoint=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:46:\"author/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:66:\"index.php?author_name=$matches[1]&cornerstone-endpoint=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:68:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/cornerstone-endpoint(/(.*))?/?$\";s:96:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cornerstone-endpoint=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:55:\"([0-9]{4})/([0-9]{1,2})/cornerstone-endpoint(/(.*))?/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&cornerstone-endpoint=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:42:\"([0-9]{4})/cornerstone-endpoint(/(.*))?/?$\";s:59:\"index.php?year=$matches[1]&cornerstone-endpoint=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:39:\"(.?.+?)/cornerstone-endpoint(/(.*))?/?$\";s:63:\"index.php?pagename=$matches[1]&cornerstone-endpoint=$matches[3]\";s:45:\".?.+?/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:56:\".?.+?/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:39:\"([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:59:\"index.php?name=$matches[1]&cornerstone-endpoint=$matches[3]\";s:45:\"[^/]+/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:56:\"[^/]+/attachment/([^/]+)/cornerstone-endpoint(/(.*))?/?$\";s:65:\"index.php?attachment=$matches[1]&cornerstone-endpoint=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:36:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:35:\"autodescription/autodescription.php\";i:2;s:24:\"block-options/plugin.php\";i:3;s:27:\"cornerstone/cornerstone.php\";i:4;s:37:\"disable-comments/disable-comments.php\";i:5;s:33:\"duplicate-post/duplicate-post.php\";i:6;s:45:\"enable-media-replace/enable-media-replace.php\";i:7;s:31:\"envira-albums/envira-albums.php\";i:8;s:35:\"envira-defaults/envira-defaults.php\";i:9;s:51:\"envira-featured-content/envira-featured-content.php\";i:10;s:39:\"envira-fullscreen/envira-fullscreen.php\";i:11;s:47:\"envira-gallery-themes/envira-gallery-themes.php\";i:12;s:33:\"envira-gallery/envira-gallery.php\";i:13;s:39:\"envira-pagination/envira-pagination.php\";i:14;s:31:\"envira-social/envira-social.php\";i:15;s:27:\"envira-tags/envira-tags.php\";i:16;s:33:\"essential-grid/essential-grid.php\";i:17;s:67:\"favicon-by-realfavicongenerator/favicon-by-realfavicongenerator.php\";i:18;s:19:\"folders/folders.php\";i:19;s:23:\"gutenberg/gutenberg.php\";i:20;s:29:\"hide-featured-image/index.php\";i:21;s:27:\"js_composer/js_composer.php\";i:22;s:35:\"modula-best-grid-gallery/Modula.php\";i:23;s:17:\"modula/Modula.php\";i:24;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:25;s:23:\"revslider/revslider.php\";i:26;s:47:\"robin-image-optimizer/robin-image-optimizer.php\";i:27;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:28;s:19:\"snippet/snippet.php\";i:29;s:37:\"tco-content-dock/tco-content-dock.php\";i:30;s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";i:31;s:27:\"tco-typekit/tco-typekit.php\";i:32;s:21:\"the-grid/the-grid.php\";i:33;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:34;s:33:\"user-switching/user-switching.php\";i:35;s:23:\"wp-smushit/wp-smush.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:45:\"/var/www/public/wp-content/themes/x/style.css\";i:1;s:69:\"/var/www/public/wp-content/plugins/advanced-custom-fields-pro/acf.php\";i:3;s:0:\"\";}','no'),(40,'template','x','yes'),(41,'stylesheet','x','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','0','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:33:\"envira-gallery/envira-gallery.php\";s:25:\"Envira_Gallery::uninstall\";}','no'),(82,'timezone_string','Pacific/Noumea','yes'),(84,'page_on_front','38','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:92:{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:10:\"copy_posts\";b:1;s:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:27:\"edit_other_envira_galleries\";b:1;s:28:\"edit_others_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:29:\"read_private_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:31:\"delete_private_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:29:\"edit_private_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;s:17:\"edit_envira_album\";b:1;s:17:\"read_envira_album\";b:1;s:19:\"delete_envira_album\";b:1;s:18:\"edit_envira_albums\";b:1;s:24:\"edit_other_envira_albums\";b:1;s:25:\"edit_others_envira_albums\";b:1;s:21:\"publish_envira_albums\";b:1;s:26:\"read_private_envira_albums\";b:1;s:20:\"delete_envira_albums\";b:1;s:28:\"delete_private_envira_albums\";b:1;s:30:\"delete_published_envira_albums\";b:1;s:27:\"delete_others_envira_albums\";b:1;s:26:\"edit_private_envira_albums\";b:1;s:28:\"edit_published_envira_albums\";b:1;s:20:\"create_envira_albums\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:65:{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:10:\"copy_posts\";b:1;s:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:27:\"edit_other_envira_galleries\";b:1;s:28:\"edit_others_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:29:\"read_private_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:31:\"delete_private_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:29:\"edit_private_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;s:17:\"edit_envira_album\";b:1;s:17:\"read_envira_album\";b:1;s:19:\"delete_envira_album\";b:1;s:18:\"edit_envira_albums\";b:1;s:24:\"edit_other_envira_albums\";b:1;s:25:\"edit_others_envira_albums\";b:1;s:21:\"publish_envira_albums\";b:1;s:26:\"read_private_envira_albums\";b:1;s:20:\"delete_envira_albums\";b:1;s:28:\"delete_private_envira_albums\";b:1;s:30:\"delete_published_envira_albums\";b:1;s:27:\"delete_others_envira_albums\";b:1;s:26:\"edit_private_envira_albums\";b:1;s:28:\"edit_published_envira_albums\";b:1;s:20:\"create_envira_albums\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:28:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;s:17:\"edit_envira_album\";b:1;s:17:\"read_envira_album\";b:1;s:19:\"delete_envira_album\";b:1;s:18:\"edit_envira_albums\";b:1;s:21:\"publish_envira_albums\";b:1;s:20:\"delete_envira_albums\";b:1;s:30:\"delete_published_envira_albums\";b:1;s:28:\"edit_published_envira_albums\";b:1;s:20:\"create_envira_albums\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:17:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;s:17:\"edit_envira_album\";b:1;s:17:\"read_envira_album\";b:1;s:19:\"delete_envira_album\";b:1;s:18:\"edit_envira_albums\";b:1;s:20:\"delete_envira_albums\";b:1;s:20:\"create_envira_albums\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:4:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:19:\"read_envira_gallery\";b:1;s:17:\"read_envira_album\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"header-1\";a:0:{}s:8:\"header-2\";a:0:{}s:8:\"header-3\";a:0:{}s:8:\"header-4\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:7:{i:1568358843;a:1:{s:30:\"wrio/cron/optimization_process\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"wio_5_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1568359777;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:1568384977;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:1568428177;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1568430331;a:3:{s:23:\"fbrfg_check_for_updates\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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:1568430348;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;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'recovery_keys','a:0:{}','yes'),(115,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1566702719;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(118,'timezone','Oceania/Noumea','yes'),(124,'convert_smilies','0','yes'),(127,'disable_comments_options','a:4:{s:19:\"disabled_post_types\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:11:\"x-portfolio\";}s:17:\"remove_everywhere\";b:1;s:16:\"extra_post_types\";b:0;s:10:\"db_version\";i:6;}','yes'),(129,'duplicate_post_copytitle','1','yes'),(130,'duplicate_post_copydate','0','yes'),(131,'duplicate_post_copystatus','0','yes'),(132,'duplicate_post_copyslug','0','yes'),(133,'duplicate_post_copyexcerpt','1','yes'),(134,'duplicate_post_copycontent','1','yes'),(135,'duplicate_post_copythumbnail','1','yes'),(136,'duplicate_post_copytemplate','1','yes'),(137,'duplicate_post_copyformat','1','yes'),(138,'duplicate_post_copyauthor','0','yes'),(139,'duplicate_post_copypassword','0','yes'),(140,'duplicate_post_copyattachments','0','yes'),(141,'duplicate_post_copychildren','0','yes'),(142,'duplicate_post_copycomments','0','yes'),(143,'duplicate_post_copymenuorder','1','yes'),(144,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(145,'duplicate_post_blacklist','','yes'),(146,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(147,'duplicate_post_show_row','1','yes'),(148,'duplicate_post_show_adminbar','1','yes'),(149,'duplicate_post_show_submitbox','1','yes'),(150,'duplicate_post_show_bulkactions','1','yes'),(151,'duplicate_post_version','3.2.3','yes'),(152,'duplicate_post_show_notice','0','no'),(156,'can_compress_scripts','0','no'),(167,'x_version','6.5.6','yes'),(168,'x_dismiss_update_notice','1','yes'),(171,'theme_mods_x','a:2:{s:18:\"custom_css_post_id\";i:365;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:61;}}','yes'),(173,'current_theme','X','yes'),(174,'theme_switched','','yes'),(177,'x_product_validation_key','0b43d6b4-740c-4dd4-9c4d-023b02ae8a75','yes'),(178,'x_extension_list','a:29:{i:0;a:9:{s:4:\"slug\";s:7:\"acf-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"5.8.4\";s:7:\"package\";s:126:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/advanced-custom-fields-pro.zip\";s:5:\"title\";s:7:\"ACF Pro\";s:11:\"description\";s:216:\"ACF Pro is one of the most powerful tools available for WordPress that both developers and non-developers are sure to love! Allowing you to create custom fields for any post type with a vast array of display options.\";s:8:\"logo_url\";s:104:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/acf-pro.png\";s:6:\"author\";s:13:\"Elliot Condon\";s:8:\"demo_url\";s:29:\"http://demo.theme.co/acf-pro/\";}i:1;a:9:{s:4:\"slug\";s:11:\"convertplug\";s:6:\"plugin\";s:27:\"convertplug/convertplug.php\";s:11:\"new_version\";s:5:\"3.5.1\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/convertplug.zip\";s:5:\"title\";s:11:\"ConvertPlus\";s:11:\"description\";s:146:\"Transform your website into a lead generation powerhouse! Fuel engagement with your visitors, get more subscribers, and increase conversion rates.\";s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/convertplug.png\";s:6:\"author\";s:16:\"Brainstorm Force\";s:8:\"demo_url\";s:46:\"http://theme.co/x/demo/extensions/convertplug/\";}i:2;a:9:{s:4:\"slug\";s:41:\"cost-estimation-and-payment-forms-builder\";s:6:\"plugin\";s:38:\"WP_Estimation_Form/estimation-form.php\";s:11:\"new_version\";s:5:\"9.681\";s:7:\"package\";s:118:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/WP_Estimation_Form.zip\";s:5:\"title\";s:32:\"Cost Estimation & Payments Forms\";s:11:\"description\";s:92:\"This plugin allows you to create easily flat visual forms of paypal payment/cost estimation.\";s:8:\"logo_url\";s:130:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/cost-estimation-and-payment-forms.png\";s:6:\"author\";s:15:\"Charly (loopus)\";s:8:\"demo_url\";s:55:\"http://demo.theme.co/cost-estimation-and-payment-forms/\";}i:3;a:9:{s:4:\"slug\";s:14:\"envira-gallery\";s:6:\"plugin\";s:33:\"envira-gallery/envira-gallery.php\";s:11:\"new_version\";s:7:\"1.8.6.2\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/envira-gallery.zip\";s:5:\"title\";s:14:\"Envira Gallery\";s:11:\"description\";s:135:\"Envira Gallery is a fantastic responsive WordPress gallery plugin. Create beautiful photo and video galleries for your site in minutes.\";s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/envira-gallery.png\";s:6:\"author\";s:14:\"Thomas Griffin\";s:8:\"demo_url\";s:49:\"http://theme.co/x/demo/extensions/envira-gallery/\";}i:4;a:9:{s:4:\"slug\";s:14:\"essential-grid\";s:6:\"plugin\";s:33:\"essential-grid/essential-grid.php\";s:11:\"new_version\";s:5:\"2.3.3\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/essential-grid.zip\";s:5:\"title\";s:14:\"Essential Grid\";s:11:\"description\";s:151:\"Essential Grid is an all-purpose grid building solution for WordPress that allows you to display various content formats in a highly customizable grid.\";s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/essential-grid.png\";s:6:\"author\";s:10:\"ThemePunch\";s:8:\"demo_url\";s:49:\"http://theme.co/x/demo/extensions/essential-grid/\";}i:5;a:9:{s:4:\"slug\";s:11:\"js_composer\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:11:\"new_version\";s:5:\"6.0.5\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/js_composer.zip\";s:5:\"title\";s:15:\"Visual Composer\";s:11:\"description\";s:141:\"We recommend using Cornerstone for page building in X as it is built and managed by Themeco; however, Visual Composer is an alternate choice.\";s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/js_composer.png\";s:6:\"author\";s:8:\"WPBakery\";s:8:\"demo_url\";s:50:\"http://theme.co/x/demo/extensions/visual-composer/\";}i:6;a:9:{s:4:\"slug\";s:11:\"layerslider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:11:\"new_version\";s:5:\"6.9.2\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/LayerSlider.zip\";s:5:\"title\";s:11:\"LayerSlider\";s:11:\"description\";s:135:\"LayerSlider is the most advanced responsive WordPress slider plugin with the famous Parallax Effect and over 200 2D and 3D transitions.\";s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/layerslider.png\";s:6:\"author\";s:14:\"Kreatura Media\";s:8:\"demo_url\";s:46:\"http://theme.co/x/demo/extensions/layerslider/\";}i:7;a:9:{s:4:\"slug\";s:16:\"mailpoet-premium\";s:6:\"plugin\";s:37:\"mailpoet-premium/mailpoet-premium.php\";s:11:\"new_version\";s:6:\"3.0.64\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/mailpoet-premium.zip\";s:5:\"title\";s:16:\"MailPoet Premium\";s:11:\"description\";s:96:\"Adds premium features to the free version of MailPoet and unlocks the limit of 2,000 subscribers\";s:8:\"logo_url\";s:105:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/mailpoet.png\";s:6:\"author\";s:8:\"MailPoet\";s:8:\"demo_url\";s:30:\"http://demo.theme.co/mailpoet/\";}i:8;a:9:{s:4:\"slug\";s:22:\"modern-events-calendar\";s:6:\"plugin\";s:30:\"modern-events-calendar/mec.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/modern-events-calendar.zip\";s:5:\"title\";s:22:\"Modern Events Calendar\";s:11:\"description\";s:225:\"Modern Events Calendar is one of the most powerful event and ticketing solutions available for WordPress. This plugin allows you to create unlimited events, sell tickets and integrates with both PayPal and Stripe out the box.\";s:8:\"logo_url\";s:119:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/modern-events-calendar.png\";s:6:\"author\";s:11:\"Webnus Team\";s:8:\"demo_url\";s:44:\"http://demo.theme.co/modern-events-calendar/\";}i:9;a:9:{s:4:\"slug\";s:9:\"revslider\";s:6:\"plugin\";s:23:\"revslider/revslider.php\";s:11:\"new_version\";s:7:\"5.4.8.3\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/revslider.zip\";s:5:\"title\";s:17:\"Slider Revolution\";s:11:\"description\";s:103:\"Create responsive sliders with must-see-effects, all while maintaining your search engine optimization.\";s:8:\"logo_url\";s:106:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/revslider.png\";s:6:\"author\";s:10:\"ThemePunch\";s:8:\"demo_url\";s:52:\"http://theme.co/x/demo/extensions/slider-revolution/\";}i:10;a:9:{s:4:\"slug\";s:13:\"superfly-menu\";s:6:\"plugin\";s:22:\"superfly-menu/main.php\";s:11:\"new_version\";s:5:\"5.0.7\";s:7:\"package\";s:113:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/superfly-menu.zip\";s:5:\"title\";s:8:\"Superfly\";s:11:\"description\";s:178:\"Superfly brings modern and slick navigation to all WordPress users! Superfly generates vertical push/sliding/static navigation, icon toolbars, or fullscreen menus of your choice.\";s:8:\"logo_url\";s:110:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/superfly-menu.png\";s:6:\"author\";s:13:\"Looks Awesome\";s:8:\"demo_url\";s:30:\"http://demo.theme.co/superfly/\";}i:11;a:9:{s:4:\"slug\";s:9:\"soliloquy\";s:6:\"plugin\";s:23:\"soliloquy/soliloquy.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/soliloquy.zip\";s:5:\"title\";s:9:\"Soliloquy\";s:11:\"description\";s:151:\"Soliloquy is a responsive WordPress slider plugin that makes building sliders in WordPress a task that you will want to experience over and over again.\";s:8:\"logo_url\";s:106:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/soliloquy.png\";s:6:\"author\";s:14:\"Thomas Griffin\";s:8:\"demo_url\";s:44:\"http://theme.co/x/demo/extensions/soliloquy/\";}i:12;a:9:{s:4:\"slug\";s:8:\"the-grid\";s:6:\"plugin\";s:21:\"the-grid/the-grid.php\";s:11:\"new_version\";s:5:\"2.7.3\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/the-grid.zip\";s:5:\"title\";s:8:\"The Grid\";s:11:\"description\";s:206:\"The Grid allows you to show off any post types in a fully customizable and responsive grid system. It is perfectly suited for displaying your blog, portfolio, e-commerce or any kind of Wordpress post types.\";s:8:\"logo_url\";s:105:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/the-grid.png\";s:6:\"author\";s:9:\"Theme-One\";s:8:\"demo_url\";s:43:\"http://theme.co/x/demo/extensions/the-grid/\";}i:13;a:9:{s:4:\"slug\";s:8:\"ubermenu\";s:6:\"plugin\";s:21:\"ubermenu/ubermenu.php\";s:11:\"new_version\";s:7:\"3.6.0.1\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/ubermenu.zip\";s:5:\"title\";s:8:\"UberMenu\";s:11:\"description\";s:87:\"UberMenu is a user-friendly, highly customizable, responsive Mega Menu WordPress plugin\";s:8:\"logo_url\";s:105:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/ubermenu.png\";s:6:\"author\";s:26:\"Chris Mavricos, SevenSpark\";s:8:\"demo_url\";s:30:\"http://demo.theme.co/ubermenu/\";}i:14;a:9:{s:4:\"slug\";s:16:\"tco-content-dock\";s:6:\"plugin\";s:37:\"tco-content-dock/tco-content-dock.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-content-dock.zip\";s:5:\"title\";s:12:\"Content Dock\";s:11:\"description\";s:152:\"An incredibly simple and effective tool that allows you to place content or marketing offers in front of your users in an elegant, non-intrusive manner.\";s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-content-dock.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:47:\"http://theme.co/x/demo/extensions/content-dock/\";}i:15;a:9:{s:4:\"slug\";s:14:\"tco-custom-404\";s:6:\"plugin\";s:33:\"tco-custom-404/tco-custom-404.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-custom-404.zip\";s:5:\"title\";s:10:\"Custom 404\";s:11:\"description\";s:170:\"Redirect all of your site\'s 404 errors to a custom page that you have complete control over. Easily create any layout you want using page templates, shortcodes, and more!\";s:8:\"logo_url\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-custom-404.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:45:\"http://theme.co/x/demo/extensions/custom-404/\";}i:16;a:9:{s:4:\"slug\";s:19:\"tco-disqus-comments\";s:6:\"plugin\";s:43:\"tco-disqus-comments/tco-disqus-comments.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:119:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-disqus-comments.zip\";s:5:\"title\";s:15:\"Disqus Comments\";s:11:\"description\";s:146:\"Take advantage of powerful and unique features by integrating Disqus comments on your website instead of the standard WordPress commenting system.\";s:8:\"logo_url\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-disqus-comments.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:50:\"http://theme.co/x/demo/extensions/disqus-comments/\";}i:17;a:9:{s:4:\"slug\";s:15:\"tco-email-forms\";s:6:\"plugin\";s:35:\"tco-email-forms/tco-email-forms.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-email-forms.zip\";s:5:\"title\";s:11:\"Email Forms\";s:11:\"description\";s:127:\"Email Forms makes it simple to create stunning opt-in forms on your website, simply connect your chosen provider and configure.\";s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/email-forms.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:33:\"http://demo.theme.co/email-forms/\";}i:18;a:9:{s:4:\"slug\";s:21:\"tco-facebook-comments\";s:6:\"plugin\";s:47:\"tco-facebook-comments/tco-facebook-comments.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-facebook-comments.zip\";s:5:\"title\";s:17:\"Facebook Comments\";s:11:\"description\";s:148:\"Take advantage of powerful and unique features by integrating Facebook comments on your website instead of the standard WordPress commenting system.\";s:8:\"logo_url\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-facebook-comments.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:52:\"http://theme.co/x/demo/extensions/facebook-comments/\";}i:19;a:9:{s:4:\"slug\";s:20:\"tco-google-analytics\";s:6:\"plugin\";s:45:\"tco-google-analytics/tco-google-analytics.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:7:\"package\";s:120:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-google-analytics.zip\";s:5:\"title\";s:16:\"Google Analytics\";s:11:\"description\";s:142:\"Simply drop in your Google Analytics code snippet, select where you\'d like it to be output, and you\'re good to go! Google Analytics made easy.\";s:8:\"logo_url\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-google-analytics.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:51:\"http://theme.co/x/demo/extensions/google-analytics/\";}i:20;a:9:{s:4:\"slug\";s:21:\"tco-olark-integration\";s:6:\"plugin\";s:47:\"tco-olark-integration/tco-olark-integration.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-olark-integration.zip\";s:5:\"title\";s:17:\"Olark Integration\";s:11:\"description\";s:145:\"Sign up for an Olark account and experience the easiest way to boost your sales, help solve issues, and understand your customers with live chat.\";s:8:\"logo_url\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-olark-integration.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:52:\"http://theme.co/x/demo/extensions/olark-integration/\";}i:21;a:9:{s:4:\"slug\";s:17:\"tco-smooth-scroll\";s:6:\"plugin\";s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:117:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-smooth-scroll.zip\";s:5:\"title\";s:13:\"Smooth Scroll\";s:11:\"description\";s:179:\"Enabling smooth scrolling on your website allows you to manage the physics of your scroll bar! This fun effect is great if you happen to have a lot users who utilize a mousewheel.\";s:8:\"logo_url\";s:112:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-smooth-scroll.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:48:\"http://theme.co/x/demo/extensions/smooth-scroll/\";}i:22;a:9:{s:4:\"slug\";s:7:\"snippet\";s:6:\"plugin\";s:19:\"snippet/snippet.php\";s:11:\"new_version\";s:5:\"2.0.2\";s:7:\"package\";s:107:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/snippet.zip\";s:5:\"title\";s:7:\"Snippet\";s:11:\"description\";s:129:\"Snippet makes it easy to use Schema and Rich Snippets on your site. Help customers find you easily by adding your company details\";s:8:\"logo_url\";s:104:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/snippet.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:33:\"http://demo.theme.co/email-forms/\";}i:23;a:9:{s:4:\"slug\";s:16:\"tco-terms-of-use\";s:6:\"plugin\";s:37:\"tco-terms-of-use/tco-terms-of-use.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-terms-of-use.zip\";s:5:\"title\";s:12:\"Terms of Use\";s:11:\"description\";s:120:\"This plugin will allow you to add a simple terms of use that visitors must agree to before completing user registration.\";s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-terms-of-use.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:47:\"http://theme.co/x/demo/extensions/terms-of-use/\";}i:24;a:9:{s:4:\"slug\";s:11:\"tco-typekit\";s:6:\"plugin\";s:27:\"tco-typekit/tco-typekit.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-typekit.zip\";s:5:\"title\";s:7:\"Typekit\";s:11:\"description\";s:145:\"Create beautiful designs by incorporating Typekit fonts into your website. Our custom Extension makes this premium service easy to setup and use.\";s:8:\"logo_url\";s:106:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-typekit.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:42:\"http://theme.co/x/demo/extensions/typekit/\";}i:25;a:9:{s:4:\"slug\";s:22:\"tco-under-construction\";s:6:\"plugin\";s:49:\"tco-under-construction/tco-under-construction.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-under-construction.zip\";s:5:\"title\";s:18:\"Under Construction\";s:11:\"description\";s:172:\"Got a little work that needs to be done under the hood? The Under Construction plugin is the easiest maintenance plugin you\'ll ever setup and the last one you\'ll ever need.\";s:8:\"logo_url\";s:117:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-under-construction.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:53:\"http://theme.co/x/demo/extensions/under-construction/\";}i:26;a:9:{s:4:\"slug\";s:14:\"tco-video-lock\";s:6:\"plugin\";s:33:\"tco-video-lock/tco-video-lock.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-video-lock.zip\";s:5:\"title\";s:10:\"Video Lock\";s:11:\"description\";s:138:\"You\'ve never seen a video marketing tool quite like Video Lock. Place offers and a call to action in front of your users without any fuss.\";s:8:\"logo_url\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-video-lock.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:45:\"http://theme.co/x/demo/extensions/video-lock/\";}i:27;a:9:{s:4:\"slug\";s:23:\"tco-woo-checkout-editor\";s:6:\"plugin\";s:52:\"tco-woo-checkout-editor/tco_woo_checkout_manager.php\";s:11:\"new_version\";s:5:\"2.2.0\";s:7:\"package\";s:123:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-woo-checkout-editor.zip\";s:5:\"title\";s:19:\"Woo Checkout Editor\";s:11:\"description\";s:158:\"Woo Checkout Editor is a simple and easy to use WooCommerce Extension that allows you to modify, edit, and remove fields from the WooCommerce checkout process\";s:8:\"logo_url\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/woo-checkout-editor.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:41:\"http://demo.theme.co/woo-checkout-editor/\";}i:28;a:9:{s:4:\"slug\";s:15:\"tco-white-label\";s:6:\"plugin\";s:35:\"tco-white-label/tco-white-label.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-white-label.zip\";s:5:\"title\";s:11:\"White Label\";s:11:\"description\";s:200:\"Customize the WordPress login screen, Addons home page, and much more. This is a great tool to use if handing X off to a client to provide them with tailored content right in the WordPress admin area.\";s:8:\"logo_url\";s:110:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-white-label.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:46:\"http://theme.co/x/demo/extensions/white-label/\";}}','no'),(179,'themeco_update_cache','a:2:{s:7:\"plugins\";a:30:{s:27:\"cornerstone/cornerstone.php\";a:11:{s:4:\"slug\";s:11:\"cornerstone\";s:6:\"plugin\";s:27:\"cornerstone/cornerstone.php\";s:11:\"new_version\";s:5:\"3.5.4\";s:12:\"release_date\";s:14:\"March 20, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:110:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/cornerstone_package/cornerstone.zip\";s:14:\"stable_version\";s:5:\"3.4.6\";s:14:\"stable_package\";s:97:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/stable/cornerstone.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";s:4:\"edge\";a:5:{s:4:\"slug\";s:11:\"cornerstone\";s:6:\"plugin\";s:27:\"cornerstone/cornerstone.php\";s:11:\"new_version\";s:9:\"3.6.0-RC4\";s:12:\"release_date\";s:17:\"September 6, 2019\";s:7:\"package\";s:102:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/pre-release/cornerstone.zip\";}}s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{s:4:\"slug\";s:7:\"acf-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"5.8.4\";s:12:\"release_date\";s:18:\"September 10, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:126:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/advanced-custom-fields-pro.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:27:\"convertplug/convertplug.php\";a:8:{s:4:\"slug\";s:11:\"convertplug\";s:6:\"plugin\";s:27:\"convertplug/convertplug.php\";s:11:\"new_version\";s:5:\"3.5.1\";s:12:\"release_date\";s:14:\"August 5, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/convertplug.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:38:\"WP_Estimation_Form/estimation-form.php\";a:8:{s:4:\"slug\";s:41:\"cost-estimation-and-payment-forms-builder\";s:6:\"plugin\";s:38:\"WP_Estimation_Form/estimation-form.php\";s:11:\"new_version\";s:5:\"9.681\";s:12:\"release_date\";s:13:\"July 17, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:118:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/WP_Estimation_Form.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.0\";}s:33:\"envira-gallery/envira-gallery.php\";a:8:{s:4:\"slug\";s:14:\"envira-gallery\";s:6:\"plugin\";s:33:\"envira-gallery/envira-gallery.php\";s:11:\"new_version\";s:7:\"1.8.6.2\";s:12:\"release_date\";s:13:\"June 11, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/envira-gallery.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.0\";}s:33:\"essential-grid/essential-grid.php\";a:8:{s:4:\"slug\";s:14:\"essential-grid\";s:6:\"plugin\";s:33:\"essential-grid/essential-grid.php\";s:11:\"new_version\";s:5:\"2.3.3\";s:12:\"release_date\";s:15:\"August 27, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/essential-grid.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:27:\"js_composer/js_composer.php\";a:8:{s:4:\"slug\";s:11:\"js_composer\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:11:\"new_version\";s:5:\"6.0.5\";s:12:\"release_date\";s:13:\"July 25, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/js_composer.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:27:\"LayerSlider/layerslider.php\";a:8:{s:4:\"slug\";s:11:\"layerslider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:11:\"new_version\";s:5:\"6.9.2\";s:12:\"release_date\";s:18:\"September 10, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/LayerSlider.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:37:\"mailpoet-premium/mailpoet-premium.php\";a:8:{s:4:\"slug\";s:16:\"mailpoet-premium\";s:6:\"plugin\";s:37:\"mailpoet-premium/mailpoet-premium.php\";s:11:\"new_version\";s:6:\"3.0.64\";s:12:\"release_date\";s:17:\"September 4, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/mailpoet-premium.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:30:\"modern-events-calendar/mec.php\";a:8:{s:4:\"slug\";s:22:\"modern-events-calendar\";s:6:\"plugin\";s:30:\"modern-events-calendar/mec.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:12:\"release_date\";s:18:\"September 10, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/modern-events-calendar.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:23:\"revslider/revslider.php\";a:8:{s:4:\"slug\";s:9:\"revslider\";s:6:\"plugin\";s:23:\"revslider/revslider.php\";s:11:\"new_version\";s:7:\"5.4.8.3\";s:12:\"release_date\";s:13:\"July 21, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/revslider.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:22:\"superfly-menu/main.php\";a:8:{s:4:\"slug\";s:13:\"superfly-menu\";s:6:\"plugin\";s:22:\"superfly-menu/main.php\";s:11:\"new_version\";s:5:\"5.0.7\";s:12:\"release_date\";s:17:\"September 4, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:113:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/superfly-menu.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:23:\"soliloquy/soliloquy.php\";a:8:{s:4:\"slug\";s:9:\"soliloquy\";s:6:\"plugin\";s:23:\"soliloquy/soliloquy.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:12:\"release_date\";s:14:\"March 22, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/soliloquy.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:21:\"the-grid/the-grid.php\";a:8:{s:4:\"slug\";s:8:\"the-grid\";s:6:\"plugin\";s:21:\"the-grid/the-grid.php\";s:11:\"new_version\";s:5:\"2.7.3\";s:12:\"release_date\";s:18:\"September 10, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/the-grid.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:21:\"ubermenu/ubermenu.php\";a:8:{s:4:\"slug\";s:8:\"ubermenu\";s:6:\"plugin\";s:21:\"ubermenu/ubermenu.php\";s:11:\"new_version\";s:7:\"3.6.0.1\";s:12:\"release_date\";s:13:\"June 20, 2018\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/ubermenu.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:37:\"tco-content-dock/tco-content-dock.php\";a:8:{s:4:\"slug\";s:16:\"tco-content-dock\";s:6:\"plugin\";s:37:\"tco-content-dock/tco-content-dock.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:13:\"October, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-content-dock.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:33:\"tco-custom-404/tco-custom-404.php\";a:8:{s:4:\"slug\";s:14:\"tco-custom-404\";s:6:\"plugin\";s:33:\"tco-custom-404/tco-custom-404.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-custom-404.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:43:\"tco-disqus-comments/tco-disqus-comments.php\";a:8:{s:4:\"slug\";s:19:\"tco-disqus-comments\";s:6:\"plugin\";s:43:\"tco-disqus-comments/tco-disqus-comments.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:119:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-disqus-comments.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:35:\"tco-email-forms/tco-email-forms.php\";a:8:{s:4:\"slug\";s:15:\"tco-email-forms\";s:6:\"plugin\";s:35:\"tco-email-forms/tco-email-forms.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-email-forms.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:47:\"tco-facebook-comments/tco-facebook-comments.php\";a:8:{s:4:\"slug\";s:21:\"tco-facebook-comments\";s:6:\"plugin\";s:47:\"tco-facebook-comments/tco-facebook-comments.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-facebook-comments.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:45:\"tco-google-analytics/tco-google-analytics.php\";a:8:{s:4:\"slug\";s:20:\"tco-google-analytics\";s:6:\"plugin\";s:45:\"tco-google-analytics/tco-google-analytics.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:12:\"release_date\";s:13:\"June 18, 2018\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:120:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-google-analytics.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:47:\"tco-olark-integration/tco-olark-integration.php\";a:8:{s:4:\"slug\";s:21:\"tco-olark-integration\";s:6:\"plugin\";s:47:\"tco-olark-integration/tco-olark-integration.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-olark-integration.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";a:8:{s:4:\"slug\";s:17:\"tco-smooth-scroll\";s:6:\"plugin\";s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:117:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-smooth-scroll.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:19:\"snippet/snippet.php\";a:8:{s:4:\"slug\";s:7:\"snippet\";s:6:\"plugin\";s:19:\"snippet/snippet.php\";s:11:\"new_version\";s:5:\"2.0.2\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:107:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/snippet.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:37:\"tco-terms-of-use/tco-terms-of-use.php\";a:8:{s:4:\"slug\";s:16:\"tco-terms-of-use\";s:6:\"plugin\";s:37:\"tco-terms-of-use/tco-terms-of-use.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-terms-of-use.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:27:\"tco-typekit/tco-typekit.php\";a:8:{s:4:\"slug\";s:11:\"tco-typekit\";s:6:\"plugin\";s:27:\"tco-typekit/tco-typekit.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-typekit.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:49:\"tco-under-construction/tco-under-construction.php\";a:8:{s:4:\"slug\";s:22:\"tco-under-construction\";s:6:\"plugin\";s:49:\"tco-under-construction/tco-under-construction.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:12:\"release_date\";s:16:\"January 25, 2019\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-under-construction.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:33:\"tco-video-lock/tco-video-lock.php\";a:8:{s:4:\"slug\";s:14:\"tco-video-lock\";s:6:\"plugin\";s:33:\"tco-video-lock/tco-video-lock.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-video-lock.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:52:\"tco-woo-checkout-editor/tco_woo_checkout_manager.php\";a:8:{s:4:\"slug\";s:23:\"tco-woo-checkout-editor\";s:6:\"plugin\";s:52:\"tco-woo-checkout-editor/tco_woo_checkout_manager.php\";s:11:\"new_version\";s:5:\"2.2.0\";s:12:\"release_date\";s:16:\"October 11, 2018\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:123:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-woo-checkout-editor.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}s:35:\"tco-white-label/tco-white-label.php\";a:8:{s:4:\"slug\";s:15:\"tco-white-label\";s:6:\"plugin\";s:35:\"tco-white-label/tco-white-label.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:38:\"http://theme.co/changelog/?iframe=true\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-white-label.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.1\";}}s:6:\"themes\";a:1:{s:1:\"x\";a:8:{s:5:\"theme\";s:1:\"x\";s:11:\"new_version\";s:5:\"6.5.5\";s:12:\"release_date\";s:14:\"March 20, 2019\";s:3:\"url\";s:18:\"http://theme.co/x/\";s:7:\"package\";s:90:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/x.zip\";s:14:\"stable_version\";s:5:\"6.4.6\";s:14:\"stable_package\";s:87:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/stable/x.zip\";s:4:\"edge\";a:3:{s:11:\"new_version\";s:9:\"6.6.0-RC4\";s:12:\"release_date\";s:17:\"September 6, 2019\";s:7:\"package\";s:92:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/pre-release/x.zip\";}}}}','no'),(196,'envira_version','1.8.6.3','no'),(197,'widget_envira-gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(198,'widget_envira-gallery-random-images','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(199,'envira_gallery_116','1','yes'),(200,'envira_gallery_121','1','yes'),(201,'essgrid_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:16:\"themepunch.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(202,'essgrid_server_refresh','1568356221','yes'),(203,'tp_eg_grids_version','2.3','yes'),(204,'tp_eg_custom_css_imported','true','yes'),(205,'tp_eg_custom_css','/* HENRY HARRISON */\n\na.eg-henryharrison-element-1,\na.eg-henryharrison-element-2 {\n -webkit-transition: all .4s linear; \n -moz-transition: all .4s linear; \n -o-transition: all .4s linear; \n -ms-transition: all .4s linear; \n transition: all .4s linear; \n}\n\n/* JIMMY CARTER */\n.eg-jimmy-carter-element-11 i:before { margin-left:0px; margin-right:0px;}\n\n\n/* HARDING */\n.eg-harding-element-17 { letter-spacing:1px}\n.eg-harding-wrapper .esg-entry-media { overflow:hidden; \n box-sizing:border-box;\n -webkit-box-sizing:border-box;\n -moz-box-sizing:border-box;\n padding:30px 30px 0px 30px;\n}\n\n.eg-harding-wrapper .esg-media-poster { overflow:hidden; \n border-radius:50%;\n -webkit-border-radius:50%;\n -moz-border-radius:50%;\n}\n\n/*ULYSSES S GRANT */\n.eg-ulysses-s-grant-wrapper .esg-entry-media { overflow:hidden; \n box-sizing:border-box;\n -webkit-box-sizing:border-box;\n -moz-box-sizing:border-box;\n padding:30px 30px 0px 30px;\n}\n\n.eg-ulysses-s-grant-wrapper .esg-media-poster { overflow:hidden; \n border-radius:50%;\n -webkit-border-radius:50%;\n -moz-border-radius:50%;\n}\n\n/*RICHARD NIXON */\n.eg-richard-nixon-wrapper .esg-entry-media { overflow:hidden; \n box-sizing:border-box;\n -webkit-box-sizing:border-box;\n -moz-box-sizing:border-box;\n padding:30px 30px 0px 30px;\n}\n\n.eg-richard-nixon-wrapper .esg-media-poster { overflow:hidden; \n border-radius:50%;\n -webkit-border-radius:50%;\n -moz-border-radius:50%;\n}\n\n\n/* HERBERT HOOVER */\n.eg-herbert-hoover-wrapper .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n filter: gray; /* IE6-9 */\n -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-herbert-hoover-wrapper:hover .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n -webkit-filter: grayscale(0%);}\n\n\n/* JOOHNSON */\n.eg-lyndon-johnson-wrapper .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n filter: gray; /* IE6-9 */\n -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-lyndon-johnson-wrapper:hover .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n -webkit-filter: grayscale(0%);}\n\n\n/*RONALD REAGAN*/\n.esg-overlay.eg-ronald-reagan-container {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*GEORGE BUSH*/\n.eg-georgebush-wrapper .esg-entry-cover {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*GEORGE BUSH\n.eg-georgebush-wrapper .esg-entry-cover { background: rgba(0,0,0,0.5);}*/\n\n/*JEFFERSON*/\n.eg-jefferson-wrapper { -webkit-border-radius: 5px !important; -moz-border-radius: 5px !important; border-radius: 5px !important; -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important; }\n\n/*MONROE*/\n.eg-monroe-element-1 { text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }\n\n/*LYNDON JOHNSON*/\n.eg-lyndon-johnson-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\nbackground: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\nbackground: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\nbackground: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\n }\n\n/*WILBERT*/\n.eg-wilbert-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\nbackground: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\nbackground: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\nbackground: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\n }\n.eg-wilbert-wrapper .esg-media-poster{\n -webkit-transition: 0.4s ease-in-out;\n -moz-transition: 0.4s ease-in-out;\n -o-transition: 0.4s ease-in-out;\n transition: 0.4s ease-in-out;\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n filter: gray; /* IE6-9 */\n -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-wilbert-wrapper:hover .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n -webkit-filter: grayscale(0%);}\n\n/*PHILLIE*/\n.eg-phillie-element-3:after { \ncontent:\" \";\nwidth: 0px;\nheight: 0px;\nborder-style: solid;\nborder-width: 5px 5px 0 5px;\nborder-color: #000 transparent transparent transparent;\nleft:50%;\nmargin-left:-5px; bottom:-5px; position:absolute; }\n\n/*HOWARD TAFT*/\n.eg-howardtaft-wrapper .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n -webkit-filter: grayscale(0%);\n}\n\n.eg-howardtaft-wrapper:hover .esg-media-poster{\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n filter: gray; /* IE6-9 */\n -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n/* WOOCOMMERCE */\n.myportfolio-container .added_to_cart.wc-forward { font-family: \"Open Sans\"; font-size: 13px; color: #fff; margin-top: 10px; }\n\n/* LIGHTBOX */\n.esgbox-title.esgbox-title-outside-wrap { font-size: 15px; font-weight: 700; text-align: center; }\n.esgbox-title.esgbox-title-inside-wrap { padding-bottom: 10px; font-size: 15px; font-weight: 700; text-align: center; }\n \n/*TWITTER STREAM*/\n.esg-content.eg-twitterstream-element-33-a { display: inline-block; }\n.eg-twitterstream-element-35 { word-break: break-all; } \n.esg-overlay.eg-twitterstream-container {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*FACEBOOK STREAM*/\n.esg-content.eg-facebookstream-element-33-a { display: inline-block; }\n.eg-facebookstream-element-0 { word-break: break-all; } \n\n/*FLICKR STREAM*/\n.esg-overlay.eg-flickrstream-container {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n','yes'),(206,'tp-google-fonts','a:3:{i:0;a:2:{s:3:\"url\";s:29:\"Open+Sans:300,400,600,700,800\";s:6:\"handle\";s:9:\"open-sans\";}i:1;a:2:{s:3:\"url\";s:43:\"Raleway:100,200,300,400,500,600,700,800,900\";s:6:\"handle\";s:7:\"raleway\";}i:2;a:2:{s:3:\"url\";s:19:\"Droid+Serif:400,700\";s:6:\"handle\";s:11:\"droid-serif\";}}','yes'),(207,'tp_eg_role','','yes'),(208,'tp_eg_update-check-short','1568356260','yes'),(209,'tp_eg-templates-check','1568356260','yes'),(210,'tp_eg-templates-new','','no'),(211,'tp_eg-templates','a:1:{s:5:\"grids\";a:53:{i:0;a:16:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:12:\"Vimeo Player\";s:5:\"alias\";s:11:\"vimeostream\";s:3:\"zip\";s:15:\"vimeostream.zip\";s:3:\"uid\";s:32:\"088c7c0f8a0862bbe2dab1dd16601a3e\";s:3:\"img\";s:13:\"ess_vimeo.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/minimal-vimeo-playlist-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when you<br> \r\napply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:52\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:16:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:12:\"flickrstream\";s:3:\"zip\";s:16:\"flickrstream.zip\";s:3:\"uid\";s:32:\"edfd9652b92d5783d74fefc3247632d0\";s:3:\"img\";s:14:\"ess_flickr.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/flickr-photo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:132:\"You will need to insert a Flickr API key<br>\r\n in the \"Source Tab\", also please clear <br>\r\nthe stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:40\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:16:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:17:\"Instagram Minimal\";s:5:\"alias\";s:15:\"instagramstream\";s:3:\"zip\";s:19:\"instagramstream.zip\";s:3:\"uid\";s:32:\"73061fa3b75c5afaf4846cdf95add10c\";s:3:\"img\";s:13:\"ess_insta.jpg\";s:7:\"preview\";s:90:\"https://essential.themepunch.com/template_library/minimal-instagram-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:06\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:16:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:12:\"YouTube Grid\";s:5:\"alias\";s:13:\"youtubestream\";s:3:\"zip\";s:17:\"youtubestream.zip\";s:3:\"uid\";s:32:\"df776948dd7ca1cb88ba59a4e638f20e\";s:3:\"img\";s:15:\"ess_youtube.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/youtube-playlist-video-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:69:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Pagination<br>Sorting</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"0\";s:4:\"date\";s:19:\"2018-11-14 09:58:54\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:16:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:16:\"Twitter Overview\";s:5:\"alias\";s:13:\"twitterstream\";s:3:\"zip\";s:17:\"twitterstream.zip\";s:3:\"uid\";s:32:\"a38d8298c59f31831c516ce8429026cf\";s:3:\"img\";s:15:\"ess_twitter.jpg\";s:7:\"preview\";s:74:\"https://essential.themepunch.com/template_library/twitter-stream-overview/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:60:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:135:\"You will need to insert Twitter credentials<br>\r\n in the \"Source Tab\", also please clear the stream<br>\r\n cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:8:\"loadmore\";i:2;s:7:\"masonry\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:24\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:16:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:13:\"Facebook Page\";s:5:\"alias\";s:14:\"facebookstream\";s:3:\"zip\";s:18:\"facebookstream.zip\";s:3:\"uid\";s:32:\"c346b49eb0dbfa897454160eccc55383\";s:3:\"img\";s:16:\"ess_facebook.jpg\";s:7:\"preview\";s:107:\"https://essential.themepunch.com/template_library/facebook-fanpage-content-and-album-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:60:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:138:\"You will need to register a Facebook app before.<br>\r\nAlso please clear the stream cache when you<br>\r\napply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:8:\"loadmore\";i:2;s:7:\"masonry\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:58:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:16:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:5:\"Jason\";s:5:\"alias\";s:4:\"woo2\";s:3:\"zip\";s:8:\"woo2.zip\";s:3:\"uid\";s:32:\"e4f9657a98fc6cc7a3a7136b5c7b2015\";s:3:\"img\";s:9:\"jason.jpg\";s:7:\"preview\";s:84:\"https://essential.themepunch.com/template_library/jason-woocommerce-product-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">Boxed 3 Row<br/>WooCommerce Shop<br>Shopping Cart<br/>Filtering</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:10:\"pagination\";i:2;s:7:\"sorting\";i:3;s:11:\"woocommerce\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:15\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:16:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:6:\"Arthur\";s:5:\"alias\";s:4:\"woo1\";s:3:\"zip\";s:8:\"woo1.zip\";s:3:\"uid\";s:32:\"59bfe81828b2ddcc89b9e3968760e9d1\";s:3:\"img\";s:10:\"arthur.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/arthur-woocommerce-product-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:92:\"<div class=\"hcap\">Full-Width 5 Row<br/>WooCommerce Shop<br>Shopping Cart<br/>Filtering</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:11:\"woocommerce\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:16:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:6:\"Hoover\";s:5:\"alias\";s:19:\"masonry_grid_hoover\";s:3:\"zip\";s:23:\"masonry_grid_hoover.zip\";s:3:\"uid\";s:32:\"d97c537e349e9f1c91dff285f8df60c5\";s:3:\"img\";s:10:\"hoover.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/hoover-masonry-wordpress-post-gallery-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:93:\"<div class=\"hcap\">Masonry Grid<br/>Video Entries<br/>B&W Effect<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:27\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:16:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:6:\"Lyndon\";s:5:\"alias\";s:12:\"clients_grid\";s:3:\"zip\";s:16:\"clients_grid.zip\";s:3:\"uid\";s:32:\"2cdd4fc78978e87d7aa0502ba3b686e5\";s:3:\"img\";s:10:\"lyndon.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/lyndon-modern-client-logo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">2 Row Scroller<br/>Icons via Meta<br/>B&W Effect<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:4:\"even\";i:2;s:9:\"fullwidth\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:32\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:16:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:7:\"Phillie\";s:5:\"alias\";s:14:\"clients_grid_3\";s:3:\"zip\";s:18:\"clients_grid_3.zip\";s:3:\"uid\";s:32:\"5610d9625b702520c344168cfa70579c\";s:3:\"img\";s:11:\"phillie.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/phillie-clients-logo-grid-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:94:\"<div class=\"hcap\">Clean Design<br/>Icons via Meta<br/>Tooltip Style Hover<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:2:{i:0;s:7:\"clients\";i:1;s:4:\"even\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:37\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:16:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:8:\"McKinley\";s:5:\"alias\";s:19:\"media_blog_mckinley\";s:3:\"zip\";s:23:\"media_blog_mckinley.zip\";s:3:\"uid\";s:32:\"a430af281c10753e067a38d1641c8d7b\";s:3:\"img\";s:12:\"mckinley.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/multimedia-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:100:\"<div class=\"hcap\">Masonry Grid<br/>Video Entries<br/>Directional Hover<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:16:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:4:\"Taft\";s:5:\"alias\";s:21:\"media_grid_howardtaft\";s:3:\"zip\";s:25:\"media_grid_howardtaft.zip\";s:3:\"uid\";s:32:\"eebc5585762fe9889ceff28fae22137d\";s:3:\"img\";s:8:\"taft.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/multimedia-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">3 x 3 Grid<br/>Video Entries<br>Directional Hover<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:8:\"loadmore\";i:2;s:12:\"nonavigation\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:29\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:16:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:7:\"Wilbert\";s:5:\"alias\";s:14:\"clients_grid_2\";s:3:\"zip\";s:18:\"clients_grid_2.zip\";s:3:\"uid\";s:32:\"f27f88f41b38547d344e6cf993951862\";s:3:\"img\";s:11:\"wilbert.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/wilbert-client-and-logo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">4 x 3 Grid<br/>Icons via Meta<br/>B&W Effect<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:4:\"even\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:16:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:9:\"Roosevelt\";s:5:\"alias\";s:19:\"even_grid_roosevelt\";s:3:\"zip\";s:23:\"even_grid_roosevelt.zip\";s:3:\"uid\";s:32:\"5a8c19d4149497e2b6ba24a367ef008f\";s:3:\"img\";s:13:\"roosevelt.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/roosevelt-hover-detail-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:92:\"<div class=\"hcap\">Full-Screen Grid<br/>Push Up Media Hover<br/>Left & Right Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:10:\"fullscreen\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:16:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:6:\"Quincy\";s:5:\"alias\";s:16:\"even_grid_quincy\";s:3:\"zip\";s:20:\"even_grid_quincy.zip\";s:3:\"uid\";s:32:\"7a6e7bbd01c5d558748c8c2c7b6373b9\";s:3:\"img\";s:10:\"quincy.jpg\";s:7:\"preview\";s:91:\"https://essential.themepunch.com/template_library/quincy-zoom-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:129:\"<div class=\"hcap\">Single / Double Row<br/>Slider Style<br/>Link & Lightbox Icons<br/>Left & Right Nav Arrows<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:16:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:17:\"Price Tables Ford\";s:5:\"alias\";s:17:\"price_tables_ford\";s:3:\"zip\";s:21:\"price_tables_ford.zip\";s:3:\"uid\";s:32:\"1ebd3eab67b822e45ad9648b9701ce01\";s:3:\"img\";s:8:\"ford.jpg\";s:7:\"preview\";s:82:\"https://essential.themepunch.com/template_library/ford-price-tables-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:82:\"<div class=\"hcap\">Traditional Price Tables<br/>Icons on Hover<br/>Pagination</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:54\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:16:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:18:\"Price Tables Nixon\";s:5:\"alias\";s:16:\"price_tables_two\";s:3:\"zip\";s:20:\"price_tables_two.zip\";s:3:\"uid\";s:32:\"a45c055632139fadbc92232031fcd3d5\";s:3:\"img\";s:9:\"nixon.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/nixon-woocommerce-price-tables-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:84:\"<div class=\"hcap\">Price Table Scroller<br/>Show Image Hover<br/>Stacked Tables</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:12:\"nonavigation\";i:2;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:48\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:16:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:18:\"Price Tables Grant\";s:5:\"alias\";s:16:\"price_tables_one\";s:3:\"zip\";s:20:\"price_tables_one.zip\";s:3:\"uid\";s:32:\"19be80fd1a58cbb3714ee76453b11771\";s:3:\"img\";s:9:\"grant.jpg\";s:7:\"preview\";s:91:\"https://essential.themepunch.com/template_library/ulysses-woocommerce-product-price-tables/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:116:\"<div class=\"hcap\">Price Table Scroller<br/>Show Image Hover<br/>Left & Right Nav Arrows<br/>Boxed & Full Shown</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:16:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:7:\"Johnson\";s:5:\"alias\";s:17:\"even_grid_johnson\";s:3:\"zip\";s:21:\"even_grid_johnson.zip\";s:3:\"uid\";s:32:\"bcc38fc15aa572544a076bbd38b867af\";s:3:\"img\";s:11:\"johnson.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/johnson-minimal-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:96:\"<div class=\"hcap\">Full Width Grid<br/>Colored Hover<br/>3 Icons on Hover<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:47\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:16:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:9:\"Cleveland\";s:5:\"alias\";s:19:\"even_grid_cleveland\";s:3:\"zip\";s:23:\"even_grid_cleveland.zip\";s:3:\"uid\";s:32:\"fc12421ec2c8804996d8c766a7d7c01d\";s:3:\"img\";s:13:\"cleveland.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/cleveland-hover-effect-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:102:\"<div class=\"hcap\">Full Width Grid<br/>Content on Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:52\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:16:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:4:\"Bush\";s:5:\"alias\";s:20:\"even_grid_georgebush\";s:3:\"zip\";s:24:\"even_grid_georgebush.zip\";s:3:\"uid\";s:32:\"ca6e67691019249b786a7ea5fa577a71\";s:3:\"img\";s:8:\"bush.jpg\";s:7:\"preview\";s:97:\"https://essential.themepunch.com/template_library/bush-fullwidth-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:88:\"<div class=\"hcap\">Full Width 2 Row<br/>Cover Grow Hover<br/>Filters<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:56\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:16:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:8:\"Harrison\";s:5:\"alias\";s:23:\"even_grid_henryharrison\";s:3:\"zip\";s:27:\"even_grid_henryharrison.zip\";s:3:\"uid\";s:32:\"be1e10b8bfc8ad490402e8b7605bc428\";s:3:\"img\";s:12:\"harrison.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/harrison-bubbly-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:83:\"<div class=\"hcap\">Full Width 4 Row<br/>Special Effect Hover<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:01\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:16:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:8:\"VanBuren\";s:5:\"alias\";s:18:\"even_grid_vanburen\";s:3:\"zip\";s:22:\"even_grid_vanburen.zip\";s:3:\"uid\";s:32:\"c4633fba2e78794bcdef41c06d703c39\";s:3:\"img\";s:12:\"vanburen.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/vanburen-dark-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:105:\"<div class=\"hcap\">Full Width 3 Row<br/>Dark Opacity Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:05\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:16:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:7:\"Jackson\";s:5:\"alias\";s:17:\"even_grid_jackson\";s:3:\"zip\";s:21:\"even_grid_jackson.zip\";s:3:\"uid\";s:32:\"b433ca06c9e23c037437944c64a2b4da\";s:3:\"img\";s:11:\"jackson.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/jackson-stylish-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:117:\"<div class=\"hcap\">Full Width 1:1 Grid<br/>Clean White Hover<br/>Link & Lightbox Icons<br/>Filters<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:10\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:16:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:9:\"Jefferson\";s:5:\"alias\";s:19:\"even_grid_jefferson\";s:3:\"zip\";s:23:\"even_grid_jefferson.zip\";s:3:\"uid\";s:32:\"4aa970752344a63ca15558bd286efca9\";s:3:\"img\";s:13:\"jefferson.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/variable-columns-flip-item-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:121:\"<div class=\"hcap\">Custom Row Grid<br/>Red Flip Hover<br/>Link & Lightbox Icons<br/>Filters & Sorting<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:7:{i:0;s:4:\"even\";i:1;s:14:\"filterdropdown\";i:2;s:9:\"filtering\";i:3;s:9:\"fullwidth\";i:4;s:10:\"pagination\";i:5;s:7:\"sorting\";i:6;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:15\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:16:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:8:\"Garfield\";s:5:\"alias\";s:21:\"masonry_grid_garfield\";s:3:\"zip\";s:25:\"masonry_grid_garfield.zip\";s:3:\"uid\";s:32:\"5f73bbe117ebfb9b68ff85ee32bf4578\";s:3:\"img\";s:12:\"garfield.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/garfield-wordpress-news-post-magazine-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:113:\"<div class=\"hcap\">Masonry Blog Style<br/>Content on Top<br/>Dark Media Hover<br/>Load More<br/>Lazy Loading</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:20\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:16:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:6:\"Reagan\";s:5:\"alias\";s:26:\"masonry_grid_ronald_reagan\";s:3:\"zip\";s:30:\"masonry_grid_ronald_reagan.zip\";s:3:\"uid\";s:32:\"ae42d4e11ba5e393274edf5099a4a43f\";s:3:\"img\";s:10:\"raegan.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/reagan-blog-post-overview-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:124:\"<div class=\"hcap\">Masonry Blog Style<br/>Static Caption<br/>Link Show Hover<br/>Filters & Sorting<br/>Scroll Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:7:{i:0;s:14:\"filterdropdown\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:8:\"loadmore\";i:4;s:7:\"masonry\";i:5;s:10:\"pagination\";i:6;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:16:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:6:\"Carter\";s:5:\"alias\";s:23:\"masonryblog_jimmycarter\";s:3:\"zip\";s:27:\"masonryblog_jimmycarter.zip\";s:3:\"uid\";s:32:\"4832dc2a147e574f20c537b958f2d9ae\";s:3:\"img\";s:10:\"carter.jpg\";s:7:\"preview\";s:88:\"https://essential.themepunch.com/template_library/carter-masonry-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:104:\"<div class=\"hcap\">Masonry Blog Style<br/>3D Effect Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"filtering\";i:1;s:9:\"fullwidth\";i:2;s:7:\"masonry\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:31\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:16:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:6:\"Monroe\";s:5:\"alias\";s:16:\"even_grid_monroe\";s:3:\"zip\";s:20:\"even_grid_monroe.zip\";s:3:\"uid\";s:32:\"2399e4ae114ede833e881a78566050e8\";s:3:\"img\";s:10:\"monroe.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/monroe-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:95:\"<div class=\"hcap\">3x4 Grid<br/>Static Caption<br/>Button on Hover<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:39\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:16:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:7:\"Madison\";s:5:\"alias\";s:17:\"even_grid_madison\";s:3:\"zip\";s:21:\"even_grid_madison.zip\";s:3:\"uid\";s:32:\"0e0e929128e8f9047da8e95ed37da4f6\";s:3:\"img\";s:11:\"madison.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/madison-even-grid-wordpress-woocommerce-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">4x3 Grid<br/>Dark Flip Hovers<br/>Link & Lightbox Icons<br/>No Navigation</div>\";s:11:\"setup_notes\";s:67:\"Build for WooCommerce Products <br>\r\nbut any content type will fit.\";s:6:\"filter\";a:2:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-15 10:53:06\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:16:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:5:\"Adams\";s:5:\"alias\";s:15:\"even_grid_adams\";s:3:\"zip\";s:19:\"even_grid_adams.zip\";s:3:\"uid\";s:32:\"2b48888d484376485f80a175876907c6\";s:3:\"img\";s:9:\"adams.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/adams-variable-fullwidth-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:119:\"<div class=\"hcap\">Custom Row Grid<br/>Green Hovers<br/>Link & Lightbox Icons<br/>Filters & Sorting<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:6:{i:0;s:4:\"even\";i:1;s:14:\"filterdropdown\";i:2;s:9:\"filtering\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";i:5;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:53\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:16:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:10:\"Washington\";s:5:\"alias\";s:20:\"even_grid_washington\";s:3:\"zip\";s:24:\"even_grid_washington.zip\";s:3:\"uid\";s:32:\"81fa93476a5e8ecd8efa146f54c2bd5d\";s:3:\"img\";s:14:\"washington.jpg\";s:7:\"preview\";s:101:\"https://essential.themepunch.com/template_library/washington-tranparent-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:119:\"<div class=\"hcap\">3x3 Grid<br/>Dark Opacity Hovers<br/>Link & Lightbox Icons<br/>Filters & Pagination<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:05:09\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:16:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:6:\"Mullen\";s:5:\"alias\";s:10:\"joe-mullen\";s:3:\"zip\";s:14:\"joe-mullen.zip\";s:3:\"uid\";s:32:\"904cc1afb3d66ab851b199f0dd647b7b\";s:3:\"img\";s:14:\"joe-mullen.jpg\";s:7:\"preview\";s:82:\"https://essential.themepunch.com/template_library/joe-mullen-custom-image-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:81:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:9:\"fullwidth\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:32:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:16:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:10:\"Jari Kurri\";s:5:\"alias\";s:10:\"jari-kurri\";s:3:\"zip\";s:14:\"jari-kurri.zip\";s:3:\"uid\";s:32:\"1c4b4785e797ad2222d1f7fecab79649\";s:3:\"img\";s:14:\"jari-kurri.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/jari-kurri-photograher-portfolio/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">Custom Row Grid<br/>Filter Hover<br/>Stylish<br/>flickr Source (variable)</div>\";s:11:\"setup_notes\";s:98:\"Template was built with flickr Source,<br/>\r\neither add flickr API key or<br/>\r\nchange source type\";s:6:\"filter\";a:3:{i:0;s:12:\"nonavigation\";i:1;s:7:\"streams\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:32:28\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:16:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Wayne Gretzky\";s:5:\"alias\";s:13:\"wayne-gretzky\";s:3:\"zip\";s:17:\"wayne-gretzky.zip\";s:3:\"uid\";s:32:\"c4c1a976fc6236fac530d21ef5b88a46\";s:3:\"img\";s:11:\"gretzky.jpg\";s:7:\"preview\";s:88:\"https://essential.themepunch.com/template_library/wayne-gretzky-custom-white-space-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:02\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:16:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:18:\"Viacheslav Fetisov\";s:5:\"alias\";s:18:\"viacheslav-fetisov\";s:3:\"zip\";s:11:\"fetisov.zip\";s:3:\"uid\";s:32:\"8c4bb3bc608390189df9aef958e88ff3\";s:3:\"img\";s:11:\"fetisov.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/viacheslav-fetisov-behance-portfolio/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Portfolio</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a Behance API key<br>\r\n in the \"Source Tab\", also please clear <br>\r\nthe stream cache when you apply changes.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:11\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:16:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:14:\"Dark Portfolio\";s:5:\"alias\";s:14:\"portfolio-dark\";s:3:\"zip\";s:18:\"dark-portfolio.zip\";s:3:\"uid\";s:32:\"8ef34fed7cda3055b56f18510439f363\";s:3:\"img\";s:18:\"dark_portfolio.jpg\";s:7:\"preview\";s:76:\"https://essential.themepunch.com/template_library/dark-portfolio-photo-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:74:\"<div class=\"hcap\">Custom Row Grid<br/>Red Hovers<br/>Read More Badge</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:16:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:10:\"My YouTube\";s:5:\"alias\";s:10:\"my-youtube\";s:3:\"zip\";s:14:\"my-youtube.zip\";s:3:\"uid\";s:32:\"7f118ae4b11b24445fe533cc96763e94\";s:3:\"img\";s:14:\"my_youtube.jpg\";s:7:\"preview\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-playlist/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:6:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:7:\"streams\";i:4;s:15:\"variablecolumns\";i:5;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:16:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:12:\"My YouTube 2\";s:5:\"alias\";s:12:\"my-youtube-2\";s:3:\"zip\";s:16:\"my-youtube-2.zip\";s:3:\"uid\";s:32:\"bd4ce42cbad845ee3f6d295f14224a00\";s:3:\"img\";s:16:\"my_youtube_2.jpg\";s:7:\"preview\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-2-player/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:8:\"loadmore\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";i:3;s:15:\"variablecolumns\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 13:51:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:16:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:8:\"My Vimeo\";s:5:\"alias\";s:8:\"my-vimeo\";s:3:\"zip\";s:12:\"my-vimeo.zip\";s:3:\"uid\";s:32:\"d0235dd2ccce6602197882e423d32b88\";s:3:\"img\";s:12:\"my_vimeo.jpg\";s:7:\"preview\";s:68:\"https://essential.themepunch.com/template_library/my-vimeo-playlist/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:59:\"Please clear the stream cache<br> \r\nwhen you apply changes.\";s:6:\"filter\";a:4:{i:0;s:8:\"loadmore\";i:1;s:7:\"streams\";i:2;s:15:\"variablecolumns\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:16:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:12:\"My Instagram\";s:5:\"alias\";s:12:\"my-instagram\";s:3:\"zip\";s:16:\"my-instagram.zip\";s:3:\"uid\";s:32:\"58ced5a252fa1998a8cdb95ee2cd01d8\";s:3:\"img\";s:16:\"my-instagram.jpg\";s:7:\"preview\";s:72:\"https://essential.themepunch.com/template_library/instagram-grid-photos/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:76:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Pagination<br>Shape hover</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:4:{i:0;s:7:\"masonry\";i:1;s:10:\"pagination\";i:2;s:7:\"streams\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:16\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:16:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:14:\"My Instagram 2\";s:5:\"alias\";s:14:\"my-instagram-2\";s:3:\"zip\";s:18:\"my-instagram-2.zip\";s:3:\"uid\";s:32:\"f5094a245731501bc553295ee5582a04\";s:3:\"img\";s:18:\"my-instagram-2.jpg\";s:7:\"preview\";s:79:\"https://essential.themepunch.com/template_library/my-instagram-2-funky-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Pagination<br>Shape animation hover</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:7:\"masonry\";i:1;s:10:\"pagination\";i:2;s:7:\"streams\";i:3;s:15:\"variablecolumns\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:07\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:16:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:16:\"My Handmade Blog\";s:5:\"alias\";s:16:\"my-handmade-blog\";s:3:\"zip\";s:15:\"my-handmade.zip\";s:3:\"uid\";s:32:\"162fa8de74410bb015f86cb4a7e7ef6c\";s:3:\"img\";s:15:\"my-handmade.jpg\";s:7:\"preview\";s:81:\"https://essential.themepunch.com/template_library/my-handmade-blog-post-overview/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:88:\"<div class=\"hcap\">Custom Row Grid<br/>Dark Hover<br/>Social Button<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:2:{i:0;s:12:\"nonavigation\";i:1;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:58\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:16:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:15:\"Furniture Store\";s:5:\"alias\";s:15:\"furniture-store\";s:3:\"zip\";s:28:\"furniture_store_complete.zip\";s:3:\"uid\";s:32:\"6a1d870475b15c3fbdad65edbcadd56a\";s:3:\"img\";s:19:\"furniture-store.jpg\";s:7:\"preview\";s:51:\"https://essential.themepunch.com/price-tables-ford/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:85:\"<div class=\"hcap\">Custom Row Grid<br/>Lightbox for Detail Grids<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:103:\"5MB Download File<br>\r\nImports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:9:\"newupdate\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-09 14:26:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:16:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:12:\"Denis Savard\";s:5:\"alias\";s:12:\"denis-savard\";s:3:\"zip\";s:16:\"denis-savard.zip\";s:3:\"uid\";s:32:\"9ce04544808c29a3b251f92954c4cfb3\";s:3:\"img\";s:16:\"denis-savard.jpg\";s:7:\"preview\";s:76:\"https://essential.themepunch.com/template_library/denis-savard-logo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:81:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:47\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:16:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:14:\"Dale Hawerchuk\";s:5:\"alias\";s:14:\"Dale Hawerchuk\";s:3:\"zip\";s:18:\"dale-hawerchuk.zip\";s:3:\"uid\";s:32:\"4c0bccc86e570cb89b6fc6a3b480acc3\";s:3:\"img\";s:18:\"dale-hawerchuk.jpg\";s:7:\"preview\";s:80:\"https://essential.themepunch.com/template_library/dale-hawerchuk-flickr-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:89:\"<div class=\"hcap\">Even Grid<br/>Dark Hover<br/>Stylish<br/>flickr Source (variable)</div>\";s:11:\"setup_notes\";s:98:\"Template was built with flickr Source,<br/>\r\neither add flickr API key or<br/>\r\nchange source type\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:39\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:16:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:14:\"Bernie Federko\";s:5:\"alias\";s:14:\"bernie-federko\";s:3:\"zip\";s:18:\"bernie-federko.zip\";s:3:\"uid\";s:32:\"f61204a7be405bc1f8f801fe346d0c13\";s:3:\"img\";s:17:\"berni-federko.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/bernie-federko-portfolio-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:101:\"<div class=\"hcap\">Custom Row Grid<br/>Tooltip Hover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:7:\"clients\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:31\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:16:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:16:\"Bernie Federko 2\";s:5:\"alias\";s:16:\"bernie-federko-2\";s:3:\"zip\";s:20:\"bernie-federko-2.zip\";s:3:\"uid\";s:32:\"8646eefad5b1446954e16e7c0aa1e087\";s:3:\"img\";s:20:\"bernie-federko-2.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/bernie-federko-2-portfolio-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:99:\"<div class=\"hcap\">Custom Row Grid<br/>Funky Hover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:7:\"clients\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:23\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:16:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:6:\"Wilson\";s:5:\"alias\";s:13:\"woodrowwilson\";s:3:\"zip\";s:17:\"woodrowwilson.zip\";s:3:\"uid\";s:32:\"39d28845e10f32a759a27cdacba84693\";s:3:\"img\";s:10:\"wilson.jpg\";s:7:\"preview\";s:94:\"https://essential.themepunch.com/template_library/wilson-stylish-light-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:78:\"<div class=\"hcap\">Variable Columns<br/>Clean Hover<br/>Filter/Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-15 10:51:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:16:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:12:\"Honus Wagner\";s:5:\"alias\";s:12:\"honus_wagner\";s:3:\"zip\";s:16:\"honus_wagner.zip\";s:3:\"uid\";s:32:\"460d8adc56999b662544efc5eef707b5\";s:3:\"img\";s:16:\"honus_wagner.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/honus-wagner-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Masonry Blog Style<br/>Minimal Hover<br/>Filters<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:9:\"newupdate\";i:3;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 16:08:50\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:16:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:9:\"Babe Ruth\";s:5:\"alias\";s:9:\"babe_ruth\";s:3:\"zip\";s:13:\"babe_ruth.zip\";s:3:\"uid\";s:32:\"83fb845082470890ca3d1096e1f971c4\";s:3:\"img\";s:13:\"babe_ruth.jpg\";s:7:\"preview\";s:92:\"https://essential.themepunch.com/template_library/babe-ruth-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Full Width 1:1 Grid<br/>Clean White Hover<br/>Grayscale Filter</div>\";s:11:\"setup_notes\";s:228:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:2:{i:0;s:4:\"even\";i:1;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 16:22:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:16:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:19:\"Dark Post Blog Grid\";s:5:\"alias\";s:14:\"dark_post_grid\";s:3:\"zip\";s:18:\"dark_post_grid.zip\";s:3:\"uid\";s:32:\"a421dd24c6d1b485b87938a6a5309fe3\";s:3:\"img\";s:13:\"dark_post.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/dark-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:72:\"<div class=\"hcap\">Even Grid<br/>Dark Hover<br/>Fancy<br/>Post Grid</div>\";s:11:\"setup_notes\";s:219:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nActivate Stroke Icons in Global Options or change icons.\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 16:14:59\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}}','no'),(212,'widget_ess-grid-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(213,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(214,'revslider_server_refresh','1568356222','yes'),(215,'revslider-update-check-short','1568356240','yes'),(216,'revslider-templates-check','1568356240','yes'),(217,'revslider-library-check','1568356259','yes'),(218,'revslider_checktables','1','yes'),(219,'rs_tables_created','1','yes'),(220,'revslider_table_version','1.0.6','yes'),(221,'revslider-global-settings','a:0:{}','yes'),(222,'revslider_update_version','5.2.5.5','yes'),(223,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(224,'tg_grid_db_version','1','yes'),(227,'vc_version','6.0.5','yes'),(231,'acf_version','5.8.4','yes'),(233,'tp_eg_valid-notice','false','yes'),(234,'tg_admin_notices','a:2:{i:0;b:0;s:23:\"tg-wpgridbuilder-notice\";b:1;}','yes'),(236,'cornerstone_version','3.5.5','yes'),(238,'x_stack','ethos','yes'),(239,'x_integrity_design','light','yes'),(240,'x_integrity_topbar_transparency_enable','0','yes'),(241,'x_integrity_navbar_transparency_enable','0','yes'),(242,'x_integrity_footer_transparency_enable','0','yes'),(243,'x_integrity_blog_header_enable','1','yes'),(244,'x_integrity_blog_title','The Blog','yes'),(245,'x_integrity_blog_subtitle','Welcome to our little corner of the Internet. Kick your feet up and stay a while.','yes'),(246,'x_integrity_portfolio_archive_sort_button_text','Sort Portfolio','yes'),(247,'x_integrity_portfolio_archive_post_sharing_enable','','yes'),(248,'x_renew_topbar_background','#1f2c39','yes'),(249,'x_renew_logobar_background','#2c3e50','yes'),(250,'x_renew_navbar_background','#2c3e50','yes'),(251,'x_renew_navbar_button_color','#ffffff','yes'),(252,'x_renew_navbar_button_background','#3e5771','yes'),(253,'x_renew_navbar_button_background_hover','#476481','yes'),(254,'x_renew_footer_background','#2c3e50','yes'),(255,'x_renew_topbar_text_color','#ffffff','yes'),(256,'x_renew_topbar_link_color_hover','#959baf','yes'),(257,'x_renew_footer_text_color','#ffffff','yes'),(258,'x_renew_blog_title','The Blog','yes'),(259,'x_renew_entry_icon_color','#dddddd','yes'),(260,'x_renew_entry_icon_position','standard','yes'),(261,'x_renew_entry_icon_position_horizontal','18','yes'),(262,'x_renew_entry_icon_position_vertical','25','yes'),(263,'x_icon_post_standard_colors_enable','','yes'),(264,'x_icon_post_standard_color','#d1f2eb','yes'),(265,'x_icon_post_standard_background','#16a085','yes'),(266,'x_icon_post_image_colors_enable','','yes'),(267,'x_icon_post_image_color','#d1eedd','yes'),(268,'x_icon_post_image_background','#27ae60','yes'),(269,'x_icon_post_gallery_colors_enable','','yes'),(270,'x_icon_post_gallery_color','#d1eedd','yes'),(271,'x_icon_post_gallery_background','#27ae60','yes'),(272,'x_icon_post_video_colors_enable','','yes'),(273,'x_icon_post_video_color','#e9daef','yes'),(274,'x_icon_post_video_background','#8e44ad','yes'),(275,'x_icon_post_audio_colors_enable','','yes'),(276,'x_icon_post_audio_color','#cfd4d9','yes'),(277,'x_icon_post_audio_background','#2c3e50','yes'),(278,'x_icon_post_quote_colors_enable','','yes'),(279,'x_icon_post_quote_color','#fcf2c8','yes'),(280,'x_icon_post_quote_background','#f1c40f','yes'),(281,'x_icon_post_link_colors_enable','','yes'),(282,'x_icon_post_link_color','#f9d0cc','yes'),(283,'x_icon_post_link_background','#c0392b','yes'),(284,'x_ethos_topbar_background','#2d2727','yes'),(285,'x_ethos_navbar_background','rgba(218, 218, 216, 0.77)','yes'),(286,'x_ethos_sidebar_widget_headings_color','#333333','yes'),(287,'x_ethos_sidebar_color','#8e8e8e','yes'),(288,'x_ethos_post_carousel_enable','','yes'),(289,'x_ethos_post_carousel_count','6','yes'),(290,'x_ethos_post_carousel_display','featured','yes'),(291,'x_ethos_post_carousel_display_count_extra_large','5','yes'),(292,'x_ethos_post_carousel_display_count_large','4','yes'),(293,'x_ethos_post_carousel_display_count_medium','3','yes'),(294,'x_ethos_post_carousel_display_count_small','2','yes'),(295,'x_ethos_post_carousel_display_count_extra_small','1','yes'),(296,'x_ethos_post_slider_blog_enable','','yes'),(297,'x_ethos_post_slider_blog_height','425','yes'),(298,'x_ethos_post_slider_blog_count','5','yes'),(299,'x_ethos_post_slider_blog_display','featured','yes'),(300,'x_ethos_post_slider_archive_enable','','yes'),(301,'x_ethos_post_slider_archive_height','425','yes'),(302,'x_ethos_post_slider_archive_count','5','yes'),(303,'x_ethos_post_slider_archive_display','random','yes'),(304,'x_ethos_filterable_index_enable','','yes'),(305,'x_ethos_filterable_index_categories','3,4,5,6','yes'),(306,'x_layout_site','full-width','yes'),(307,'x_layout_site_max_width','1200','yes'),(308,'x_layout_site_width','88','yes'),(309,'x_layout_content','full-width','yes'),(310,'x_layout_content_width','72','yes'),(311,'x_layout_sidebar_width','250','yes'),(312,'x_design_bg_color','#ffffff','yes'),(313,'x_design_bg_image_pattern','//theme.co/media/neutral1.png','yes'),(314,'x_design_bg_image_full','','yes'),(315,'x_design_bg_image_full_fade','750','yes'),(316,'x_google_fonts_subsets','1','yes'),(317,'x_google_fonts_subset_cyrillic','0','yes'),(318,'x_google_fonts_subset_greek','0','yes'),(319,'x_google_fonts_subset_vietnamese','0','yes'),(320,'x_body_font_family','Lato','yes'),(321,'x_body_font_color','rgb(0, 0, 0)','yes'),(322,'x_body_font_size','14','yes'),(323,'x_content_font_size','21','yes'),(324,'x_body_font_weight','300','yes'),(325,'x_headings_font_family','Merriweather','yes'),(326,'x_headings_font_color','rgb(0, 0, 0)','yes'),(327,'x_headings_font_weight','400','yes'),(328,'x_h1_letter_spacing','0.043','yes'),(329,'x_h2_letter_spacing','0.06','yes'),(330,'x_h3_letter_spacing','0.075','yes'),(331,'x_h4_letter_spacing','0.1','yes'),(332,'x_h5_letter_spacing','0.114','yes'),(333,'x_h6_letter_spacing','0.171','yes'),(334,'x_headings_uppercase_enable','','yes'),(335,'x_headings_widget_icons_enable','','yes'),(336,'x_site_link_color','#a23ef9','yes'),(337,'x_site_link_color_hover','#6615b2','yes'),(338,'x_button_style','transparent','yes'),(339,'x_button_shape','rounded','yes'),(340,'x_button_size','regular','yes'),(341,'x_button_color','#ffffff','yes'),(342,'x_button_background_color','#a23ef9','yes'),(343,'x_button_border_color','rgb(208, 201, 159)','yes'),(344,'x_button_bottom_color','#a71000','yes'),(345,'x_button_color_hover','#ffffff','yes'),(346,'x_button_background_color_hover','#6615b2','yes'),(347,'x_button_border_color_hover','rgb(208, 201, 159)','yes'),(348,'x_button_bottom_color_hover','#a71000','yes'),(349,'x_navbar_positioning','fixed-top','yes'),(350,'x_logo_navigation_layout','inline','yes'),(351,'x_logobar_adjust_spacing_top','15','yes'),(352,'x_logobar_adjust_spacing_bottom','15','yes'),(353,'x_navbar_height','60','yes'),(354,'x_navbar_width','235','yes'),(355,'x_logo_font_family','Lato','yes'),(356,'x_logo_font_color','rgb(255, 255, 255)','yes'),(357,'x_logo_font_size','36','yes'),(358,'x_logo_font_weight','300','yes'),(359,'x_logo_letter_spacing','0','yes'),(360,'x_logo_uppercase_enable','1','yes'),(361,'x_logo','http://wpdistillery.vm/wp-content/uploads/2019/09/logo_ambiances.svg','yes'),(362,'x_logo_width','','yes'),(363,'x_logo_adjust_navbar_top','10','yes'),(364,'x_logo_adjust_navbar_side','30','yes'),(365,'x_navbar_font_family','Lato','yes'),(366,'x_navbar_link_color','rgb(164, 164, 164)','yes'),(367,'x_navbar_link_color_hover','rgb(0, 157, 225)','yes'),(368,'x_navbar_font_size','14','yes'),(369,'x_navbar_font_weight','400','yes'),(370,'x_navbar_letter_spacing','0','yes'),(371,'x_navbar_uppercase_enable','1','yes'),(372,'x_navbar_adjust_links_top','18','yes'),(373,'x_navbar_adjust_links_top_spacing','24','yes'),(374,'x_navbar_adjust_links_side','50','yes'),(375,'x_header_search_enable','','yes'),(376,'x_navbar_adjust_button_size','24','yes'),(377,'x_navbar_adjust_button','17','yes'),(378,'x_header_widget_areas','0','yes'),(379,'x_widgetbar_button_background','#000000','yes'),(380,'x_widgetbar_button_background_hover','#444444','yes'),(381,'x_topbar_display','','yes'),(382,'x_topbar_content','TRENDING: 99% Discount On Armani Suits | <a href=\"#\">TELL ME MORE</a>','yes'),(383,'x_breadcrumb_display','1','yes'),(384,'x_footer_widget_areas','0','yes'),(385,'x_footer_bottom_display','','yes'),(386,'x_footer_menu_display','','yes'),(387,'x_footer_social_display','','yes'),(388,'x_footer_content_display','','yes'),(389,'x_footer_content','','yes'),(390,'x_footer_scroll_top_display','1','yes'),(391,'x_footer_scroll_top_position','right','yes'),(392,'x_footer_scroll_top_display_unit','75','yes'),(393,'x_blog_style','masonry','yes'),(394,'x_blog_layout','full-width','yes'),(395,'x_blog_masonry_columns','3','yes'),(396,'x_archive_style','masonry','yes'),(397,'x_archive_layout','full-width','yes'),(398,'x_archive_masonry_columns','2','yes'),(399,'x_blog_enable_post_meta','1','yes'),(400,'x_blog_enable_full_post_content','','yes'),(401,'x_blog_excerpt_length','30','yes'),(402,'x_custom_portfolio_slug','portfolio-item','yes'),(403,'x_portfolio_enable_cropped_thumbs','','yes'),(404,'x_portfolio_enable_post_meta','','yes'),(405,'x_portfolio_tag_title','','yes'),(406,'x_portfolio_launch_project_title','','yes'),(407,'x_portfolio_launch_project_button_text','','yes'),(408,'x_portfolio_share_project_title','','yes'),(409,'x_portfolio_enable_facebook_sharing','1','yes'),(410,'x_portfolio_enable_twitter_sharing','1','yes'),(411,'x_portfolio_enable_google_plus_sharing','','yes'),(412,'x_portfolio_enable_linkedin_sharing','','yes'),(413,'x_portfolio_enable_pinterest_sharing','1','yes'),(414,'x_portfolio_enable_reddit_sharing','','yes'),(415,'x_portfolio_enable_email_sharing','1','yes'),(416,'x_social_facebook','#holder','yes'),(417,'x_social_twitter','#holder','yes'),(418,'x_social_googleplus','#holder','yes'),(419,'x_social_linkedin','','yes'),(420,'x_social_xing','','yes'),(421,'x_social_foursquare','','yes'),(422,'x_social_youtube','','yes'),(423,'x_social_vimeo','','yes'),(424,'x_social_instagram','','yes'),(425,'x_social_pinterest','','yes'),(426,'x_social_dribbble','','yes'),(427,'x_social_behance','','yes'),(428,'x_social_tumblr','','yes'),(429,'x_social_rss','','yes'),(430,'x_icon_favicon','','yes'),(431,'x_icon_touch','','yes'),(432,'x_icon_tile','','yes'),(433,'x_icon_tile_bg_color','#ffffff','yes'),(434,'x_custom_styles','.x-brand{ \n color : #F03F35;\n}\n.x-navbar-inner{\n background: #B7E3E4;\n}\n.x-breadcrumbs {\n display: none;\n}\n.p-meta {\n display : none;\n}\n\n.entry-title {\n font-family: \'Montserrat\', sans-serif;\n font-weight: 300;\n text-transform: uppercase;\n font-size: 445%!important;\n margin-bottom: 0.4em;\n}\n\n.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a {\n box-shadow: 0 2px 0 0 #F03F35;\n}\n\n.x-header-landmark {\n display: none;\n}\n.x-brand > img {\n margin-bottom : 6px;\n}','yes'),(435,'x_custom_scripts','','yes'),(452,'portfolio-category_children','a:0:{}','yes'),(460,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(461,'media-category_children','a:0:{}','yes'),(500,'the_grid_new','1','yes'),(503,'recently_activated','a:0:{}','yes'),(517,'wbcr_io_image_optimization_server','server_4','yes'),(518,'wbcr_io_backup_origin_images','1','yes'),(519,'wbcr_io_save_exif_data','1','yes'),(520,'wbcr_io_db_version','2','yes'),(521,'wbcr_io_plugin_activated','1566711162','yes'),(522,'wbcr_io_plugin_version','1.4.0','yes'),(523,'the_seo_framework_tested_upgrade_version','4000','yes'),(524,'autodescription-updates-cache','a:1:{s:26:\"check_seo_plugin_conflicts\";i:0;}','yes'),(525,'the_seo_framework_initial_db_version','3104','no'),(526,'autodescription-site-settings','a:114:{s:18:\"alter_search_query\";i:1;s:19:\"alter_archive_query\";i:1;s:24:\"alter_archive_query_type\";s:8:\"in_query\";s:23:\"alter_search_query_type\";s:8:\"in_query\";s:17:\"cache_meta_schema\";i:0;s:13:\"cache_sitemap\";i:1;s:12:\"cache_object\";i:1;s:22:\"display_seo_bar_tables\";i:1;s:23:\"display_seo_bar_metabox\";i:0;s:21:\"display_pixel_counter\";i:1;s:25:\"display_character_counter\";i:1;s:16:\"canonical_scheme\";s:9:\"automatic\";s:17:\"timestamps_format\";s:1:\"1\";s:19:\"disabled_post_types\";a:0:{}s:15:\"title_separator\";s:4:\"pipe\";s:14:\"title_location\";s:5:\"right\";s:19:\"title_rem_additions\";i:0;s:18:\"title_rem_prefixes\";i:0;s:16:\"title_strip_tags\";i:1;s:16:\"auto_description\";i:1;s:16:\"category_noindex\";i:0;s:11:\"tag_noindex\";i:0;s:14:\"author_noindex\";i:0;s:12:\"date_noindex\";i:1;s:14:\"search_noindex\";i:1;s:18:\"attachment_noindex\";i:1;s:12:\"site_noindex\";i:0;s:18:\"noindex_post_types\";a:1:{s:10:\"attachment\";i:1;}s:17:\"category_nofollow\";i:0;s:12:\"tag_nofollow\";i:0;s:15:\"author_nofollow\";i:0;s:13:\"date_nofollow\";i:0;s:15:\"search_nofollow\";i:0;s:19:\"attachment_nofollow\";i:0;s:13:\"site_nofollow\";i:0;s:19:\"nofollow_post_types\";a:0:{}s:18:\"category_noarchive\";i:0;s:13:\"tag_noarchive\";i:0;s:16:\"author_noarchive\";i:0;s:14:\"date_noarchive\";i:0;s:16:\"search_noarchive\";i:0;s:20:\"attachment_noarchive\";i:0;s:14:\"site_noarchive\";i:0;s:20:\"noarchive_post_types\";a:0:{}s:13:\"paged_noindex\";i:1;s:18:\"home_paged_noindex\";i:0;s:16:\"homepage_noindex\";i:0;s:17:\"homepage_nofollow\";i:0;s:18:\"homepage_noarchive\";i:0;s:14:\"homepage_title\";s:0:\"\";s:16:\"homepage_tagline\";i:1;s:20:\"homepage_description\";s:0:\"\";s:22:\"homepage_title_tagline\";s:0:\"\";s:19:\"home_title_location\";s:5:\"right\";s:17:\"homepage_og_title\";s:0:\"\";s:23:\"homepage_og_description\";s:0:\"\";s:22:\"homepage_twitter_title\";s:0:\"\";s:28:\"homepage_twitter_description\";s:0:\"\";s:25:\"homepage_social_image_url\";s:0:\"\";s:24:\"homepage_social_image_id\";i:0;s:13:\"shortlink_tag\";i:0;s:15:\"prev_next_posts\";i:1;s:18:\"prev_next_archives\";i:1;s:19:\"prev_next_frontpage\";i:1;s:18:\"facebook_publisher\";s:0:\"\";s:15:\"facebook_author\";s:0:\"\";s:14:\"facebook_appid\";s:0:\"\";s:17:\"post_publish_time\";i:1;s:16:\"post_modify_time\";i:1;s:12:\"twitter_card\";s:19:\"summary_large_image\";s:12:\"twitter_site\";s:0:\"\";s:15:\"twitter_creator\";s:0:\"\";s:7:\"og_tags\";i:1;s:13:\"facebook_tags\";i:1;s:12:\"twitter_tags\";i:1;s:19:\"social_image_fb_url\";s:0:\"\";s:18:\"social_image_fb_id\";i:0;s:19:\"google_verification\";s:0:\"\";s:17:\"bing_verification\";s:0:\"\";s:19:\"yandex_verification\";s:0:\"\";s:17:\"pint_verification\";s:0:\"\";s:16:\"knowledge_output\";i:1;s:14:\"knowledge_type\";s:12:\"organization\";s:14:\"knowledge_logo\";i:1;s:14:\"knowledge_name\";s:0:\"\";s:18:\"knowledge_logo_url\";s:0:\"\";s:17:\"knowledge_logo_id\";i:0;s:18:\"knowledge_facebook\";s:0:\"\";s:17:\"knowledge_twitter\";s:0:\"\";s:15:\"knowledge_gplus\";s:0:\"\";s:19:\"knowledge_instagram\";s:0:\"\";s:17:\"knowledge_youtube\";s:0:\"\";s:18:\"knowledge_linkedin\";s:0:\"\";s:19:\"knowledge_pinterest\";s:0:\"\";s:20:\"knowledge_soundcloud\";s:0:\"\";s:16:\"knowledge_tumblr\";s:0:\"\";s:15:\"sitemaps_output\";i:1;s:19:\"sitemap_query_limit\";i:1200;s:17:\"sitemaps_modified\";i:1;s:17:\"sitemaps_priority\";i:0;s:15:\"sitemaps_robots\";i:1;s:11:\"ping_google\";i:1;s:9:\"ping_bing\";i:1;s:14:\"sitemap_styles\";i:1;s:12:\"sitemap_logo\";i:1;s:18:\"sitemap_color_main\";s:3:\"333\";s:20:\"sitemap_color_accent\";s:6:\"00cd98\";s:16:\"excerpt_the_feed\";i:1;s:15:\"source_the_feed\";i:1;s:17:\"ld_json_searchbox\";i:1;s:19:\"ld_json_breadcrumbs\";i:1;s:13:\"ping_use_cron\";i:1;s:15:\"seo_bar_symbols\";i:0;s:14:\"multi_og_image\";i:0;}','yes'),(527,'the_seo_framework_upgraded_db_version','4000','yes'),(531,'wbcr_io_image_optimization_level','normal','yes'),(532,'wbcr_io_image_optimization_level_custom','70','yes'),(533,'wbcr_io_auto_optimize_when_upload','1','yes'),(534,'wbcr_io_error_log','0','yes'),(535,'wbcr_io_convert_webp_format','0','yes'),(536,'wbcr_io_resize_larger','1','yes'),(537,'wbcr_io_resize_larger_w','1600','yes'),(538,'wbcr_io_resize_larger_h','1600','yes'),(539,'wbcr_io_allowed_sizes_thumbnail','thumbnail,medium','yes'),(540,'wbcr_io_image_autooptimize_shedule_time','wio_5_min','yes'),(541,'wbcr_io_image_autooptimize_items_number_per_interation','3','yes'),(542,'wbcr_io_original_size','16622063','yes'),(543,'wbcr_io_optimized_size','4922647','yes'),(595,'wp-smush-settings','a:21:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:1;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:1;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:0;s:17:\"background_images\";b:1;s:4:\"bulk\";b:0;}','yes'),(596,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1566713313;}s:5:\"queue\";a:0:{}s:4:\"done\";a:2:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1566713313;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1566715563;}i:1;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1567318113;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1568357453;}}}','no'),(597,'wp-smush-install-type','existing','no'),(598,'wp-smush-version','3.2.4','no'),(602,'envira_rest_token','28350a49cd9626d60606d8401230f76c344db2969fb43acdebe428c250f640a7','yes'),(672,'taxonomy_66','a:3:{s:13:\"archive-title\";s:0:\"\";s:16:\"archive-subtitle\";s:0:\"\";s:6:\"accent\";s:7:\"#ffffff\";}','yes'),(673,'category_children','a:0:{}','yes'),(674,'category_66','a:1:{s:19:\"the_grid_term_color\";s:0:\"\";}','yes'),(793,'smush_global_stats','a:9:{s:11:\"size_before\";i:1201627131;s:10:\"size_after\";i:1201627131;s:7:\"percent\";d:0;s:5:\"human\";s:5:\"0,0 B\";s:5:\"bytes\";i:0;s:12:\"total_images\";i:1173;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(794,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";s:1:\"0\";s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(795,'wp-smush-lazy_load','a:7:{s:6:\"format\";a:4:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;}','yes'),(796,'skip-smush-setup','1','yes'),(798,'wp-smush-hide_smush_welcome','1','no'),(799,'wp-smush-image_sizes','a:14:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:5:\"large\";i:3;s:14:\"the_grid_size1\";i:4;s:14:\"the_grid_size2\";i:5;s:14:\"the_grid_size3\";i:6;s:14:\"the_grid_size4\";i:7;s:14:\"the_grid_size5\";i:8;s:14:\"post-thumbnail\";i:9;s:5:\"entry\";i:10;s:13:\"entry-cropped\";i:11;s:15:\"entry-fullwidth\";i:12;s:23:\"entry-cropped-fullwidth\";i:13;s:12:\"medium_large\";}','yes'),(800,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;}','yes'),(1095,'emr_news','1','yes'),(1171,'x_enable_font_manager','','yes'),(1289,'essential-connection','1','yes'),(1290,'essential-notices','a:3:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:3:\"2.1\";s:4:\"text\";s:293:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340#item-description__version-2-1-5-artemis-26th-june-2017\" target=\"_blank\"><img src=\"//updates.themepunch.tools/banners/essential_grid_updatenow_215.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"EssGrid 2.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPEG215-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"2.2.9\";s:4:\"text\";s:341:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340?ref=themepunch\" target=\"_blank\"><img src=\"//updates.themepunch.tools/banners/essential_grid_updatenow_23.jpg\" srcset=\"//updates.themepunch.tools/banners/[email protected]\" style=\"width:817px;min-width: 50%; max-width:100%\" alt=\"EssGrid 2.3 is out\" ></a>\";s:4:\"code\";s:9:\"TPEG23-00\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":7:{s:7:\"version\";s:3:\"2.3\";s:4:\"text\";s:343:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340?ref=themepunch\" target=\"_blank\"><img src=\"//updates.themepunch.tools/banners/essential_grid_updatenow_231.jpg\" srcset=\"//updates.themepunch.tools/banners/[email protected]\" style=\"width:817px;min-width: 50%; max-width:100%\" alt=\"EssGrid 2.3 is out\" ></a>\";s:4:\"code\";s:9:\"TPEG23-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}','yes'),(1291,'essential-dashboard','O:8:\"stdClass\":1:{s:11:\"test-handle\";O:8:\"stdClass\":5:{s:12:\"version_from\";s:5:\"1.0.0\";s:10:\"version_to\";s:5:\"1.0.0\";s:5:\"order\";i:5;s:7:\"content\";s:181:\"<div class=\"rs-dash-widget\"><div class=\"rs-dash-title-wrap\"><div class=\"rs-dash-title\">your version is: {{current_version}}</div></div><div class=\"rs-dash-widget-inner\"></div></div>\";s:4:\"code\";s:0:\"\";}}','yes'),(1292,'tp_eg_latest-version','2.3.3','yes'),(1308,'revslider-connection','1','yes'),(1309,'revslider-latest-version','6.1.1','yes'),(1310,'revslider-stable-version','4.2','yes'),(1311,'revslider-notices','a:1:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.9.9\";s:4:\"text\";s:478:\"<div style=\"width: 1000px; height: 390px;\"><a href=\"https://getsliderrevolution.com\" target=\"_blank\" style=\"float:left;\"><img alt=\"Buy Slider Revolution 6\" src=\"//updates.themepunch-ext-b.tools/banners/rs60/sixzero_left.jpg\" width=\"670\" height=\"390\"></a><a href=\"https://youtu.be/mn5hC07aGvE\" target=\"_blank\" style=\"float:right;\"><img alt=\"Watch Slider Revolution 6 Video\" src=\"//updates.themepunch-ext-b.tools/banners/rs60/sixzero_right.jpg\" width=\"330\" height=\"390\"></a></div>\";s:4:\"code\";s:10:\"TPRS600-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}','yes'),(1312,'revslider-dashboard','a:0:{}','yes'),(1313,'revslider-addons','O:8:\"stdClass\":26:{s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:71:\"//updates.themepunch-ext-b.tools/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"1.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:61:\"//updates.themepunch-ext-b.tools/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:65:\"//updates.themepunch-ext-b.tools/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:60:\"//updates.themepunch-ext-b.tools/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:62:\"//updates.themepunch-ext-b.tools/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:68:\"//updates.themepunch-ext-b.tools/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:64:\"//updates.themepunch-ext-b.tools/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:23:\"Display images in 360°\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:65:\"//updates.themepunch-ext-b.tools/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:64:\"//updates.themepunch-ext-b.tools/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:68:\"//updates.themepunch-ext-b.tools/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}}','yes'),(1776,'folders_show_in_menu','on','yes'),(1777,'folder_redirect_status','0','yes'),(1778,'folders_settings','a:2:{i:0;s:10:\"attachment\";i:1;s:11:\"x-portfolio\";}','yes'),(1779,'folders_settings1','a:1:{s:20:\"premio_folder_option\";s:3:\"yes\";}','yes'),(1783,'selected_x-portfolio_folder_folder','','yes'),(1785,'wcp_dynamic_width_for_x-portfolio','305','yes'),(1786,'wcp_dynamic_display_status_x-portfolio','hide','yes'),(1787,'selected_media_folder_folder','','yes'),(1788,'wcp_dynamic_display_status_attachment','show','yes'),(2101,'WPLANG','fr_FR','yes'),(2102,'new_admin_email','[email protected]','yes'),(2420,'page_for_posts','0','yes'),(2780,'tadv_settings','a:10:{s:9:\"toolbar_1\";s:106:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,undo,redo\";s:9:\"toolbar_2\";s:103:\"fontselect,fontsizeselect,outdent,indent,pastetext,removeformat,charmap,wp_more,forecolor,table,wp_help\";s:9:\"toolbar_3\";s:0:\"\";s:9:\"toolbar_4\";s:0:\"\";s:21:\"toolbar_classic_block\";s:136:\"formatselect,bold,italic,blockquote,bullist,numlist,alignjustify,alignleft,aligncenter,alignright,link,forecolor,backcolor,table,wp_help\";s:13:\"toolbar_block\";s:25:\"core/image,core/underline\";s:18:\"toolbar_block_side\";s:74:\"tadv/sup,tadv/sub,core/strikethrough,core/code,tadv/removeformat,tadv/mark\";s:12:\"panels_block\";s:44:\"tadv/color-panel,tadv/background-color-panel\";s:7:\"options\";s:56:\"menubar_block,menubar,merge_toolbars,advlist,contextmenu\";s:7:\"plugins\";s:25:\"table,advlist,contextmenu\";}','yes'),(2781,'tadv_admin_settings','a:2:{s:7:\"options\";s:62:\"table_resize_bars,table_grid,table_tab_navigation,table_advtab\";s:16:\"disabled_editors\";s:0:\"\";}','yes'),(2782,'tadv_version','5210','yes'),(2794,'jetpack_activated','1','yes'),(2797,'jetpack_activation_source','a:2:{i:0;s:11:\"search-term\";i:1;s:7:\"jetpack\";}','yes'),(2798,'jetpack_options','a:2:{s:7:\"version\";s:14:\"7.6:1566974731\";s:11:\"old_version\";s:14:\"7.6:1566974731\";}','yes'),(2801,'do_activate','0','yes'),(2806,'jetpack_ab_connect_banner_green_bar','b','yes'),(2809,'jetpack_available_modules','a:1:{s:3:\"7.6\";a:43:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(2810,'jetpack_log','a:2:{i:0;a:4:{s:4:\"time\";i:1566974750;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1566974780;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(2811,'jetpack_tos_agreed','1','yes'),(2813,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:15:\"Partager&nbsp;:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(2814,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";b:0;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(2834,'jetpack_sync_settings_disable','0','yes'),(2837,'jpsq_sync-1566974869.934407-852643-1','a:6:{i:0;s:18:\"deactivated_plugin\";i:1;a:2:{i:0;s:19:\"jetpack/jetpack.php\";i:1;b:0;}i:2;i:1;i:3;d:1566974869.931333;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2838,'jpsq_sync-1566974869.941264-852643-2','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:14:\"active_plugins\";i:1;a:26:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:35:\"autodescription/autodescription.php\";i:2;s:27:\"cornerstone/cornerstone.php\";i:3;s:37:\"disable-comments/disable-comments.php\";i:4;s:33:\"duplicate-post/duplicate-post.php\";i:5;s:45:\"enable-media-replace/enable-media-replace.php\";i:6;s:33:\"envira-gallery/envira-gallery.php\";i:7;s:33:\"essential-grid/essential-grid.php\";i:8;s:67:\"favicon-by-realfavicongenerator/favicon-by-realfavicongenerator.php\";i:9;s:19:\"folders/folders.php\";i:10;s:23:\"gutenberg/gutenberg.php\";i:11;s:29:\"hide-featured-image/index.php\";i:12;s:19:\"jetpack/jetpack.php\";i:13;s:27:\"js_composer/js_composer.php\";i:14;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:15;s:23:\"revslider/revslider.php\";i:16;s:47:\"robin-image-optimizer/robin-image-optimizer.php\";i:17;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:18;s:19:\"snippet/snippet.php\";i:19;s:37:\"tco-content-dock/tco-content-dock.php\";i:20;s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";i:21;s:27:\"tco-typekit/tco-typekit.php\";i:22;s:21:\"the-grid/the-grid.php\";i:23;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:24;s:33:\"user-switching/user-switching.php\";i:25;s:23:\"wp-smushit/wp-smush.php\";}i:2;a:25:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:35:\"autodescription/autodescription.php\";i:2;s:27:\"cornerstone/cornerstone.php\";i:3;s:37:\"disable-comments/disable-comments.php\";i:4;s:33:\"duplicate-post/duplicate-post.php\";i:5;s:45:\"enable-media-replace/enable-media-replace.php\";i:6;s:33:\"envira-gallery/envira-gallery.php\";i:7;s:33:\"essential-grid/essential-grid.php\";i:8;s:67:\"favicon-by-realfavicongenerator/favicon-by-realfavicongenerator.php\";i:9;s:19:\"folders/folders.php\";i:10;s:23:\"gutenberg/gutenberg.php\";i:11;s:29:\"hide-featured-image/index.php\";i:13;s:27:\"js_composer/js_composer.php\";i:14;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:15;s:23:\"revslider/revslider.php\";i:16;s:47:\"robin-image-optimizer/robin-image-optimizer.php\";i:17;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:18;s:19:\"snippet/snippet.php\";i:19;s:37:\"tco-content-dock/tco-content-dock.php\";i:20;s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";i:21;s:27:\"tco-typekit/tco-typekit.php\";i:22;s:21:\"the-grid/the-grid.php\";i:23;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:24;s:33:\"user-switching/user-switching.php\";i:25;s:23:\"wp-smushit/wp-smush.php\";}}i:2;i:1;i:3;d:1566974869.941211;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2841,'jpsq_sync-1566974869.975786-852643-3','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"EMPTY_TRASH_DAYS\";i:1;i:30;}i:2;i:1;i:3;d:1566974869.975732;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2842,'jpsq_sync-1566974869.983675-852643-4','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:17:\"WP_POST_REVISIONS\";i:1;b:1;}i:2;i:1;i:3;d:1566974869.983605;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2843,'jpsq_sync-1566974869.992927-852643-5','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:7:\"ABSPATH\";i:1;s:16:\"/var/www/public/\";}i:2;i:1;i:3;d:1566974869.992833;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2844,'jpsq_sync-1566974870.002236-852643-6','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:14:\"WP_CONTENT_DIR\";i:1;s:26:\"/var/www/public/wp-content\";}i:2;i:1;i:3;d:1566974870.002142;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2845,'jpsq_sync-1566974870.004820-852643-7','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"JETPACK__VERSION\";i:1;s:3:\"7.6\";}i:2;i:1;i:3;d:1566974870.004734;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2846,'jpsq_sync-1566974870.013905-852643-8','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:1;i:60;}i:2;i:1;i:3;d:1566974870.01381;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2847,'jpsq_sync-1566974870.022731-852643-9','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:11:\"PHP_VERSION\";i:1;s:36:\"7.2.2-3+ubuntu17.10.1+deb.sury.org+1\";}i:2;i:1;i:3;d:1566974870.022638;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2848,'jpsq_sync-1566974870.032000-852643-10','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:15:\"WP_MEMORY_LIMIT\";i:1;s:3:\"40M\";}i:2;i:1;i:3;d:1566974870.031907;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2849,'jpsq_sync-1566974870.040360-852643-11','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1;s:4:\"256M\";}i:2;i:1;i:3;d:1566974870.040262;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2850,'jpsq_sync-1566974870.042609-852643-12','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:8:\"WP_DEBUG\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.042529;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2851,'jetpack_constants_sync_checksum','a:20:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3000812810;s:14:\"WP_CONTENT_DIR\";i:2701835540;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:2121330714;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:2767541656;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;s:8:\"WP_DEBUG\";i:734881840;}','yes'),(2852,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:4:\"http\";}','yes'),(2853,'jetpack_sync_https_history_site_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(2854,'jetpack_sync_https_history_home_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(2859,'jpsq_sync-1566974870.127111-852643-13','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"wp_max_upload_size\";i:1;i:83886080;}i:2;i:1;i:3;d:1566974870.127054;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2860,'jpsq_sync-1566974870.127878-852643-14','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:15:\"is_main_network\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.12783;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2861,'jpsq_sync-1566974870.128583-852643-15','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"is_multi_site\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.128541;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2862,'jpsq_sync-1566974870.129546-852643-16','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:17:\"main_network_site\";i:1;s:22:\"http://wpdistillery.vm\";}i:2;i:1;i:3;d:1566974870.1295;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2863,'jpsq_sync-1566974870.130853-852643-17','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"site_url\";i:1;s:22:\"http://wpdistillery.vm\";}i:2;i:1;i:3;d:1566974870.130774;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2864,'jpsq_sync-1566974870.132263-852643-18','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"home_url\";i:1;s:22:\"http://wpdistillery.vm\";}i:2;i:1;i:3;d:1566974870.132199;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2865,'jpsq_sync-1566974870.133026-852643-19','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:16:\"single_user_site\";i:1;b:1;}i:2;i:1;i:3;d:1566974870.132982;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2866,'jpsq_sync-1566974870.134049-852643-20','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:7:\"updates\";i:1;a:5:{s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:0;}}i:2;i:1;i:3;d:1566974870.134005;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2867,'jpsq_sync-1566974870.142172-852643-21','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:28:\"has_file_system_write_access\";i:1;b:1;}i:2;i:1;i:3;d:1566974870.142126;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2868,'jpsq_sync-1566974870.143116-852643-22','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:21:\"is_version_controlled\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.143078;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2869,'jpsq_sync-1566974870.151489-852643-23','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"taxonomies\";i:1;a:11:{s:8:\"category\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"category\";s:5:\"label\";s:11:\"Catégories\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:11:\"Catégories\";s:13:\"singular_name\";s:10:\"Catégorie\";s:12:\"search_items\";s:31:\"Rechercher dans les catégories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:6:\"Toutes\";s:11:\"parent_item\";s:18:\"Catégorie parente\";s:17:\"parent_item_colon\";s:21:\"Catégorie parente :\";s:9:\"edit_item\";s:22:\"Modifier la catégorie\";s:9:\"view_item\";s:18:\"Voir la catégorie\";s:11:\"update_item\";s:28:\"Mettre à jour la catégorie\";s:12:\"add_new_item\";s:31:\"Ajouter une nouvelle catégorie\";s:13:\"new_item_name\";s:29:\"Nom de la nouvelle catégorie\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:27:\"Aucune catégorie trouvée.\";s:8:\"no_terms\";s:17:\"Aucune catégorie\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des catégories\";s:10:\"items_list\";s:21:\"Liste des catégories\";s:9:\"most_used\";s:14:\"Plus utilisés\";s:13:\"back_to_items\";s:30:\"&larr; Revenir aux catégories\";s:9:\"menu_name\";s:11:\"Catégories\";s:14:\"name_admin_bar\";s:8:\"category\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:20:\"meta_box_sanitize_cb\";s:40:\"taxonomy_meta_box_sanitize_cb_checkboxes\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:15:\"edit_categories\";s:12:\"delete_terms\";s:17:\"delete_categories\";s:12:\"assign_terms\";s:17:\"assign_categories\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:1;s:7:\"ep_mask\";i:512;s:4:\"slug\";s:8:\"category\";}s:9:\"query_var\";s:13:\"category_name\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:10:\"categories\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"post_tag\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"post_tag\";s:5:\"label\";s:11:\"Étiquettes\";s:6:\"labels\";O:8:\"stdClass\":23:{s:4:\"name\";s:11:\"Étiquettes\";s:13:\"singular_name\";s:10:\"Étiquette\";s:12:\"search_items\";s:31:\"Rechercher dans les étiquettes\";s:13:\"popular_items\";s:22:\"Étiquettes populaires\";s:9:\"all_items\";s:22:\"Toutes les étiquettes\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:23:\"Modifier l’étiquette\";s:9:\"view_item\";s:19:\"Voir l’étiquette\";s:11:\"update_item\";s:29:\"Mettre à jour l’étiquette\";s:12:\"add_new_item\";s:31:\"Ajouter une nouvelle étiquette\";s:13:\"new_item_name\";s:29:\"Nom de la nouvelle étiquette\";s:26:\"separate_items_with_commas\";s:41:\"Séparez les étiquettes par des virgules\";s:19:\"add_or_remove_items\";s:34:\"Ajouter ou retirer des étiquettes\";s:21:\"choose_from_most_used\";s:49:\"Choisir parmi les étiquettes les plus utilisées\";s:9:\"not_found\";s:27:\"Aucune étiquette trouvée.\";s:8:\"no_terms\";s:17:\"Aucune étiquette\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des étiquettes\";s:10:\"items_list\";s:21:\"Liste des étiquettes\";s:9:\"most_used\";s:15:\"Plus utilisées\";s:13:\"back_to_items\";s:29:\"&larr; Retour aux étiquettes\";s:9:\"menu_name\";s:11:\"Étiquettes\";s:14:\"name_admin_bar\";s:8:\"post_tag\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:16:\"manage_post_tags\";s:10:\"edit_terms\";s:14:\"edit_post_tags\";s:12:\"delete_terms\";s:16:\"delete_post_tags\";s:12:\"assign_terms\";s:16:\"assign_post_tags\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:1024;s:4:\"slug\";s:3:\"tag\";}s:9:\"query_var\";s:3:\"tag\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:4:\"tags\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"nav_menu\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"nav_menu\";s:5:\"label\";s:19:\"Menus de navigation\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:19:\"Menus de navigation\";s:13:\"singular_name\";s:18:\"Menu de navigation\";s:12:\"search_items\";s:31:\"Rechercher dans les étiquettes\";s:13:\"popular_items\";s:22:\"Étiquettes populaires\";s:9:\"all_items\";s:19:\"Menus de navigation\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:23:\"Modifier l’étiquette\";s:9:\"view_item\";s:19:\"Voir l’étiquette\";s:11:\"update_item\";s:29:\"Mettre à jour l’étiquette\";s:12:\"add_new_item\";s:31:\"Ajouter une nouvelle étiquette\";s:13:\"new_item_name\";s:29:\"Nom de la nouvelle étiquette\";s:26:\"separate_items_with_commas\";s:41:\"Séparez les étiquettes par des virgules\";s:19:\"add_or_remove_items\";s:34:\"Ajouter ou retirer des étiquettes\";s:21:\"choose_from_most_used\";s:49:\"Choisir parmi les étiquettes les plus utilisées\";s:9:\"not_found\";s:27:\"Aucune étiquette trouvée.\";s:8:\"no_terms\";s:17:\"Aucune étiquette\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des étiquettes\";s:10:\"items_list\";s:21:\"Liste des étiquettes\";s:9:\"most_used\";s:15:\"Plus utilisées\";s:13:\"back_to_items\";s:29:\"&larr; Retour aux étiquettes\";s:9:\"menu_name\";s:19:\"Menus de navigation\";s:14:\"name_admin_bar\";s:18:\"Menu de navigation\";s:8:\"archives\";s:19:\"Menus de navigation\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:13:\"nav_menu_item\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:13:\"link_category\";O:8:\"stdClass\":24:{s:4:\"name\";s:13:\"link_category\";s:5:\"label\";s:20:\"Catégories de liens\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:20:\"Catégories de liens\";s:13:\"singular_name\";s:19:\"Catégorie de liens\";s:12:\"search_items\";s:40:\"Rechercher dans les catégories de liens\";s:13:\"popular_items\";N;s:9:\"all_items\";s:31:\"Toutes les catégories de liens\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:30:\"Modifier la catégorie de lien\";s:9:\"view_item\";s:19:\"Voir l’étiquette\";s:11:\"update_item\";s:37:\"Mettre à jour la catégorie de liens\";s:12:\"add_new_item\";s:31:\"Ajouter une catégorie de liens\";s:13:\"new_item_name\";s:38:\"Nom de la nouvelle catégorie de liens\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:27:\"Aucune étiquette trouvée.\";s:8:\"no_terms\";s:17:\"Aucune étiquette\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des étiquettes\";s:10:\"items_list\";s:21:\"Liste des étiquettes\";s:9:\"most_used\";s:15:\"Plus utilisées\";s:13:\"back_to_items\";s:39:\"&larr; Revenir aux catégories de liens\";s:9:\"menu_name\";s:20:\"Catégories de liens\";s:14:\"name_admin_bar\";s:19:\"Catégorie de liens\";s:8:\"archives\";s:31:\"Toutes les catégories de liens\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:4:\"link\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:12:\"manage_links\";s:10:\"edit_terms\";s:12:\"manage_links\";s:12:\"delete_terms\";s:12:\"manage_links\";s:12:\"assign_terms\";s:12:\"manage_links\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:11:\"post_format\";O:8:\"stdClass\":24:{s:4:\"name\";s:11:\"post_format\";s:5:\"label\";s:7:\"Formats\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:7:\"Formats\";s:13:\"singular_name\";s:6:\"Format\";s:12:\"search_items\";s:31:\"Rechercher dans les étiquettes\";s:13:\"popular_items\";s:22:\"Étiquettes populaires\";s:9:\"all_items\";s:7:\"Formats\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:23:\"Modifier l’étiquette\";s:9:\"view_item\";s:19:\"Voir l’étiquette\";s:11:\"update_item\";s:29:\"Mettre à jour l’étiquette\";s:12:\"add_new_item\";s:31:\"Ajouter une nouvelle étiquette\";s:13:\"new_item_name\";s:29:\"Nom de la nouvelle étiquette\";s:26:\"separate_items_with_commas\";s:41:\"Séparez les étiquettes par des virgules\";s:19:\"add_or_remove_items\";s:34:\"Ajouter ou retirer des étiquettes\";s:21:\"choose_from_most_used\";s:49:\"Choisir parmi les étiquettes les plus utilisées\";s:9:\"not_found\";s:27:\"Aucune étiquette trouvée.\";s:8:\"no_terms\";s:17:\"Aucune étiquette\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des étiquettes\";s:10:\"items_list\";s:21:\"Liste des étiquettes\";s:9:\"most_used\";s:15:\"Plus utilisées\";s:13:\"back_to_items\";s:29:\"&larr; Retour aux étiquettes\";s:9:\"menu_name\";s:7:\"Formats\";s:14:\"name_admin_bar\";s:6:\"Format\";s:8:\"archives\";s:7:\"Formats\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:4:\"type\";}s:9:\"query_var\";s:11:\"post_format\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:14:\"media-category\";O:8:\"stdClass\":24:{s:4:\"name\";s:14:\"media-category\";s:5:\"label\";s:10:\"Categories\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:10:\"Categories\";s:13:\"singular_name\";s:8:\"Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:18:\"Voir la catégorie\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:27:\"Aucune catégorie trouvée.\";s:8:\"no_terms\";s:17:\"Aucune catégorie\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des catégories\";s:10:\"items_list\";s:21:\"Liste des catégories\";s:9:\"most_used\";s:14:\"Plus utilisés\";s:13:\"back_to_items\";s:30:\"&larr; Revenir aux catégories\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:8:\"Category\";s:8:\"archives\";s:14:\"All Categories\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:20:\"meta_box_sanitize_cb\";s:40:\"taxonomy_meta_box_sanitize_cb_checkboxes\";s:11:\"object_type\";a:1:{i:0;s:10:\"attachment\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:14:\"media-category\";}s:9:\"query_var\";s:14:\"media-category\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}s:9:\"media-tag\";O:8:\"stdClass\":24:{s:4:\"name\";s:9:\"media-tag\";s:5:\"label\";s:4:\"Tags\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:22:\"Étiquettes populaires\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";s:10:\"Parent Tag\";s:17:\"parent_item_colon\";s:11:\"Parent Tag:\";s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:19:\"Voir l’étiquette\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:41:\"Séparez les étiquettes par des virgules\";s:19:\"add_or_remove_items\";s:34:\"Ajouter ou retirer des étiquettes\";s:21:\"choose_from_most_used\";s:49:\"Choisir parmi les étiquettes les plus utilisées\";s:9:\"not_found\";s:27:\"Aucune étiquette trouvée.\";s:8:\"no_terms\";s:17:\"Aucune étiquette\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des étiquettes\";s:10:\"items_list\";s:21:\"Liste des étiquettes\";s:9:\"most_used\";s:15:\"Plus utilisées\";s:13:\"back_to_items\";s:29:\"&larr; Retour aux étiquettes\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:3:\"Tag\";s:8:\"archives\";s:8:\"All Tags\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:10:\"attachment\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:9:\"media-tag\";}s:9:\"query_var\";s:9:\"media-tag\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}s:13:\"portfolio-tag\";O:8:\"stdClass\":24:{s:4:\"name\";s:13:\"portfolio-tag\";s:5:\"label\";s:14:\"Portfolio Tags\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:14:\"Portfolio Tags\";s:13:\"singular_name\";s:13:\"Portfolio Tag\";s:12:\"search_items\";s:21:\"Search Portfolio Tags\";s:13:\"popular_items\";s:22:\"Popular Portfolio Tags\";s:9:\"all_items\";s:18:\"All Portfolio Tags\";s:11:\"parent_item\";s:20:\"Parent Portfolio Tag\";s:17:\"parent_item_colon\";s:21:\"Parent Portfolio Tag:\";s:9:\"edit_item\";s:18:\"Edit Portfolio Tag\";s:9:\"view_item\";s:19:\"Voir l’étiquette\";s:11:\"update_item\";s:20:\"Update Portfolio Tag\";s:12:\"add_new_item\";s:21:\"Add New Portfolio Tag\";s:13:\"new_item_name\";s:22:\"New Portfolio Tag Name\";s:26:\"separate_items_with_commas\";s:35:\"Separate portfolio tags with commas\";s:19:\"add_or_remove_items\";s:28:\"Add or remove portfolio tags\";s:21:\"choose_from_most_used\";s:40:\"Choose from the most used portfolio tags\";s:9:\"not_found\";s:27:\"Aucune étiquette trouvée.\";s:8:\"no_terms\";s:17:\"Aucune étiquette\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des étiquettes\";s:10:\"items_list\";s:21:\"Liste des étiquettes\";s:9:\"most_used\";s:15:\"Plus utilisées\";s:13:\"back_to_items\";s:29:\"&larr; Retour aux étiquettes\";s:9:\"menu_name\";s:14:\"Portfolio Tags\";s:14:\"name_admin_bar\";s:13:\"Portfolio Tag\";s:8:\"archives\";s:18:\"All Portfolio Tags\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:20:\"meta_box_sanitize_cb\";s:35:\"taxonomy_meta_box_sanitize_cb_input\";s:11:\"object_type\";a:1:{i:0;s:11:\"x-portfolio\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:0;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:18:\"portfolio-item-tag\";}s:9:\"query_var\";s:13:\"portfolio-tag\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}s:18:\"portfolio-category\";O:8:\"stdClass\":24:{s:4:\"name\";s:18:\"portfolio-category\";s:5:\"label\";s:20:\"Portfolio Categories\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:20:\"Portfolio Categories\";s:13:\"singular_name\";s:18:\"Portfolio Category\";s:12:\"search_items\";s:27:\"Search Portfolio Categories\";s:13:\"popular_items\";s:28:\"Popular Portfolio Categories\";s:9:\"all_items\";s:24:\"All Portfolio Categories\";s:11:\"parent_item\";s:25:\"Parent Portfolio Category\";s:17:\"parent_item_colon\";s:26:\"Parent Portfolio Category:\";s:9:\"edit_item\";s:23:\"Edit Portfolio Category\";s:9:\"view_item\";s:18:\"Voir la catégorie\";s:11:\"update_item\";s:25:\"Update Portfolio Category\";s:12:\"add_new_item\";s:26:\"Add New Portfolio Category\";s:13:\"new_item_name\";s:27:\"New Portfolio Category Name\";s:26:\"separate_items_with_commas\";s:41:\"Separate portfolio categories with commas\";s:19:\"add_or_remove_items\";s:34:\"Add or remove portfolio categories\";s:21:\"choose_from_most_used\";s:46:\"Choose from the most used portfolio categories\";s:9:\"not_found\";s:27:\"Aucune catégorie trouvée.\";s:8:\"no_terms\";s:17:\"Aucune catégorie\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des catégories\";s:10:\"items_list\";s:21:\"Liste des catégories\";s:9:\"most_used\";s:14:\"Plus utilisés\";s:13:\"back_to_items\";s:30:\"&larr; Revenir aux catégories\";s:9:\"menu_name\";s:20:\"Portfolio Categories\";s:14:\"name_admin_bar\";s:18:\"Portfolio Category\";s:8:\"archives\";s:24:\"All Portfolio Categories\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:20:\"meta_box_sanitize_cb\";s:40:\"taxonomy_meta_box_sanitize_cb_checkboxes\";s:11:\"object_type\";a:1:{i:0;s:11:\"x-portfolio\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:0;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:23:\"portfolio-item-category\";}s:9:\"query_var\";s:18:\"portfolio-category\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}s:12:\"media_folder\";O:8:\"stdClass\":24:{s:4:\"name\";s:12:\"media_folder\";s:5:\"label\";s:7:\"Folders\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:7:\"Folders\";s:13:\"singular_name\";s:6:\"Folder\";s:12:\"search_items\";s:14:\"Search Folders\";s:13:\"popular_items\";N;s:9:\"all_items\";s:11:\"All Folders\";s:11:\"parent_item\";s:13:\"Parent Folder\";s:17:\"parent_item_colon\";s:21:\"Catégorie parente :\";s:9:\"edit_item\";s:11:\"Edit Folder\";s:9:\"view_item\";s:18:\"Voir la catégorie\";s:11:\"update_item\";s:13:\"Update Folder\";s:12:\"add_new_item\";s:14:\"Add New Folder\";s:13:\"new_item_name\";s:15:\"Add Folder Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:27:\"Aucune catégorie trouvée.\";s:8:\"no_terms\";s:17:\"Aucune catégorie\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des catégories\";s:10:\"items_list\";s:21:\"Liste des catégories\";s:9:\"most_used\";s:14:\"Plus utilisés\";s:13:\"back_to_items\";s:30:\"&larr; Revenir aux catégories\";s:9:\"menu_name\";s:7:\"Folders\";s:14:\"name_admin_bar\";s:6:\"Folder\";s:8:\"archives\";s:11:\"All Folders\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:20:\"meta_box_sanitize_cb\";s:40:\"taxonomy_meta_box_sanitize_cb_checkboxes\";s:11:\"object_type\";a:1:{i:0;s:10:\"attachment\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";s:12:\"media_folder\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}s:18:\"x-portfolio_folder\";O:8:\"stdClass\":24:{s:4:\"name\";s:18:\"x-portfolio_folder\";s:5:\"label\";s:7:\"Folders\";s:6:\"labels\";O:8:\"stdClass\":24:{s:4:\"name\";s:7:\"Folders\";s:13:\"singular_name\";s:6:\"Folder\";s:12:\"search_items\";s:14:\"Search Folders\";s:13:\"popular_items\";N;s:9:\"all_items\";s:11:\"All Folders\";s:11:\"parent_item\";s:13:\"Parent Folder\";s:17:\"parent_item_colon\";s:21:\"Catégorie parente :\";s:9:\"edit_item\";s:11:\"Edit Folder\";s:9:\"view_item\";s:18:\"Voir la catégorie\";s:11:\"update_item\";s:13:\"Update Folder\";s:12:\"add_new_item\";s:14:\"Add New Folder\";s:13:\"new_item_name\";s:15:\"Add Folder Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:27:\"Aucune catégorie trouvée.\";s:8:\"no_terms\";s:17:\"Aucune catégorie\";s:21:\"items_list_navigation\";s:38:\"Navigation de la liste des catégories\";s:10:\"items_list\";s:21:\"Liste des catégories\";s:9:\"most_used\";s:14:\"Plus utilisés\";s:13:\"back_to_items\";s:30:\"&larr; Revenir aux catégories\";s:9:\"menu_name\";s:7:\"Folders\";s:14:\"name_admin_bar\";s:6:\"Folder\";s:8:\"archives\";s:11:\"All Folders\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:20:\"meta_box_sanitize_cb\";s:40:\"taxonomy_meta_box_sanitize_cb_checkboxes\";s:11:\"object_type\";a:1:{i:0;s:11:\"x-portfolio\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";s:18:\"x-portfolio_folder\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}}}i:2;i:1;i:3;d:1566974870.151448;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2870,'jpsq_sync-1566974870.153881-852643-24','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"post_types\";i:1;a:21:{s:4:\"post\";O:8:\"stdClass\":26:{s:4:\"name\";s:4:\"post\";s:5:\"label\";s:8:\"Articles\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:8:\"Articles\";s:13:\"singular_name\";s:7:\"Article\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:17:\"Tous les articles\";s:8:\"archives\";s:21:\"Archives des articles\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:8:\"Articles\";s:14:\"name_admin_bar\";s:7:\"Article\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:5;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"posts\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:4:\"page\";O:8:\"stdClass\":26:{s:4:\"name\";s:4:\"page\";s:5:\"label\";s:5:\"Pages\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Pages\";s:13:\"singular_name\";s:4:\"Page\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter une nouvelle page\";s:9:\"edit_item\";s:16:\"Modifier la page\";s:8:\"new_item\";s:13:\"Nouvelle page\";s:9:\"view_item\";s:12:\"Voir la page\";s:10:\"view_items\";s:14:\"Voir les pages\";s:12:\"search_items\";s:25:\"Rechercher dans les pages\";s:9:\"not_found\";s:21:\"Aucune page trouvée.\";s:18:\"not_found_in_trash\";s:39:\"Aucune page trouvée dans la corbeille.\";s:17:\"parent_item_colon\";s:15:\"Page parente :\";s:9:\"all_items\";s:16:\"Toutes les pages\";s:8:\"archives\";s:18:\"Archives des pages\";s:10:\"attributes\";s:17:\"Attributs de page\";s:16:\"insert_into_item\";s:21:\"Insérer dans la page\";s:21:\"uploaded_to_this_item\";s:27:\"Téléversé sur cette page\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:26:\"Filtrer la liste des pages\";s:21:\"items_list_navigation\";s:32:\"Navigation de la liste des pages\";s:10:\"items_list\";s:15:\"Liste des pages\";s:14:\"item_published\";s:19:\"Page mise en ligne.\";s:24:\"item_published_privately\";s:29:\"Page mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:30:\"Page reconvertie en brouillon.\";s:14:\"item_scheduled\";s:16:\"Page planifiée.\";s:12:\"item_updated\";s:18:\"Page mise à jour.\";s:9:\"menu_name\";s:5:\"Pages\";s:14:\"name_admin_bar\";s:4:\"Page\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:1;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:20;s:15:\"capability_type\";s:4:\"page\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"pages\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:10:\"attachment\";O:8:\"stdClass\":25:{s:4:\"name\";s:10:\"attachment\";s:5:\"label\";s:14:\"Fichier média\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:14:\"Fichier média\";s:13:\"singular_name\";s:14:\"Fichier média\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:18:\"Modifier un média\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:29:\"Voir la page du fichier joint\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:14:\"Fichier média\";s:8:\"archives\";s:14:\"Fichier média\";s:10:\"attributes\";s:26:\"Attributs du fichier joint\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:14:\"Fichier média\";s:14:\"name_admin_bar\";s:14:\"Fichier média\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:1;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:12:\"upload_files\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"media\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:8:\"revision\";O:8:\"stdClass\":25:{s:4:\"name\";s:8:\"revision\";s:5:\"label\";s:10:\"Révisions\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:10:\"Révisions\";s:13:\"singular_name\";s:9:\"Révision\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:10:\"Révisions\";s:8:\"archives\";s:10:\"Révisions\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:10:\"Révisions\";s:14:\"name_admin_bar\";s:9:\"Révision\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:24:\"revision.php?revision=%d\";}s:13:\"nav_menu_item\";O:8:\"stdClass\":26:{s:4:\"name\";s:13:\"nav_menu_item\";s:5:\"label\";s:32:\"Éléments de menu de navigation\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:32:\"Éléments de menu de navigation\";s:13:\"singular_name\";s:31:\"Élément de menu de navigation\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:32:\"Éléments de menu de navigation\";s:8:\"archives\";s:32:\"Éléments de menu de navigation\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:32:\"Éléments de menu de navigation\";s:14:\"name_admin_bar\";s:31:\"Élément de menu de navigation\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:10:\"custom_css\";O:8:\"stdClass\":25:{s:4:\"name\";s:10:\"custom_css\";s:5:\"label\";s:17:\"CSS personnalisé\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:17:\"CSS personnalisé\";s:13:\"singular_name\";s:17:\"CSS personnalisé\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:17:\"CSS personnalisé\";s:8:\"archives\";s:17:\"CSS personnalisé\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:17:\"CSS personnalisé\";s:14:\"name_admin_bar\";s:17:\"CSS personnalisé\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":13:{s:9:\"edit_post\";s:8:\"edit_css\";s:9:\"read_post\";s:4:\"read\";s:11:\"delete_post\";s:18:\"edit_theme_options\";s:10:\"edit_posts\";s:8:\"edit_css\";s:17:\"edit_others_posts\";s:8:\"edit_css\";s:13:\"publish_posts\";s:18:\"edit_theme_options\";s:18:\"read_private_posts\";s:4:\"read\";s:12:\"delete_posts\";s:18:\"edit_theme_options\";s:22:\"delete_published_posts\";s:18:\"edit_theme_options\";s:20:\"delete_private_posts\";s:18:\"edit_theme_options\";s:19:\"delete_others_posts\";s:18:\"edit_theme_options\";s:20:\"edit_published_posts\";s:8:\"edit_css\";s:12:\"create_posts\";s:8:\"edit_css\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:19:\"customize_changeset\";O:8:\"stdClass\":25:{s:4:\"name\";s:19:\"customize_changeset\";s:5:\"label\";s:21:\"Jeux de modifications\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:21:\"Jeux de modifications\";s:13:\"singular_name\";s:20:\"Jeu de modifications\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:39:\"Ajouter un nouveau jeu de modifications\";s:9:\"edit_item\";s:33:\"Modifier le jeu de modifications.\";s:8:\"new_item\";s:28:\"Nouveau jeu de modifications\";s:9:\"view_item\";s:28:\"Voir le jeu de modifications\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:34:\"Rechercher un jeu de modifications\";s:9:\"not_found\";s:35:\"Aucun jeu de modifications trouvé.\";s:18:\"not_found_in_trash\";s:53:\"Aucun jeu de modifications trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:30:\"Tous les jeux de modifications\";s:8:\"archives\";s:30:\"Tous les jeux de modifications\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:21:\"Jeux de modifications\";s:14:\"name_admin_bar\";s:20:\"Jeu de modifications\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:19:\"customize_changeset\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"customize\";s:9:\"read_post\";s:9:\"customize\";s:11:\"delete_post\";s:9:\"customize\";s:10:\"edit_posts\";s:9:\"customize\";s:17:\"edit_others_posts\";s:9:\"customize\";s:13:\"publish_posts\";s:9:\"customize\";s:18:\"read_private_posts\";s:9:\"customize\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:9:\"customize\";s:20:\"delete_private_posts\";s:9:\"customize\";s:22:\"delete_published_posts\";s:9:\"customize\";s:19:\"delete_others_posts\";s:9:\"customize\";s:18:\"edit_private_posts\";s:9:\"customize\";s:20:\"edit_published_posts\";s:12:\"do_not_allow\";s:12:\"create_posts\";s:9:\"customize\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:12:\"oembed_cache\";O:8:\"stdClass\":26:{s:4:\"name\";s:12:\"oembed_cache\";s:5:\"label\";s:14:\"Retours oEmbed\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:14:\"Retours oEmbed\";s:13:\"singular_name\";s:13:\"Retour oEmbed\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:14:\"Retours oEmbed\";s:8:\"archives\";s:14:\"Retours oEmbed\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:14:\"Retours oEmbed\";s:14:\"name_admin_bar\";s:13:\"Retour oEmbed\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:12:\"user_request\";O:8:\"stdClass\":26:{s:4:\"name\";s:12:\"user_request\";s:5:\"label\";s:20:\"Demandes utilisateur\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:20:\"Demandes utilisateur\";s:13:\"singular_name\";s:19:\"Demande utilisateur\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:20:\"Demandes utilisateur\";s:8:\"archives\";s:20:\"Demandes utilisateur\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:20:\"Demandes utilisateur\";s:14:\"name_admin_bar\";s:19:\"Demande utilisateur\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";}s:8:\"wp_block\";O:8:\"stdClass\":24:{s:4:\"name\";s:8:\"wp_block\";s:5:\"label\";s:5:\"Blocs\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:5:\"Blocs\";s:13:\"singular_name\";s:4:\"Bloc\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:23:\"Ajouter un nouveau bloc\";s:9:\"edit_item\";s:16:\"Modifier le bloc\";s:8:\"new_item\";s:12:\"Nouveau bloc\";s:9:\"view_item\";s:18:\"Visualiser le bloc\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:20:\"Rechercher des blocs\";s:9:\"not_found\";s:19:\"Aucun bloc trouvé.\";s:18:\"not_found_in_trash\";s:37:\"Aucun bloc trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:14:\"Tous les blocs\";s:8:\"archives\";s:14:\"Tous les blocs\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:26:\"Filtrer la liste des blocs\";s:21:\"items_list_navigation\";s:34:\"Navigation dans la liste des blocs\";s:10:\"items_list\";s:15:\"Liste des blocs\";s:14:\"item_published\";s:18:\"Bloc mis en ligne.\";s:24:\"item_published_privately\";s:36:\"Bloc mis en ligne de façon privée.\";s:22:\"item_reverted_to_draft\";s:24:\"Bloc remis en brouillon.\";s:14:\"item_scheduled\";s:15:\"Bloc planifié.\";s:12:\"item_updated\";s:17:\"Bloc mis à jour.\";s:9:\"menu_name\";s:5:\"Blocs\";s:14:\"name_admin_bar\";s:4:\"Bloc\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:5:\"block\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:10:\"edit_block\";s:9:\"read_post\";s:10:\"read_block\";s:11:\"delete_post\";s:12:\"delete_block\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:14:\"publish_blocks\";s:18:\"read_private_posts\";s:19:\"read_private_blocks\";s:4:\"read\";s:10:\"edit_posts\";s:12:\"delete_posts\";s:13:\"delete_blocks\";s:20:\"delete_private_posts\";s:21:\"delete_private_blocks\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:19:\"edit_private_blocks\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:13:\"publish_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";s:8:\"wp_block\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:6:\"blocks\";s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:11:\"cs_template\";O:8:\"stdClass\":25:{s:4:\"name\";s:11:\"cs_template\";s:5:\"label\";s:8:\"Articles\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:8:\"Articles\";s:13:\"singular_name\";s:7:\"Article\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:17:\"Tous les articles\";s:8:\"archives\";s:21:\"Archives des articles\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:8:\"Articles\";s:14:\"name_admin_bar\";s:11:\"cs_template\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";b:0;s:15:\"capability_type\";s:4:\"page\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:11:\"cs_template\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:11:\"cs_template\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:15:\"cs_global_block\";O:8:\"stdClass\":25:{s:4:\"name\";s:15:\"cs_global_block\";s:5:\"label\";s:13:\"Global Blocks\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:13:\"Global Blocks\";s:13:\"singular_name\";s:12:\"Global Block\";s:7:\"add_new\";s:20:\"Add New Global Block\";s:12:\"add_new_item\";s:20:\"Add New Global Block\";s:9:\"edit_item\";s:17:\"Edit Global Block\";s:8:\"new_item\";s:20:\"Add New Global Block\";s:9:\"view_item\";s:17:\"View Global Block\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:20:\"Search Global Blocks\";s:9:\"not_found\";s:22:\"No Global Blocks found\";s:18:\"not_found_in_trash\";s:31:\"No Global Blocks found in trash\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:13:\"Global Blocks\";s:8:\"archives\";s:13:\"Global Blocks\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:13:\"Global Blocks\";s:14:\"name_admin_bar\";s:12:\"Global Block\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";b:0;s:15:\"capability_type\";s:4:\"page\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:15:\"cs_global_block\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:15:\"cs_global_block\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:17:\"cs_user_templates\";O:8:\"stdClass\":25:{s:4:\"name\";s:17:\"cs_user_templates\";s:5:\"label\";s:8:\"Articles\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:8:\"Articles\";s:13:\"singular_name\";s:7:\"Article\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:17:\"Tous les articles\";s:8:\"archives\";s:21:\"Archives des articles\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:8:\"Articles\";s:14:\"name_admin_bar\";s:17:\"cs_user_templates\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:8:\"supports\";b:0;s:15:\"capability_type\";s:4:\"page\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:17:\"cs_user_templates\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:17:\"cs_user_templates\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:15:\"acf-field-group\";O:8:\"stdClass\":24:{s:4:\"name\";s:15:\"acf-field-group\";s:5:\"label\";s:17:\"Groupes de champs\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:17:\"Groupes de champs\";s:13:\"singular_name\";s:16:\"Groupe de champs\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:35:\"Ajouter un nouveau groupe de champs\";s:9:\"edit_item\";s:28:\"Modifier le groupe de champs\";s:8:\"new_item\";s:24:\"Nouveau groupe de champs\";s:9:\"view_item\";s:24:\"Voir le groupe de champs\";s:10:\"view_items\";s:14:\"Voir les pages\";s:12:\"search_items\";s:32:\"Rechercher des groupes de champs\";s:9:\"not_found\";s:30:\"Aucun groupe de champs trouvé\";s:18:\"not_found_in_trash\";s:48:\"Aucun groupe de champs trouvé dans la corbeille\";s:17:\"parent_item_colon\";s:15:\"Page parente :\";s:9:\"all_items\";s:17:\"Groupes de champs\";s:8:\"archives\";s:17:\"Groupes de champs\";s:10:\"attributes\";s:17:\"Attributs de page\";s:16:\"insert_into_item\";s:21:\"Insérer dans la page\";s:21:\"uploaded_to_this_item\";s:27:\"Téléversé sur cette page\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:26:\"Filtrer la liste des pages\";s:21:\"items_list_navigation\";s:32:\"Navigation de la liste des pages\";s:10:\"items_list\";s:15:\"Liste des pages\";s:14:\"item_published\";s:19:\"Page mise en ligne.\";s:24:\"item_published_privately\";s:29:\"Page mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:30:\"Page reconvertie en brouillon.\";s:14:\"item_scheduled\";s:16:\"Page planifiée.\";s:12:\"item_updated\";s:18:\"Page mise à jour.\";s:9:\"menu_name\";s:17:\"Groupes de champs\";s:14:\"name_admin_bar\";s:16:\"Groupe de champs\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:1;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":9:{s:9:\"edit_post\";s:14:\"manage_options\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:14:\"manage_options\";s:10:\"edit_posts\";s:14:\"manage_options\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:12:\"delete_posts\";s:14:\"manage_options\";s:12:\"create_posts\";s:14:\"manage_options\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:9:\"acf-field\";O:8:\"stdClass\":24:{s:4:\"name\";s:9:\"acf-field\";s:5:\"label\";s:6:\"Champs\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:6:\"Champs\";s:13:\"singular_name\";s:5:\"Champ\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:16:\"Ajouter un champ\";s:9:\"edit_item\";s:17:\"Modifier le champ\";s:8:\"new_item\";s:13:\"Nouveau champ\";s:9:\"view_item\";s:13:\"Voir le champ\";s:10:\"view_items\";s:14:\"Voir les pages\";s:12:\"search_items\";s:21:\"Rechercher des champs\";s:9:\"not_found\";s:19:\"Aucun champ trouvé\";s:18:\"not_found_in_trash\";s:37:\"Aucun champ trouvé dans la corbeille\";s:17:\"parent_item_colon\";s:15:\"Page parente :\";s:9:\"all_items\";s:6:\"Champs\";s:8:\"archives\";s:6:\"Champs\";s:10:\"attributes\";s:17:\"Attributs de page\";s:16:\"insert_into_item\";s:21:\"Insérer dans la page\";s:21:\"uploaded_to_this_item\";s:27:\"Téléversé sur cette page\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:26:\"Filtrer la liste des pages\";s:21:\"items_list_navigation\";s:32:\"Navigation de la liste des pages\";s:10:\"items_list\";s:15:\"Liste des pages\";s:14:\"item_published\";s:19:\"Page mise en ligne.\";s:24:\"item_published_privately\";s:29:\"Page mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:30:\"Page reconvertie en brouillon.\";s:14:\"item_scheduled\";s:16:\"Page planifiée.\";s:12:\"item_updated\";s:18:\"Page mise à jour.\";s:9:\"menu_name\";s:6:\"Champs\";s:14:\"name_admin_bar\";s:5:\"Champ\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:1;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":9:{s:9:\"edit_post\";s:14:\"manage_options\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:14:\"manage_options\";s:10:\"edit_posts\";s:14:\"manage_options\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:12:\"delete_posts\";s:14:\"manage_options\";s:12:\"create_posts\";s:14:\"manage_options\";}s:12:\"map_meta_cap\";b:0;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:7:\"wp_area\";O:8:\"stdClass\":24:{s:4:\"name\";s:7:\"wp_area\";s:5:\"label\";s:29:\"Zone de blocs (expérimental)\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:29:\"Zone de blocs (expérimental)\";s:13:\"singular_name\";s:29:\"Zone de blocs (expérimental)\";s:7:\"add_new\";s:18:\"Ajouter un nouveau\";s:12:\"add_new_item\";s:34:\"Ajouter une nouvelle zone de blocs\";s:9:\"edit_item\";s:25:\"Modifier la zone de blocs\";s:8:\"new_item\";s:25:\"Nouvelle de zone de blocs\";s:9:\"view_item\";s:21:\"Voir la zone de blocs\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:29:\"Rechercher des zones de blocs\";s:9:\"not_found\";s:30:\"Aucune zone de blocs trouvée.\";s:18:\"not_found_in_trash\";s:46:\"Aucune zone de blocs trouvée à la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:25:\"Toutes les zones de blocs\";s:8:\"archives\";s:25:\"Toutes les zones de blocs\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:35:\"Filtrer la liste des zones de blocs\";s:21:\"items_list_navigation\";s:37:\"Navigation de liste de zones de blocs\";s:10:\"items_list\";s:23:\"Liste de zones de blocs\";s:14:\"item_published\";s:23:\"Zone de blocs publiée.\";s:24:\"item_published_privately\";s:33:\"Zone de blocs publiée en privé.\";s:22:\"item_reverted_to_draft\";s:34:\"Zone de blocs redevenue brouillon.\";s:14:\"item_scheduled\";s:25:\"Zone de blocs planifiée.\";s:12:\"item_updated\";s:27:\"Zone de blocs mise à jour.\";s:9:\"menu_name\";s:14:\"Zones de blocs\";s:14:\"name_admin_bar\";s:13:\"Zone de blocs\";}s:11:\"description\";s:107:\"Type de publication personnalisé expérimental qui stockera les zones de blocs référencées par thèmes.\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:18:\"edit_theme_options\";s:17:\"edit_others_posts\";s:18:\"edit_theme_options\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:10:\"edit_posts\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:18:\"edit_theme_options\";s:19:\"delete_others_posts\";s:18:\"edit_theme_options\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:18:\"edit_theme_options\";s:12:\"create_posts\";s:18:\"edit_theme_options\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:7:\"wp_area\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:7:\"wp_area\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:26:\"__experimental/block-areas\";s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:12:\"vc_grid_item\";O:8:\"stdClass\":24:{s:4:\"name\";s:12:\"vc_grid_item\";s:5:\"label\";s:18:\"Éditeur de grille\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:18:\"Éditeur de grille\";s:13:\"singular_name\";s:17:\"Modèle de grille\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:28:\"Ajouter un modèle de grille\";s:9:\"edit_item\";s:19:\"Modifier le modèle\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:15:\"Voir le modèle\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:19:\"Chercher un modèle\";s:9:\"not_found\";s:23:\"No Grid templates found\";s:18:\"not_found_in_trash\";s:32:\"No Grid templates found in Trash\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:18:\"Éditeur de grille\";s:8:\"archives\";s:18:\"Éditeur de grille\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:18:\"Éditeur de grille\";s:14:\"name_admin_bar\";s:17:\"Modèle de grille\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:12:\"vc_grid_item\";s:10:\"with_front\";b:1;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:12:\"vc_grid_item\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:8:\"the_grid\";O:8:\"stdClass\":27:{s:4:\"name\";s:8:\"the_grid\";s:5:\"label\";s:8:\"The Grid\";s:6:\"labels\";O:8:\"stdClass\":33:{s:4:\"name\";s:8:\"The Grid\";s:13:\"singular_name\";s:8:\"The_Grid\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";b:0;s:9:\"edit_item\";b:0;s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:15:\"Search The_Grid\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:12:\"All The_Grid\";s:8:\"archives\";s:12:\"All The_Grid\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:8:\"The Grid\";s:11:\"parent_item\";s:15:\"Parent The_Grid\";s:11:\"update_item\";b:0;s:14:\"name_admin_bar\";s:8:\"The_Grid\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";i:10;s:9:\"menu_icon\";s:16:\"dashicons-slides\";s:8:\"supports\";b:0;s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:8:\"the_grid\";s:10:\"with_front\";b:0;s:5:\"pages\";b:1;s:5:\"feeds\";b:0;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}s:11:\"x-portfolio\";O:8:\"stdClass\":26:{s:4:\"name\";s:11:\"x-portfolio\";s:5:\"label\";s:9:\"Portfolio\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:9:\"Portfolio\";s:13:\"singular_name\";s:14:\"Portfolio Item\";s:7:\"add_new\";s:12:\"Add New Item\";s:12:\"add_new_item\";s:22:\"Add New Portfolio Item\";s:9:\"edit_item\";s:19:\"Edit Portfolio Item\";s:8:\"new_item\";s:22:\"Add New Portfolio Item\";s:9:\"view_item\";s:9:\"View Item\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:16:\"Search Portfolio\";s:9:\"not_found\";s:24:\"No portfolio items found\";s:18:\"not_found_in_trash\";s:33:\"No portfolio items found in trash\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:9:\"Portfolio\";s:8:\"archives\";s:9:\"Portfolio\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:9:\"Portfolio\";s:14:\"name_admin_bar\";s:14:\"Portfolio Item\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:5;s:9:\"menu_icon\";s:24:\"dashicons-format-gallery\";s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:1;s:7:\"rewrite\";a:5:{s:4:\"slug\";s:14:\"portfolio-item\";s:10:\"with_front\";b:0;s:5:\"pages\";b:1;s:5:\"feeds\";b:1;s:7:\"ep_mask\";i:1;}s:9:\"query_var\";s:11:\"x-portfolio\";s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:6:\"envira\";O:8:\"stdClass\":26:{s:4:\"name\";s:6:\"envira\";s:5:\"label\";s:16:\"Envira Galleries\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:16:\"Envira Galleries\";s:13:\"singular_name\";s:14:\"Envira Gallery\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:22:\"Add New Envira Gallery\";s:9:\"edit_item\";s:19:\"Edit Envira Gallery\";s:8:\"new_item\";s:18:\"New Envira Gallery\";s:9:\"view_item\";s:19:\"View Envira Gallery\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:23:\"Search Envira Galleries\";s:9:\"not_found\";s:26:\"No Envira galleries found.\";s:18:\"not_found_in_trash\";s:35:\"No Envira galleries found in trash.\";s:17:\"parent_item_colon\";s:0:\"\";s:9:\"all_items\";s:14:\"Envira Gallery\";s:8:\"archives\";s:14:\"Envira Gallery\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:14:\"Envira Gallery\";s:14:\"name_admin_bar\";s:14:\"Envira Gallery\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:247;s:9:\"menu_icon\";s:91:\"http://wpdistillery.vm/wp-content/plugins/envira-gallery/assets/css/images/[email protected]\";s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:19:\"edit_envira_gallery\";s:9:\"read_post\";s:19:\"read_envira_gallery\";s:11:\"delete_post\";s:21:\"delete_envira_gallery\";s:10:\"edit_posts\";s:23:\"create_envira_galleries\";s:17:\"edit_others_posts\";s:27:\"edit_other_envira_galleries\";s:13:\"publish_posts\";s:24:\"publish_envira_galleries\";s:18:\"read_private_posts\";s:29:\"read_private_envira_galleries\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:23:\"delete_envira_galleries\";s:20:\"delete_private_posts\";s:31:\"delete_private_envira_galleries\";s:22:\"delete_published_posts\";s:33:\"delete_published_envira_galleries\";s:19:\"delete_others_posts\";s:30:\"delete_others_envira_galleries\";s:18:\"edit_private_posts\";s:29:\"edit_private_envira_galleries\";s:20:\"edit_published_posts\";s:31:\"edit_published_envira_galleries\";s:12:\"create_posts\";s:23:\"create_envira_galleries\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:14:\"envira-gallery\";s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";}s:13:\"vc4_templates\";O:8:\"stdClass\":27:{s:4:\"name\";s:13:\"vc4_templates\";s:5:\"label\";s:12:\"Vc Templates\";s:6:\"labels\";O:8:\"stdClass\":31:{s:4:\"name\";s:12:\"Vc Templates\";s:13:\"singular_name\";s:12:\"Vc Templates\";s:7:\"add_new\";s:7:\"Ajouter\";s:12:\"add_new_item\";s:25:\"Ajouter un nouvel article\";s:9:\"edit_item\";s:20:\"Modifier l’article\";s:8:\"new_item\";s:14:\"Nouvel article\";s:9:\"view_item\";s:16:\"Voir l’article\";s:10:\"view_items\";s:17:\"Voir les articles\";s:12:\"search_items\";s:28:\"Rechercher dans les articles\";s:9:\"not_found\";s:28:\"Aucune publication trouvée.\";s:18:\"not_found_in_trash\";s:40:\"Aucun article trouvé dans la corbeille.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:12:\"Vc Templates\";s:8:\"archives\";s:12:\"Vc Templates\";s:10:\"attributes\";s:22:\"Attributs d’articles\";s:16:\"insert_into_item\";s:28:\"Insérer dans la publication\";s:21:\"uploaded_to_this_item\";s:34:\"Téléversé sur cette publication\";s:14:\"featured_image\";s:19:\"Image mise en avant\";s:18:\"set_featured_image\";s:32:\"Définir l’image mise en avant\";s:21:\"remove_featured_image\";s:33:\"Supprimer l’image mise en avant\";s:18:\"use_featured_image\";s:34:\"Utiliser comme image mise en avant\";s:17:\"filter_items_list\";s:29:\"Filtrer la liste des articles\";s:21:\"items_list_navigation\";s:35:\"Navigation de la liste des articles\";s:10:\"items_list\";s:18:\"Liste des articles\";s:14:\"item_published\";s:26:\"Publication mise en ligne.\";s:24:\"item_published_privately\";s:36:\"Publication mise en ligne en privé.\";s:22:\"item_reverted_to_draft\";s:37:\"Publication reconvertie en brouillon.\";s:14:\"item_scheduled\";s:23:\"Publication planifiée.\";s:12:\"item_updated\";s:25:\"Publication mise à jour.\";s:9:\"menu_name\";s:12:\"Vc Templates\";s:14:\"name_admin_bar\";s:12:\"Vc Templates\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";i:10;s:9:\"menu_icon\";s:20:\"dashicons-admin-page\";s:8:\"supports\";a:0:{}s:15:\"capability_type\";s:4:\"post\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:12:\"map_meta_cap\";b:1;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";}}}i:2;i:1;i:3;d:1566974870.153842;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2871,'jpsq_sync-1566974870.156987-852643-25','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"post_type_features\";i:1;a:19:{s:4:\"post\";a:8:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:6:\"author\";b:1;s:9:\"thumbnail\";b:1;s:7:\"excerpt\";b:1;s:13:\"custom-fields\";b:1;s:9:\"revisions\";b:1;s:12:\"post-formats\";b:1;}s:4:\"page\";a:7:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:6:\"author\";b:1;s:9:\"thumbnail\";b:1;s:15:\"page-attributes\";b:1;s:13:\"custom-fields\";b:1;s:9:\"revisions\";b:1;}s:10:\"attachment\";a:2:{s:5:\"title\";b:1;s:6:\"author\";b:1;}s:16:\"attachment:audio\";a:1:{s:9:\"thumbnail\";b:1;}s:16:\"attachment:video\";a:1:{s:9:\"thumbnail\";b:1;}s:8:\"revision\";a:1:{s:6:\"author\";b:1;}s:13:\"nav_menu_item\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:10:\"custom_css\";a:2:{s:5:\"title\";b:1;s:9:\"revisions\";b:1;}s:19:\"customize_changeset\";a:2:{s:5:\"title\";b:1;s:6:\"author\";b:1;}s:12:\"oembed_cache\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:12:\"user_request\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:8:\"wp_block\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:15:\"acf-field-group\";a:1:{s:5:\"title\";b:1;}s:9:\"acf-field\";a:1:{s:5:\"title\";b:1;}s:7:\"wp_area\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:12:\"vc_grid_item\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:11:\"x-portfolio\";a:7:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:7:\"excerpt\";b:1;s:9:\"thumbnail\";b:1;s:6:\"author\";b:1;s:13:\"custom-fields\";b:1;s:9:\"revisions\";b:1;}s:6:\"envira\";a:1:{s:5:\"title\";b:1;}s:13:\"vc4_templates\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}}}i:2;i:1;i:3;d:1566974870.156934;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2872,'jpsq_sync-1566974870.158463-852643-26','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"shortcodes\";i:1;a:219:{i:0;s:10:\"wp_caption\";i:1;s:7:\"caption\";i:2;s:7:\"gallery\";i:3;s:8:\"playlist\";i:4;s:5:\"audio\";i:5;s:5:\"video\";i:6;s:5:\"embed\";i:7;s:3:\"acf\";i:8;s:13:\"file_modified\";i:9;s:8:\"ess_grid\";i:10;s:20:\"ess_grid_ajax_target\";i:11;s:12:\"ess_grid_nav\";i:12;s:15:\"ess_grid_search\";i:13;s:10:\"rev_slider\";i:14;s:12:\"to_post_like\";i:15;s:8:\"the_grid\";i:16;s:20:\"cs_portfolio_filters\";i:17;s:19:\"x_portfolio_filters\";i:18;s:11:\"x_accordion\";i:19;s:16:\"x_accordion_item\";i:20;s:13:\"x_audio_embed\";i:21;s:14:\"x_audio_player\";i:22;s:8:\"x_author\";i:23;s:12:\"x_block_grid\";i:24;s:13:\"cs_block_grid\";i:25;s:17:\"x_block_grid_item\";i:26;s:18:\"cs_block_grid_item\";i:27;s:12:\"x_blockquote\";i:28;s:8:\"x_button\";i:29;s:9:\"x_callout\";i:30;s:6:\"x_card\";i:31;s:7:\"x_clear\";i:32;s:6:\"x_code\";i:33;s:9:\"cs_column\";i:34;s:8:\"x_column\";i:35;s:11:\"x_columnize\";i:36;s:11:\"x_container\";i:37;s:14:\"x_content_band\";i:38;s:9:\"x_counter\";i:39;s:14:\"x_creative_cta\";i:40;s:17:\"x_custom_headline\";i:41;s:9:\"x_dropcap\";i:42;s:7:\"x_extra\";i:43;s:13:\"x_feature_box\";i:44;s:18:\"x_feature_headline\";i:45;s:14:\"x_feature_list\";i:46;s:5:\"x_gap\";i:47;s:12:\"x_google_map\";i:48;s:19:\"x_google_map_marker\";i:49;s:11:\"x_highlight\";i:50;s:6:\"x_icon\";i:51;s:7:\"x_image\";i:52;s:10:\"x_lightbox\";i:53;s:6:\"x_line\";i:54;s:5:\"x_map\";i:55;s:16:\"cs_pricing_table\";i:56;s:15:\"x_pricing_table\";i:57;s:23:\"cs_pricing_table_column\";i:58;s:22:\"x_pricing_table_column\";i:59;s:7:\"x_promo\";i:60;s:8:\"x_prompt\";i:61;s:9:\"x_protect\";i:62;s:11:\"x_pullquote\";i:63;s:13:\"x_raw_content\";i:64;s:12:\"x_raw_output\";i:65;s:14:\"x_recent_posts\";i:66;s:17:\"x_responsive_text\";i:67;s:18:\"cs_responsive_text\";i:68;s:6:\"cs_row\";i:69;s:5:\"x_row\";i:70;s:8:\"x_search\";i:71;s:10:\"cs_section\";i:72;s:9:\"x_section\";i:73;s:7:\"x_share\";i:74;s:11:\"x_skill_bar\";i:75;s:8:\"x_slider\";i:76;s:7:\"x_slide\";i:77;s:9:\"x_tab_nav\";i:78;s:14:\"x_tab_nav_item\";i:79;s:6:\"x_tabs\";i:80;s:5:\"x_tab\";i:81;s:11:\"text_output\";i:82;s:11:\"x_text_type\";i:83;s:5:\"x_toc\";i:84;s:10:\"x_toc_item\";i:85;s:13:\"x_video_embed\";i:86;s:14:\"x_video_player\";i:87;s:12:\"x_visibility\";i:88;s:13:\"x_widget_area\";i:89;s:8:\"cs_alert\";i:90;s:12:\"cs_icon_list\";i:91;s:17:\"cs_icon_list_item\";i:92;s:7:\"cs_text\";i:93;s:12:\"cs_undefined\";i:94;s:11:\"cs_the_grid\";i:95;s:6:\"social\";i:96;s:5:\"alert\";i:97;s:7:\"x_alert\";i:98;s:6:\"x_text\";i:99;s:9:\"icon_list\";i:100;s:11:\"x_icon_list\";i:101;s:14:\"icon_list_item\";i:102;s:16:\"x_icon_list_item\";i:103;s:9:\"accordion\";i:104;s:14:\"accordion_item\";i:105;s:6:\"author\";i:106;s:10:\"block_grid\";i:107;s:15:\"block_grid_item\";i:108;s:10:\"blockquote\";i:109;s:6:\"button\";i:110;s:7:\"callout\";i:111;s:5:\"clear\";i:112;s:4:\"code\";i:113;s:6:\"column\";i:114;s:9:\"columnize\";i:115;s:9:\"container\";i:116;s:12:\"content_band\";i:117;s:7:\"counter\";i:118;s:15:\"custom_headline\";i:119;s:7:\"dropcap\";i:120;s:5:\"extra\";i:121;s:16:\"feature_headline\";i:122;s:3:\"gap\";i:123;s:10:\"google_map\";i:124;s:17:\"google_map_marker\";i:125;s:9:\"highlight\";i:126;s:4:\"icon\";i:127;s:5:\"image\";i:128;s:8:\"lightbox\";i:129;s:4:\"line\";i:130;s:3:\"map\";i:131;s:13:\"pricing_table\";i:132;s:20:\"pricing_table_column\";i:133;s:5:\"promo\";i:134;s:6:\"prompt\";i:135;s:7:\"protect\";i:136;s:9:\"pullquote\";i:137;s:10:\"raw_output\";i:138;s:12:\"recent_posts\";i:139;s:15:\"responsive_text\";i:140;s:6:\"search\";i:141;s:5:\"share\";i:142;s:9:\"skill_bar\";i:143;s:6:\"slider\";i:144;s:5:\"slide\";i:145;s:7:\"tab_nav\";i:146;s:12:\"tab_nav_item\";i:147;s:4:\"tabs\";i:148;s:3:\"tab\";i:149;s:3:\"toc\";i:150;s:8:\"toc_item\";i:151;s:10:\"visibility\";i:152;s:10:\"cs_content\";i:153;s:19:\"vc_container_anchor\";i:154;s:10:\"cs_context\";i:155;s:5:\"cs_gb\";i:156;s:20:\"cs_element_undefined\";i:157;s:15:\"cs_element_root\";i:158;s:17:\"cs_element_region\";i:159;s:14:\"cs_element_bar\";i:160;s:20:\"cs_element_container\";i:161;s:17:\"cs_element_button\";i:162;s:23:\"cs_element_content_area\";i:163;s:32:\"cs_element_content_area_dropdown\";i:164;s:29:\"cs_element_content_area_modal\";i:165;s:34:\"cs_element_content_area_off_canvas\";i:166;s:23:\"cs_element_global_block\";i:167;s:20:\"cs_element_accordion\";i:168;s:25:\"cs_element_accordion_item\";i:169;s:15:\"cs_element_tabs\";i:170;s:14:\"cs_element_tab\";i:171;s:16:\"cs_element_image\";i:172;s:24:\"cs_element_nav_collapsed\";i:173;s:23:\"cs_element_nav_dropdown\";i:174;s:21:\"cs_element_nav_inline\";i:175;s:20:\"cs_element_nav_modal\";i:176;s:22:\"cs_element_nav_layered\";i:177;s:24:\"cs_element_search_inline\";i:178;s:26:\"cs_element_search_dropdown\";i:179;s:23:\"cs_element_search_modal\";i:180;s:14:\"cs_element_map\";i:181;s:21:\"cs_element_map_marker\";i:182;s:16:\"cs_element_audio\";i:183;s:16:\"cs_element_video\";i:184;s:17:\"cs_element_social\";i:185;s:15:\"cs_element_text\";i:186;s:19:\"cs_element_headline\";i:187;s:16:\"cs_element_quote\";i:188;s:22:\"cs_element_breadcrumbs\";i:189;s:16:\"cs_element_alert\";i:190;s:18:\"cs_element_counter\";i:191;s:18:\"cs_element_statbar\";i:192;s:15:\"cs_element_line\";i:193;s:14:\"cs_element_gap\";i:194;s:22:\"cs_element_widget_area\";i:195;s:30:\"cs_element_tp_wc_cart_dropdown\";i:196;s:27:\"cs_element_tp_wc_cart_modal\";i:197;s:32:\"cs_element_tp_wc_cart_off_canvas\";i:198;s:18:\"cs_element_section\";i:199;s:14:\"cs_element_row\";i:200;s:16:\"cs_element_row_2\";i:201;s:16:\"cs_element_row_3\";i:202;s:16:\"cs_element_row_4\";i:203;s:16:\"cs_element_row_5\";i:204;s:16:\"cs_element_row_6\";i:205;s:16:\"cs_element_row_7\";i:206;s:16:\"cs_element_row_8\";i:207;s:16:\"cs_element_row_9\";i:208;s:17:\"cs_element_row_10\";i:209;s:17:\"cs_element_column\";i:210;s:19:\"cs_element_column_2\";i:211;s:19:\"cs_element_column_3\";i:212;s:19:\"cs_element_column_4\";i:213;s:19:\"cs_element_column_5\";i:214;s:19:\"cs_element_column_6\";i:215;s:19:\"cs_element_column_7\";i:216;s:19:\"cs_element_column_8\";i:217;s:19:\"cs_element_column_9\";i:218;s:20:\"cs_element_column_10\";}}i:2;i:1;i:3;d:1566974870.158416;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2873,'jpsq_sync-1566974870.166453-852643-27','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:27:\"rest_api_allowed_post_types\";i:1;a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:8:\"revision\";}}i:2;i:1;i:3;d:1566974870.166398;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2874,'jpsq_sync-1566974870.167544-852643-28','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:32:\"rest_api_allowed_public_metadata\";i:1;a:0:{}}i:2;i:1;i:3;d:1566974870.167501;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2875,'jpsq_sync-1566974870.175815-852643-29','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"sso_is_two_step_required\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.17576;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2876,'jpsq_sync-1566974870.176970-852643-30','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:26:\"sso_should_hide_login_form\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.176923;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2877,'jpsq_sync-1566974870.177972-852643-31','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"sso_match_by_email\";i:1;b:1;}i:2;i:1;i:3;d:1566974870.177936;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2878,'jpsq_sync-1566974870.186049-852643-32','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:21:\"sso_new_user_override\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.186005;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2879,'jpsq_sync-1566974870.186992-852643-33','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:29:\"sso_bypass_default_login_form\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.186955;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2880,'jpsq_sync-1566974870.195180-852643-34','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"wp_version\";i:1;s:5:\"5.2.2\";}i:2;i:1;i:3;d:1566974870.195132;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2881,'jpsq_sync-1566974870.196457-852643-35','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:11:\"get_plugins\";i:1;a:32:{s:34:\"advanced-custom-fields-pro/acf.php\";a:11:{s:4:\"Name\";s:26:\"Advanced Custom Fields PRO\";s:9:\"PluginURI\";s:36:\"https://www.advancedcustomfields.com\";s:7:\"Version\";s:5:\"5.8.3\";s:11:\"Description\";s:69:\"Customize WordPress with powerful, professional and intuitive fields.\";s:6:\"Author\";s:13:\"Elliot Condon\";s:9:\"AuthorURI\";s:36:\"https://www.advancedcustomfields.com\";s:10:\"TextDomain\";s:3:\"acf\";s:10:\"DomainPath\";s:5:\"/lang\";s:7:\"Network\";b:0;s:5:\"Title\";s:26:\"Advanced Custom Fields PRO\";s:10:\"AuthorName\";s:13:\"Elliot Condon\";}s:21:\"backwpup/backwpup.php\";a:11:{s:4:\"Name\";s:8:\"BackWPup\";s:9:\"PluginURI\";s:19:\"http://backwpup.com\";s:7:\"Version\";s:6:\"3.6.10\";s:11:\"Description\";s:23:\"WordPress Backup Plugin\";s:6:\"Author\";s:12:\"Inpsyde GmbH\";s:9:\"AuthorURI\";s:18:\"http://inpsyde.com\";s:10:\"TextDomain\";s:8:\"backwpup\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:1;s:5:\"Title\";s:8:\"BackWPup\";s:10:\"AuthorName\";s:12:\"Inpsyde GmbH\";}s:37:\"tco-content-dock/tco-content-dock.php\";a:11:{s:4:\"Name\";s:12:\"Content Dock\";s:9:\"PluginURI\";s:16:\"http://theme.co/\";s:7:\"Version\";s:5:\"2.0.3\";s:11:\"Description\";s:152:\"An incredibly simple and effective tool that allows you to place content or marketing offers in front of your users in an elegant, non-intrusive manner.\";s:6:\"Author\";s:7:\"Themeco\";s:9:\"AuthorURI\";s:16:\"http://theme.co/\";s:10:\"TextDomain\";s:7:\"__tco__\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:12:\"Content Dock\";s:10:\"AuthorName\";s:7:\"Themeco\";}s:27:\"cornerstone/cornerstone.php\";a:11:{s:4:\"Name\";s:11:\"Cornerstone\";s:9:\"PluginURI\";s:27:\"http://theme.co/cornerstone\";s:7:\"Version\";s:5:\"3.5.5\";s:11:\"Description\";s:26:\"The WordPress Page Builder\";s:6:\"Author\";s:7:\"Themeco\";s:9:\"AuthorURI\";s:16:\"http://theme.co/\";s:10:\"TextDomain\";s:11:\"cornerstone\";s:10:\"DomainPath\";s:4:\"lang\";s:7:\"Network\";b:0;s:5:\"Title\";s:11:\"Cornerstone\";s:10:\"AuthorName\";s:7:\"Themeco\";}s:37:\"disable-comments/disable-comments.php\";a:11:{s:4:\"Name\";s:16:\"Disable Comments\";s:9:\"PluginURI\";s:47:\"https://wordpress.org/plugins/disable-comments/\";s:7:\"Version\";s:6:\"1.10.2\";s:11:\"Description\";s:114:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type.\";s:6:\"Author\";s:10:\"Samir Shah\";s:9:\"AuthorURI\";s:28:\"http://www.rayofsolaris.net/\";s:10:\"TextDomain\";s:16:\"disable-comments\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"Disable Comments\";s:10:\"AuthorName\";s:10:\"Samir Shah\";}s:33:\"duplicate-post/duplicate-post.php\";a:11:{s:4:\"Name\";s:14:\"Duplicate Post\";s:9:\"PluginURI\";s:31:\"https://duplicate-post.lopo.it/\";s:7:\"Version\";s:5:\"3.2.3\";s:11:\"Description\";s:22:\"Clone posts and pages.\";s:6:\"Author\";s:16:\"Enrico Battocchi\";s:9:\"AuthorURI\";s:15:\"https://lopo.it\";s:10:\"TextDomain\";s:14:\"duplicate-post\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:14:\"Duplicate Post\";s:10:\"AuthorName\";s:16:\"Enrico Battocchi\";}s:45:\"enable-media-replace/enable-media-replace.php\";a:11:{s:4:\"Name\";s:20:\"Enable Media Replace\";s:9:\"PluginURI\";s:51:\"https://wordpress.org/plugins/enable-media-replace/\";s:7:\"Version\";s:5:\"3.3.5\";s:11:\"Description\";s:112:\"Enable replacing media files by uploading a new file in the \"Edit Media\" section of the WordPress Media Library.\";s:6:\"Author\";s:10:\"ShortPixel\";s:9:\"AuthorURI\";s:22:\"https://shortpixel.com\";s:10:\"TextDomain\";s:20:\"enable-media-replace\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:20:\"Enable Media Replace\";s:10:\"AuthorName\";s:10:\"ShortPixel\";}s:33:\"envira-gallery/envira-gallery.php\";a:11:{s:4:\"Name\";s:14:\"Envira Gallery\";s:9:\"PluginURI\";s:24:\"http://enviragallery.com\";s:7:\"Version\";s:7:\"1.8.6.2\";s:11:\"Description\";s:88:\"Envira Gallery is the best responsive WordPress gallery plugin. This is the Pro version.\";s:6:\"Author\";s:19:\"Envira Gallery Team\";s:9:\"AuthorURI\";s:24:\"http://enviragallery.com\";s:10:\"TextDomain\";s:14:\"envira-gallery\";s:10:\"DomainPath\";s:9:\"languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:14:\"Envira Gallery\";s:10:\"AuthorName\";s:19:\"Envira Gallery Team\";}s:33:\"essential-grid/essential-grid.php\";a:11:{s:4:\"Name\";s:14:\"Essential Grid\";s:9:\"PluginURI\";s:32:\"https://essential.themepunch.com\";s:7:\"Version\";s:5:\"2.3.3\";s:11:\"Description\";s:49:\"Essential Grid - The Original Premium Grid Plugin\";s:6:\"Author\";s:10:\"ThemePunch\";s:9:\"AuthorURI\";s:22:\"https://themepunch.com\";s:10:\"TextDomain\";s:14:\"essential-grid\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:14:\"Essential Grid\";s:10:\"AuthorName\";s:10:\"ThemePunch\";}s:67:\"favicon-by-realfavicongenerator/favicon-by-realfavicongenerator.php\";a:11:{s:4:\"Name\";s:31:\"Favicon by RealFaviconGenerator\";s:9:\"PluginURI\";s:52:\"http://realfavicongenerator.net/extensions/wordpress\";s:7:\"Version\";s:6:\"1.3.15\";s:11:\"Description\";s:131:\"Create and install your favicon for all platforms: PC/Mac of course, but also iPhone/iPad, Android devices, Windows 8 tablets, etc.\";s:6:\"Author\";s:16:\"Philippe Bernard\";s:9:\"AuthorURI\";s:32:\"http://realfavicongenerator.net/\";s:10:\"TextDomain\";s:31:\"favicon-by-realfavicongenerator\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:31:\"Favicon by RealFaviconGenerator\";s:10:\"AuthorName\";s:16:\"Philippe Bernard\";}s:19:\"folders/folders.php\";a:11:{s:4:\"Name\";s:7:\"Folders\";s:9:\"PluginURI\";s:0:\"\";s:7:\"Version\";s:5:\"2.1.9\";s:11:\"Description\";s:62:\"Arrange media, pages, custom post types and posts into folders\";s:6:\"Author\";s:6:\"Premio\";s:9:\"AuthorURI\";s:36:\"https://premio.io/downloads/folders/\";s:10:\"TextDomain\";s:7:\"folders\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:7:\"Folders\";s:10:\"AuthorName\";s:6:\"Premio\";}s:23:\"gutenberg/gutenberg.php\";a:11:{s:4:\"Name\";s:9:\"Gutenberg\";s:9:\"PluginURI\";s:38:\"https://github.com/WordPress/gutenberg\";s:7:\"Version\";s:5:\"6.3.0\";s:11:\"Description\";s:85:\"Printing since 1440. This is the development plugin for the new block editor in core.\";s:6:\"Author\";s:14:\"Gutenberg Team\";s:9:\"AuthorURI\";s:0:\"\";s:10:\"TextDomain\";s:9:\"gutenberg\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:9:\"Gutenberg\";s:10:\"AuthorName\";s:14:\"Gutenberg Team\";}s:29:\"hide-featured-image/index.php\";a:11:{s:4:\"Name\";s:19:\"Hide Featured Image\";s:9:\"PluginURI\";s:65:\"http://shahpranav.com/2015/05/hide-featured-image-on-single-post/\";s:7:\"Version\";s:5:\"1.3.1\";s:11:\"Description\";s:49:\"To show/hide featured images on individual posts.\";s:6:\"Author\";s:10:\"shahpranaf\";s:9:\"AuthorURI\";s:22:\"http://shahpranav.com/\";s:10:\"TextDomain\";s:19:\"hide-featured-image\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:19:\"Hide Featured Image\";s:10:\"AuthorName\";s:10:\"shahpranaf\";}s:19:\"jetpack/jetpack.php\";a:11:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:19:\"https://jetpack.com\";s:7:\"Version\";s:3:\"7.6\";s:11:\"Description\";s:218:\"Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.\";s:6:\"Author\";s:10:\"Automattic\";s:9:\"AuthorURI\";s:19:\"https://jetpack.com\";s:10:\"TextDomain\";s:7:\"jetpack\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:24:\"Jetpack by WordPress.com\";s:10:\"AuthorName\";s:10:\"Automattic\";}s:27:\"LayerSlider/layerslider.php\";a:11:{s:4:\"Name\";s:14:\"LayerSlider WP\";s:9:\"PluginURI\";s:37:\"https://layerslider.kreaturamedia.com\";s:7:\"Version\";s:5:\"6.9.1\";s:11:\"Description\";s:341:\"LayerSlider is a premium multi-purpose content creation and animation platform. Easily create sliders, image galleries, slideshows with mind-blowing effects, popups, landing pages, animated page blocks, or even a full website. It empowers more than 1.5 million active websites on a daily basis with stunning visuals and eye-catching effects.\";s:6:\"Author\";s:14:\"Kreatura Media\";s:9:\"AuthorURI\";s:25:\"https://kreaturamedia.com\";s:10:\"TextDomain\";s:11:\"LayerSlider\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:14:\"LayerSlider WP\";s:10:\"AuthorName\";s:14:\"Kreatura Media\";}s:57:\"re-add-text-justify-button/re-add-text-justify-button.php\";a:11:{s:4:\"Name\";s:26:\"Re-Add Text Justify Button\";s:9:\"PluginURI\";s:64:\"https://github.com/salvatorecordiano/re-add-text-justify-button/\";s:7:\"Version\";s:5:\"0.1.3\";s:11:\"Description\";s:85:\"The most simple plugin to re-add text justify button in the WYSIWYG on WordPress 4.7+\";s:6:\"Author\";s:18:\"Salvatore Cordiano\";s:9:\"AuthorURI\";s:33:\"https://www.salvatorecordiano.it/\";s:10:\"TextDomain\";s:26:\"re-add-text-justify-button\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:26:\"Re-Add Text Justify Button\";s:10:\"AuthorName\";s:18:\"Salvatore Cordiano\";}s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";a:11:{s:4:\"Name\";s:21:\"Regenerate Thumbnails\";s:9:\"PluginURI\";s:58:\"https://alex.blog/wordpress-plugins/regenerate-thumbnails/\";s:7:\"Version\";s:5:\"3.1.1\";s:11:\"Description\";s:112:\"Regenerate the thumbnails for one or more of your image uploads. Useful when changing their sizes or your theme.\";s:6:\"Author\";s:25:\"Alex Mills (Viper007Bond)\";s:9:\"AuthorURI\";s:18:\"https://alex.blog/\";s:10:\"TextDomain\";s:21:\"regenerate-thumbnails\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:21:\"Regenerate Thumbnails\";s:10:\"AuthorName\";s:25:\"Alex Mills (Viper007Bond)\";}s:45:\"search-and-replace/inpsyde-search-replace.php\";a:11:{s:4:\"Name\";s:16:\"Search & Replace\";s:9:\"PluginURI\";s:49:\"https://wordpress.org/plugins/search-and-replace/\";s:7:\"Version\";s:5:\"3.2.1\";s:11:\"Description\";s:147:\"Search & Replace data in your whole WordPress setup, backup and import your database, change table prefix or migrate your domain to another domain.\";s:6:\"Author\";s:12:\"Inpsyde GmbH\";s:9:\"AuthorURI\";s:0:\"\";s:10:\"TextDomain\";s:18:\"search-and-replace\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"Search & Replace\";s:10:\"AuthorName\";s:12:\"Inpsyde GmbH\";}s:45:\"simple-page-ordering/simple-page-ordering.php\";a:11:{s:4:\"Name\";s:20:\"Simple Page Ordering\";s:9:\"PluginURI\";s:55:\"http://10up.com/plugins/simple-page-ordering-wordpress/\";s:7:\"Version\";s:5:\"2.3.2\";s:11:\"Description\";s:158:\"Order your pages and hierarchical post types using drag and drop on the built in page list. For further instructions, open the \"Help\" tab on the Pages screen.\";s:6:\"Author\";s:18:\"Jake Goldman, 10up\";s:9:\"AuthorURI\";s:15:\"http://10up.com\";s:10:\"TextDomain\";s:20:\"simple-page-ordering\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:20:\"Simple Page Ordering\";s:10:\"AuthorName\";s:18:\"Jake Goldman, 10up\";}s:23:\"revslider/revslider.php\";a:11:{s:4:\"Name\";s:17:\"Slider Revolution\";s:9:\"PluginURI\";s:34:\"https://revolution.themepunch.com/\";s:7:\"Version\";s:7:\"5.4.8.3\";s:11:\"Description\";s:45:\"Slider Revolution - Premium responsive slider\";s:6:\"Author\";s:10:\"ThemePunch\";s:9:\"AuthorURI\";s:22:\"https://themepunch.com\";s:10:\"TextDomain\";s:9:\"revslider\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:17:\"Slider Revolution\";s:10:\"AuthorName\";s:10:\"ThemePunch\";}s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";a:11:{s:4:\"Name\";s:13:\"Smooth Scroll\";s:9:\"PluginURI\";s:16:\"http://theme.co/\";s:7:\"Version\";s:5:\"2.0.3\";s:11:\"Description\";s:179:\"Enabling smooth scrolling on your website allows you to manage the physics of your scroll bar! This fun effect is great if you happen to have a lot users who utilize a mousewheel.\";s:6:\"Author\";s:7:\"Themeco\";s:9:\"AuthorURI\";s:16:\"http://theme.co/\";s:10:\"TextDomain\";s:7:\"__tco__\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:13:\"Smooth Scroll\";s:10:\"AuthorName\";s:7:\"Themeco\";}s:23:\"wp-smushit/wp-smush.php\";a:11:{s:4:\"Name\";s:5:\"Smush\";s:9:\"PluginURI\";s:47:\"http://wordpress.org/extend/plugins/wp-smushit/\";s:7:\"Version\";s:5:\"3.2.4\";s:11:\"Description\";s:156:\"Reduce image file sizes, improve performance and boost your SEO using the free free <a href=\"https://premium.wpmudev.org/\">WPMU DEV</a> WordPress Smush API.\";s:6:\"Author\";s:8:\"WPMU DEV\";s:9:\"AuthorURI\";s:28:\"https://premium.wpmudev.org/\";s:10:\"TextDomain\";s:10:\"wp-smushit\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:5:\"Smush\";s:10:\"AuthorName\";s:8:\"WPMU DEV\";}s:19:\"snippet/snippet.php\";a:11:{s:4:\"Name\";s:7:\"Snippet\";s:9:\"PluginURI\";s:18:\"http://theme.co/x/\";s:7:\"Version\";s:5:\"2.0.2\";s:11:\"Description\";s:34:\"Add Schema.Org for SEO improvement\";s:6:\"Author\";s:7:\"Themeco\";s:9:\"AuthorURI\";s:16:\"http://theme.co/\";s:10:\"TextDomain\";s:7:\"__tco__\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:7:\"Snippet\";s:10:\"AuthorName\";s:7:\"Themeco\";}s:29:\"superfly-menu-ExXaKB/main.php\";a:11:{s:4:\"Name\";s:13:\"Superfly Menu\";s:9:\"PluginURI\";s:33:\"http://superfly.looks-awesome.com\";s:7:\"Version\";s:5:\"5.0.6\";s:11:\"Description\";s:39:\"Off-canvas hamburger menu for WordPress\";s:6:\"Author\";s:13:\"Looks Awesome\";s:9:\"AuthorURI\";s:26:\"ht tp://looks-awesome.com\";s:10:\"TextDomain\";s:13:\"superfly-menu\";s:10:\"DomainPath\";s:5:\"/lang\";s:7:\"Network\";b:0;s:5:\"Title\";s:13:\"Superfly Menu\";s:10:\"AuthorName\";s:13:\"Looks Awesome\";}s:21:\"the-grid/the-grid.php\";a:11:{s:4:\"Name\";s:8:\"The Grid\";s:9:\"PluginURI\";s:34:\"http://www.theme-one.com/the-grid/\";s:7:\"Version\";s:5:\"2.7.2\";s:11:\"Description\";s:113:\"The Grid - Create advanced grids for any post type with endless possibilities (no programming knowledge required)\";s:6:\"Author\";s:8:\"Themeone\";s:9:\"AuthorURI\";s:25:\"http://www.theme-one.com/\";s:10:\"TextDomain\";s:14:\"tg-text-domain\";s:10:\"DomainPath\";s:6:\"/langs\";s:7:\"Network\";b:0;s:5:\"Title\";s:8:\"The Grid\";s:10:\"AuthorName\";s:8:\"Themeone\";}s:35:\"autodescription/autodescription.php\";a:11:{s:4:\"Name\";s:17:\"The SEO Framework\";s:9:\"PluginURI\";s:28:\"https://theseoframework.com/\";s:7:\"Version\";s:5:\"3.2.4\";s:11:\"Description\";s:105:\"An automated, advanced, accessible, unbranded and extremely fast SEO solution for your WordPress website.\";s:6:\"Author\";s:13:\"Sybre Waaijer\";s:9:\"AuthorURI\";s:28:\"https://theseoframework.com/\";s:10:\"TextDomain\";s:15:\"autodescription\";s:10:\"DomainPath\";s:9:\"/language\";s:7:\"Network\";b:0;s:5:\"Title\";s:17:\"The SEO Framework\";s:10:\"AuthorName\";s:13:\"Sybre Waaijer\";}s:37:\"tinymce-advanced/tinymce-advanced.php\";a:11:{s:4:\"Name\";s:16:\"TinyMCE Advanced\";s:9:\"PluginURI\";s:51:\"http://www.laptoptips.ca/projects/tinymce-advanced/\";s:7:\"Version\";s:5:\"5.2.1\";s:11:\"Description\";s:81:\"Enables advanced features and plugins in TinyMCE, the visual editor in WordPress.\";s:6:\"Author\";s:10:\"Andrew Ozz\";s:9:\"AuthorURI\";s:25:\"http://www.laptoptips.ca/\";s:10:\"TextDomain\";s:16:\"tinymce-advanced\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"TinyMCE Advanced\";s:10:\"AuthorName\";s:10:\"Andrew Ozz\";}s:27:\"tco-typekit/tco-typekit.php\";a:11:{s:4:\"Name\";s:7:\"Typekit\";s:9:\"PluginURI\";s:16:\"http://theme.co/\";s:7:\"Version\";s:5:\"2.0.3\";s:11:\"Description\";s:145:\"Create beautiful designs by incorporating Typekit fonts into your website. Our custom Extension makes this premium service easy to setup and use.\";s:6:\"Author\";s:7:\"Themeco\";s:9:\"AuthorURI\";s:16:\"http://theme.co/\";s:10:\"TextDomain\";s:7:\"__tco__\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:7:\"Typekit\";s:10:\"AuthorName\";s:7:\"Themeco\";}s:33:\"user-switching/user-switching.php\";a:11:{s:4:\"Name\";s:14:\"User Switching\";s:9:\"PluginURI\";s:59:\"https://johnblackbourn.com/wordpress-plugin-user-switching/\";s:7:\"Version\";s:5:\"1.5.2\";s:11:\"Description\";s:52:\"Instant switching between user accounts in WordPress\";s:6:\"Author\";s:30:\"John Blackbourn & contributors\";s:9:\"AuthorURI\";s:65:\"https://github.com/johnbillion/user-switching/graphs/contributors\";s:10:\"TextDomain\";s:14:\"user-switching\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:1;s:5:\"Title\";s:14:\"User Switching\";s:10:\"AuthorName\";s:30:\"John Blackbourn & contributors\";}s:47:\"robin-image-optimizer/robin-image-optimizer.php\";a:11:{s:4:\"Name\";s:32:\"Webcraftic Robin image optimizer\";s:9:\"PluginURI\";s:52:\"https://wordpress.org/plugins/robin-image-optimizer/\";s:7:\"Version\";s:5:\"1.4.0\";s:11:\"Description\";s:123:\"Optimize images without losing quality, speed up your website load, improve SEO and save money on server and CDN bandwidth.\";s:6:\"Author\";s:42:\"Webcraftic <[email protected]>\";s:9:\"AuthorURI\";s:44:\"https://robin-image-optimizer.webcraftic.com\";s:10:\"TextDomain\";s:21:\"robin-image-optimizer\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:32:\"Webcraftic Robin image optimizer\";s:10:\"AuthorName\";s:42:\"Webcraftic <[email protected]>\";}s:27:\"js_composer/js_composer.php\";a:11:{s:4:\"Name\";s:21:\"WPBakery Page Builder\";s:9:\"PluginURI\";s:19:\"http://wpbakery.com\";s:7:\"Version\";s:5:\"6.0.5\";s:11:\"Description\";s:157:\"Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.\";s:6:\"Author\";s:24:\"Michael M - WPBakery.com\";s:9:\"AuthorURI\";s:19:\"http://wpbakery.com\";s:10:\"TextDomain\";s:11:\"js_composer\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:21:\"WPBakery Page Builder\";s:10:\"AuthorName\";s:24:\"Michael M - WPBakery.com\";}s:37:\"wp-media-folders/wp-media-folders.php\";a:11:{s:4:\"Name\";s:16:\"WP Media folders\";s:9:\"PluginURI\";s:47:\"https://wordpress.org/plugins/wp-media-folders/\";s:7:\"Version\";s:5:\"1.1.5\";s:11:\"Description\";s:76:\"WP media Folders had the ability to rename and move files under real folders\";s:6:\"Author\";s:15:\"Damien Barrère\";s:9:\"AuthorURI\";s:0:\"\";s:10:\"TextDomain\";s:16:\"wp-media-folders\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"WP Media folders\";s:10:\"AuthorName\";s:15:\"Damien Barrère\";}}}i:2;i:1;i:3;d:1566974870.196412;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2882,'jpsq_sync-1566974870.204432-852643-36','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"get_plugins_action_links\";i:1;a:0:{}}i:2;i:1;i:3;d:1566974870.204385;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2883,'jpsq_sync-1566974870.205499-852643-37','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:14:\"active_modules\";i:1;a:0:{}}i:2;i:1;i:3;d:1566974870.205453;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2884,'jpsq_sync-1566974870.213561-852643-38','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:16:\"hosting_provider\";i:1;s:7:\"unknown\";}i:2;i:1;i:3;d:1566974870.213496;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2885,'jpsq_sync-1566974870.215177-852643-39','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:6:\"locale\";i:1;s:5:\"fr_FR\";}i:2;i:1;i:3;d:1566974870.215132;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2886,'jpsq_sync-1566974870.215826-852643-40','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"site_icon_url\";i:1;b:0;}i:2;i:1;i:3;d:1566974870.215789;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2887,'jpsq_sync-1566974870.216401-852643-41','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:5:\"roles\";i:1;a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:77:{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:10:\"copy_posts\";b:1;s:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:27:\"edit_other_envira_galleries\";b:1;s:28:\"edit_others_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:29:\"read_private_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:31:\"delete_private_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:29:\"edit_private_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:50:{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:10:\"copy_posts\";b:1;s:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:27:\"edit_other_envira_galleries\";b:1;s:28:\"edit_others_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:29:\"read_private_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:31:\"delete_private_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:30:\"delete_others_envira_galleries\";b:1;s:29:\"edit_private_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:19:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:24:\"publish_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:33:\"delete_published_envira_galleries\";b:1;s:31:\"edit_published_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:11:{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:19:\"edit_envira_gallery\";b:1;s:19:\"read_envira_gallery\";b:1;s:21:\"delete_envira_gallery\";b:1;s:21:\"edit_envira_galleries\";b:1;s:23:\"delete_envira_galleries\";b:1;s:23:\"create_envira_galleries\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:19:\"read_envira_gallery\";b:1;}}}}i:2;i:1;i:3;d:1566974870.216364;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2888,'jpsq_sync-1566974870.217135-852643-42','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"timezone\";i:1;s:14:\"Pacific/Noumea\";}i:2;i:1;i:3;d:1566974870.217099;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2889,'jpsq_sync-1566974870.217922-852643-43','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"available_jetpack_blocks\";i:1;a:0:{}}i:2;i:1;i:3;d:1566974870.217883;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2890,'jpsq_sync-1566974870.226277-852643-44','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"paused_themes\";i:1;a:0:{}}i:2;i:1;i:3;d:1566974870.226218;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2891,'jpsq_sync-1566974870.227540-852643-45','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:14:\"paused_plugins\";i:1;a:0:{}}i:2;i:1;i:3;d:1566974870.227477;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:15:\"[email protected]\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:138:\"http://wpdistillery.vm/wp-admin/plugins.php?action=deactivate&plugin=jetpack%2Fjetpack.php&plugin_status=all&paged=1&s&_wpnonce=f07bb5a8b8\";}}','no'),(2892,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:328503379;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1692048537;s:8:\"site_url\";i:1692048537;s:8:\"home_url\";i:1692048537;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:75629156;s:10:\"post_types\";i:1804125187;s:18:\"post_type_features\";i:2947830382;s:10:\"shortcodes\";i:717931465;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:3219767013;s:11:\"get_plugins\";i:1112459035;s:24:\"get_plugins_action_links\";i:223132457;s:14:\"active_modules\";i:223132457;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:577058967;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:3091428480;s:8:\"timezone\";i:3914498582;s:24:\"available_jetpack_blocks\";i:223132457;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;}','no'),(2893,'jpsq_sync_checkout','0:0','no'),(2896,'jetpack_plugin_api_action_links','a:11:{s:37:\"disable-comments/disable-comments.php\";a:2:{s:9:\"Réglages\";s:82:\"http://wpdistillery.vm/wp-admin/options-general.php?page=disable_comments_settings\";s:6:\"Outils\";s:69:\"http://wpdistillery.vm/wp-admin/tools.php?page=disable_comments_tools\";}s:33:\"duplicate-post/duplicate-post.php\";a:1:{s:9:\"Réglages\";s:70:\"http://wpdistillery.vm/wp-admin/options-general.php?page=duplicatepost\";}s:33:\"envira-gallery/envira-gallery.php\";a:3:{s:5:\"Tools\";s:83:\"http://wpdistillery.vm/wp-admin/edit.php?post_type=envira&page=envira-gallery-tools\";s:6:\"Addons\";s:84:\"http://wpdistillery.vm/wp-admin/edit.php?post_type=envira&page=envira-gallery-addons\";s:8:\"Settings\";s:86:\"http://wpdistillery.vm/wp-admin/edit.php?post_type=envira&page=envira-gallery-settings\";}s:19:\"folders/folders.php\";a:2:{s:8:\"Settings\";s:67:\"http://wpdistillery.vm/wp-admin/admin.php?page=wcp_folders_settings\";s:7:\"Upgrade\";s:66:\"http://wpdistillery.vm/wp-admin/admin.php?page=wcp_folders_upgrade\";}s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:54:\"http://wpdistillery.vm/wp-admin/admin.php?page=jetpack\";}s:23:\"wp-smushit/wp-smush.php\";a:2:{s:8:\"Settings\";s:52:\"http://wpdistillery.vm/wp-admin/admin.php?page=smush\";s:7:\"Upgrade\";s:122:\"https://premium.wpmudev.org/project/wp-smush-pro/?utm_source=smush&utm_medium=plugin&utm_campaign=smush_pluginlist_upgrade\";}s:21:\"the-grid/the-grid.php\";a:1:{s:4:\"Edit\";s:55:\"http://wpdistillery.vm/wp-admin/admin.php?page=the_grid\";}s:35:\"autodescription/autodescription.php\";a:3:{s:8:\"Settings\";s:71:\"http://wpdistillery.vm/wp-admin/admin.php?page=theseoframework-settings\";s:5:\"About\";s:37:\"https://theseoframework.com/about-us/\";s:10:\"Extensions\";s:39:\"https://theseoframework.com/extensions/\";}s:37:\"tinymce-advanced/tinymce-advanced.php\";a:1:{s:28:\"Paramètres de configuration\";s:73:\"http://wpdistillery.vm/wp-admin/options-general.php?page=tinymce-advanced\";}s:47:\"robin-image-optimizer/robin-image-optimizer.php\";a:1:{s:11:\"Paramètres\";s:89:\"http://wpdistillery.vm/wp-admin/options-general.php?page=rio_general-wbcr_image_optimizer\";}s:27:\"js_composer/js_composer.php\";a:1:{s:9:\"Réglages\";s:57:\"http://wpdistillery.vm/wp-admin/admin.php?page=vc-general\";}}','yes'),(2899,'jetpack_next_sync_time_sync','1566974930','yes'),(2900,'jetpack_next_sync_time_full-sync-enqueue','1566974880','yes'),(2904,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:29:\"block-options/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.3.0\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1566991644;s:11:\"plugin_path\";s:24:\"block-options/plugin.php\";}}s:7:\"abspath\";s:16:\"/var/www/public/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:24:\"block-options/plugin.php\";s:8:\"sdk_path\";s:29:\"block-options/vendor/freemius\";s:7:\"version\";s:5:\"2.3.0\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1566991644;}}','yes'),(2905,'fs_debug_mode','','yes'),(2906,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:3859;a:3:{s:4:\"slug\";s:13:\"block-options\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:24:\"block-options/plugin.php\";}}s:11:\"plugin_data\";a:1:{s:13:\"block-options\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:24:\"block-options/plugin.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1566975048;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.3.0\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:4:\"1.11\";s:14:\"plugin_version\";s:4:\"1.13\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:15:\"wpdistillery.vm\";s:9:\"server_ip\";s:12:\"192.168.33.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1566975048;s:7:\"version\";s:4:\"1.11\";}s:17:\"was_plugin_loaded\";b:1;s:15:\"prev_is_premium\";b:0;s:21:\"is_pending_activation\";b:1;s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:1:\"8\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:1;}}}s:13:\"file_slug_map\";a:1:{s:24:\"block-options/plugin.php\";s:13:\"block-options\";}s:7:\"plugins\";a:1:{s:13:\"block-options\";O:9:\"FS_Plugin\":22:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:10:\"EditorsKit\";s:4:\"slug\";s:13:\"block-options\";s:12:\"premium_slug\";s:21:\"block-options-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:24:\"block-options/plugin.php\";s:7:\"version\";s:4:\"1.13\";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:10:\"public_key\";s:32:\"pk_d79ca0343a73e035d571437156201\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3859\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"de4975ca715aa433303c63fd6367d539\";s:13:\"admin_notices\";a:1:{s:13:\"block-options\";a:0:{}}}','yes'),(2907,'fs_api_cache','a:0:{}','yes'),(2908,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(2911,'editorskit_plugin_feedback_activation_date','1566975057','no'),(3415,'tco_typekit','a:3:{s:18:\"tco_typekit_enable\";s:1:\"1\";s:18:\"tco_typekit_kit_id\";s:0:\"\";s:19:\"tco_typekit_request\";a:0:{}}','yes'),(3555,'edd_sl_c0ba2313a0b2e67a11a30e0d22c409f6','a:2:{s:7:\"timeout\";i:1567068152;s:5:\"value\";s:4:\"null\";}','no'),(3567,'modula_version','a:2:{s:13:\"upgraded_from\";s:5:\"2.1.5\";s:15:\"current_version\";s:5:\"2.1.5\";}','yes'),(3717,'modula_pro_license_key','7f1cc5b62bf0ed1b854916a40c297dad','yes'),(3721,'modula_pro_license_status','O:8:\"stdClass\":13:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";i:212;s:9:\"item_name\";s:19:\"Modula Grid Gallery\";s:13:\"license_limit\";i:1;s:10:\"site_count\";i:1;s:7:\"expires\";s:19:\"2020-08-29 23:59:59\";s:16:\"activations_left\";i:0;s:8:\"checksum\";s:32:\"48df406bc87a310f40b7945c3d1083e1\";s:10:\"payment_id\";i:344025;s:13:\"customer_name\";s:15:\"Yolan Maldonado\";s:14:\"customer_email\";s:19:\"[email protected]\";s:8:\"price_id\";b:0;}','yes'),(3777,'modula-checks','a:1:{s:11:\"edit-notice\";i:1;}','yes'),(3945,'edd_sl_dd048ef45cb6ead82e8379c481357def','a:2:{s:7:\"timeout\";i:1568367093;s:5:\"value\";s:5604:\"{\"new_version\":\"2.1.1\",\"stable_version\":\"2.1.1\",\"name\":\"Modula Grid Gallery\",\"slug\":\"Modula\",\"url\":\"https:\\/\\/wp-modula.com\\/downloads\\/modula-grid-gallery\\/?changelog=1\",\"last_updated\":\"2019-07-24 15:09:03\",\"homepage\":\"https:\\/\\/wp-modula.com\\/downloads\\/modula-grid-gallery\\/\",\"package\":\"https:\\/\\/wp-modula.com\\/edd-sl\\/package_download\\/MTU3MTk2MzQ5NDo3ZjFjYzViNjJiZjBlZDFiODU0OTE2YTQwYzI5N2RhZDoyMTI6NTIxNGIyNDgzZGI5OGE1ZDA3ZDJiOGRjODcxMDRjNWQ6aHR0cEAvL3dwZGlzdGlsbGVyeS52bTow\",\"download_link\":\"https:\\/\\/wp-modula.com\\/edd-sl\\/package_download\\/MTU3MTk2MzQ5NDo3ZjFjYzViNjJiZjBlZDFiODU0OTE2YTQwYzI5N2RhZDoyMTI6NTIxNGIyNDgzZGI5OGE1ZDA3ZDJiOGRjODcxMDRjNWQ6aHR0cEAvL3dwZGlzdGlsbGVyeS52bTow\",\"sections\":{\"description\":\"\",\"changelog\":\"<p>2.1.1 - 24.07.2019<br \\/>\\nAdded 20 more hover effects<br \\/>\\nAdded protection for license key<br \\/>\\nFixed issue when sorting images ( filters & video link disappeared )<br \\/>\\nFixed replace image functionality<\\/p>\\n<p>2.1.0 - 03.06.2019<br \\/>\\nAdded sorting option<br \\/>\\nAdded default filter<br \\/>\\nAdded filter positions<br \\/>\\nAdded filter styles<br \\/>\\nAdded collapsible filters for mobile<br \\/>\\nAdded the option to remove \\u201cAll\\u201d filter<br \\/>\\nAdded max images on Custom Grid<br \\/>\\nAdded option to show all images in lightbox if max image is used<\\/p>\\n<p>Fixed \\u201cShow in lightbox only filtered images\\u201d<br \\/>\\nFixed Lifetime license<br \\/>\\nFixed \\\"filters do not work with Hebrew characters\\\"<br \\/>\\nChanged CDN link<\\/p>\\n<p>2.0.6 - 28.03.2019<br \\/>\\nChanged how we save on bulk edit.<\\/p>\\n<p>2.0.5 - 13.03.2019<br \\/>\\nAdded option to save filters without exit on bulk edit.<\\/p>\\n<p>2.0.4<br \\/>\\nFixed Curtain Hover Effect<br \\/>\\nFixed Max Images setting<br \\/>\\n2.0.3<br \\/>\\nAdded Bulk Edit<br \\/>\\nFixed \\\"Install Modula Lite\\\" notice<br \\/>\\nAdded the functionality to install Extensions<br \\/>\\n2.0.2<br \\/>\\nFixed Filters<br \\/>\\n2.0.1<br \\/>\\nFixed Hover Color &amp; Opacity<br \\/>\\n2.0.0 \\u2013 12.17.2018<br \\/>\\nMajor Update<br \\/>\\nBuild Custom Grids \\u2013 Take full control of your galleries.<br \\/>\\nNew Admin Interface \\u2013 For a more intuitive user interface, we\\u2019ve blended Modula right into WordPress.<br \\/>\\nDrag &amp; Drop to Upload Images<br \\/>\\nGuidelines to Help You Make the Perfect Gallery<br \\/>\\nPreview your Gallery Without the Hassle<\\/p>\\n<p><strong>1.3.1<\\/strong><\\/p>\\n<p>Changed lightbox script<\\/p>\\n<p><strong>1.3.0<\\/strong><\\/p>\\n<p>Added compatibility with : WPML\\/Visual Composer\\/Page Builder by SiteOrigin<br \\/>\\nFixed bugs with captions &amp; titles<br \\/>\\nLocalized all text strings<br \\/>\\nFixed lightbox bug<\\/p>\\n<p><strong>1.2.1<\\/strong><\\/p>\\n<p>[Fix] Update Process<\\/p>\\n<p><strong>1.2.0<\\/strong><\\/p>\\n<p>[Fix] Various fixes to the bugs reported by customers<\\/p>\\n<p><strong>1.0.6<\\/strong><\\/p>\\n<p>[Add] Enabled captions in LightGallery<\\/p>\\n<p><strong>1.0.5<\\/strong><\\/p>\\n<p>[Fix] Wrong behaviour when selecting \\\"Don\'t use captions\\\"<br \\/>\\n[Enhancement] Images on admin panel are now always squared<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":[],\"tested\":\"4.9.8\",\"compatibility\":\"a:1:{s:5:\\\"4.9.8\\\";a:1:{s:6:\\\"1.5.21\\\";a:3:{i:0;s:4:\\\"100%\\\";i:1;s:1:\\\"5\\\";i:2;s:1:\\\"5\\\";}}}\",\"description\":[\"\"],\"changelog\":[\"<p>2.1.1 - 24.07.2019<br \\/>\\nAdded 20 more hover effects<br \\/>\\nAdded protection for license key<br \\/>\\nFixed issue when sorting images ( filters & video link disappeared )<br \\/>\\nFixed replace image functionality<\\/p>\\n<p>2.1.0 - 03.06.2019<br \\/>\\nAdded sorting option<br \\/>\\nAdded default filter<br \\/>\\nAdded filter positions<br \\/>\\nAdded filter styles<br \\/>\\nAdded collapsible filters for mobile<br \\/>\\nAdded the option to remove \\u201cAll\\u201d filter<br \\/>\\nAdded max images on Custom Grid<br \\/>\\nAdded option to show all images in lightbox if max image is used<\\/p>\\n<p>Fixed \\u201cShow in lightbox only filtered images\\u201d<br \\/>\\nFixed Lifetime license<br \\/>\\nFixed \\\"filters do not work with Hebrew characters\\\"<br \\/>\\nChanged CDN link<\\/p>\\n<p>2.0.6 - 28.03.2019<br \\/>\\nChanged how we save on bulk edit.<\\/p>\\n<p>2.0.5 - 13.03.2019<br \\/>\\nAdded option to save filters without exit on bulk edit.<\\/p>\\n<p>2.0.4<br \\/>\\nFixed Curtain Hover Effect<br \\/>\\nFixed Max Images setting<br \\/>\\n2.0.3<br \\/>\\nAdded Bulk Edit<br \\/>\\nFixed \\\"Install Modula Lite\\\" notice<br \\/>\\nAdded the functionality to install Extensions<br \\/>\\n2.0.2<br \\/>\\nFixed Filters<br \\/>\\n2.0.1<br \\/>\\nFixed Hover Color &amp; Opacity<br \\/>\\n2.0.0 \\u2013 12.17.2018<br \\/>\\nMajor Update<br \\/>\\nBuild Custom Grids \\u2013 Take full control of your galleries.<br \\/>\\nNew Admin Interface \\u2013 For a more intuitive user interface, we\\u2019ve blended Modula right into WordPress.<br \\/>\\nDrag &amp; Drop to Upload Images<br \\/>\\nGuidelines to Help You Make the Perfect Gallery<br \\/>\\nPreview your Gallery Without the Hassle<\\/p>\\n<p><strong>1.3.1<\\/strong><\\/p>\\n<p>Changed lightbox script<\\/p>\\n<p><strong>1.3.0<\\/strong><\\/p>\\n<p>Added compatibility with : WPML\\/Visual Composer\\/Page Builder by SiteOrigin<br \\/>\\nFixed bugs with captions &amp; titles<br \\/>\\nLocalized all text strings<br \\/>\\nFixed lightbox bug<\\/p>\\n<p><strong>1.2.1<\\/strong><\\/p>\\n<p>[Fix] Update Process<\\/p>\\n<p><strong>1.2.0<\\/strong><\\/p>\\n<p>[Fix] Various fixes to the bugs reported by customers<\\/p>\\n<p><strong>1.0.6<\\/strong><\\/p>\\n<p>[Add] Enabled captions in LightGallery<\\/p>\\n<p><strong>1.0.5<\\/strong><\\/p>\\n<p>[Fix] Wrong behaviour when selecting \\\"Don\'t use captions\\\"<br \\/>\\n[Enhancement] Images on admin panel are now always squared<\\/p>\\n\"]}\";}','no'),(3953,'envira_gallery','a:5:{s:3:\"key\";s:32:\"6cf852b64af72169b79a927152441f3b\";s:4:\"type\";s:3:\"pro\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}','yes'),(4002,'envira_gallery_license_updates','1568442664','yes'),(4017,'eg_280c6f277fb3be4b233466fe8283e4a9','a:2:{s:7:\"timeout\";i:1568406685;s:5:\"value\";s:69795:\"{\"new_version\":\"1.8.6.3\",\"package\":\"https:\\/\\/enviragallery.s3.us-east-2.amazonaws.com\\/plugins\\/envira-gallery\\/envira-gallery.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIVBSMFW42TBGGRPA%2F20190913%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20190913T063126Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=a2e772b6a6c3afd150bf0ff20913d00ca65c6ec2fb00936dc97a653fc9192c4d\",\"slug\":\"envira-gallery\",\"last_update\":1568356286,\"name\":\"Envira Gallery\",\"version\":\"1.8.6.3\",\"author\":\"<a href=\\\"https:\\/\\/enviragallery.com\\\">Envira Gallery Team<\\/a>\",\"author_profile\":\"<a href=\\\"https:\\/\\/profiles.wordpress.org\\/enviragallery\\\">https:\\/\\/profiles.wordpress.org\\/enviragallery<\\/a>\",\"requires\":\"4.4.0\",\"tested\":\"5.2.2\",\"last_updated\":\"09-9-2019\",\"homepage\":\"https:\\/\\/enviragallery.com\\/\",\"changelog\":\"\\n <h3>1.8.6.3 (09-09-2019)<\\/h3>\\n <ul>\\n <li>Fix: Issue regarding a plugin conflict w\\/ Fusion Builder & Avada.<\\/li>\\n <\\/ul>\\n \\n <h3>1.8.6.2 (06-05-2019)<\\/h3>\\n <ul>\\n <li>Fix: Issue regarding updating or installing addons from Addons page.<\\/li>\\n <li>Fix: Issue related to automatic layout on some galleries.<\\/li>\\n <\\/ul>\\n\\n <h3>1.8.6.1 (06-04-2019)<\\/h3>\\n <ul>\\n <li>Added: Gutenberg gallery creation.<\\/li>\\n <li>Added: Warning notice for WordPress 4.8 and eariler versions.<\\/li>\\n <li>Fix: Resolved issue where HTML markup was not being saved when entered in gallery description.<\\/li>\\n <li>Fix: Captions appearing when set to \'none\' in Base Dark theme.<\\/li>\\n <li>Fix: Improved Gutenberg block functionality and bug fixes.<\\/li>\\n <li>Fix: Resolved conflict with Media Cloud plugin.<\\/li>\\n <li>Fix: Resolved conflict with Divi theme related to lightbox.<\\/li>\\n <li>Fix: Random widget improvements.<\\/li>\\n <li>Fix: Remove messaging from Site Health Page (WordPress 5.2+)<\\/li>\\n <li>Fix: Clearing album cache in \'tools\' now working.<\\/li>\\n <li>Fix: Improved escaping.<\\/li>\\n <li>Fix: phpcs clean up.<\\/li>\\n <li>Removed: \'Random Image Size\' selection from Configuration Tab.<\\/li>\\n <\\/ul>\\n\\n <h3>1.8.5.7 (03-21-2019)<\\/h3>\\n <ul>\\n <li>Fix: Issues related to gutenberg decpricated function.<\\/li>\\n <\\/ul>\\n\\t\\t\\t <h3>1.8.5.5 (02-20-2019)<\\/h3>\\n <ul>\\n <li>Fix: Issues related colums layout.<\\/li>\\n <\\/ul>\\n\\t\\t\\t <h3>1.8.5.5 (02-20-2019)<\\/h3>\\n <ul>\\n <li>Fix: Issues related to duplicated images in lightbox.<\\/li>\\n <\\/ul>\\n <h3>1.8.5.4 (02-20-2019)<\\/h3>\\n <ul>\\n <li>Fix: Issues related to random sorting on frontend.<\\/li>\\n <li>Fix: Instagram issues with lightbox and with Envira link.<\\/li>\\n <\\/ul>\\n <h3>1.8.5.3 (01-23-2019)<\\/h3>\\n <ul>\\n <li>Added: Hook for categories on gallery imports.<\\/li>\\n <li>Fix: Quotation Mark issue with lightboxes and gallery titles.<\\/li>\\n <\\/ul>\\n <h3>1.8.5.2 (01-16-2019)<\\/h3>\\n <ul>\\n <li>Added: Initial limited support for SVG.<\\/li>\\n <li>Added: Welcome screen disabled for white labeling.<\\/li>\\n <li>Added: Better compatability with The Events Calendar and Advanced Rich Text Tools for Gutenberg plugins.<\\/li>\\n <li>Fix: Supporting different lightbox images for gallery images.<\\/li>\\n <li>Fix: XML feed error resolved.<\\/li>\\n <\\/ul>\\n <h3>1.8.5.1 (12-19-2018)<\\/h3>\\n <ul>\\n <li>Fix: Bugs related to Envira Gutenberg block.<\\/li>\\n <li>Fix: Remove PHP Warning On Clearing Transients in Tools screen.<\\/li>\\n <li>Fix: Remove HTML in System Status screen.<\\/li>\\n <li>Fix: Better compatibility with Jetpack sharing.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/li>\\n <\\/ul>\\n <h3>1.8.5 (12-12-2018)<\\/h3>\\n <ul>\\n <li>Added: Gutenberg Block.<\\/li>\\n <li>Added: Welcome Screen.<\\/li>\\n <li>Added: New Client tools area.<\\/li>\\n <li>Added: Portuguese (Brazil) translations.<\\/li>\\n <li>Added: Gallery title now added in envira_get_galleries returned function data.<\\/li>\\n <li>Fix: Improve encoding for captions in lightbox.<\\/li>\\n <li>Fix: Base Light in albums and galleries now uses correct icon for the navigation arrows.<\\/li>\\n <li>Fix: Resolved issues with importing galleries in some cases.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.8.4.5 (10-31-2018)<\\/h3>\\n <ul>\\n <li>Fix: Issue w\\/ standalone function and older versions of the Album addon.<\\/li>\\n <\\/ul>\\n <h3>1.8.4.4 (10-31-2018)<\\/h3>\\n <ul>\\n <li>Added: When Lightbox is not in infinite loop, first previous and last next arrows no longer appear.<\\/li>\\n <li>Fix: Gallery title shows in gallery toolbar instead of page title.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.8.4.3 (10-18-2018)<\\/h3>\\n <ul>\\n <li>Fix: Resolved issues for installs using older PHP versions.<\\/li>\\n <\\/ul>\\n <h3>1.8.4.2 (10-16-2018)<\\/h3>\\n <ul>\\n <li>Enhancement: New \\\"Hide Thumbnails On Opening Lightbox\\\" option.<\\/li>\\n <li>Enhancement: New \\\"Enable Title\\/Caption Below Image\\\" option for column layouts on Mobile Gallery Settings tab.<\\/li>\\n <li>Enhancement: Improved Import\\/Export buttons<\\/li>\\n <li>Enhancement: Allow search by single or multiple post IDs for galleries in gallery admin list<\\/li>\\n <li>Added: Unofficial support for PDFs in Lightboxes<\\/li>\\n <li>Added: Importing gallery should automatically apply the gallery title to the new post<\\/li>\\n <li>Added: envira_import_gallery_post_data and envira_import_gallery_metadata WordPress filters for developers to alter imported data<\\/li>\\n <li>Added: envirabox_theme_image_counter WordPress filter to allow filtering of Image XX of XX text<\\/li>\\n <li>Added: Adjustment of margins and padding for non-supersized Lightbox images<\\/li>\\n <li>Fix: Tweaked admin UI and CSS on mobile and narrow width devices.<\\/li>\\n <li>Fix: If Gallery Theme Addon deactivated, revert galleries using themes to legacy.<\\/li>\\n <li>Fix: Various bug fixes, minor code tweaks, output to resolve W3C reported errors, and PHP compatability adjustments<\\/li>\\n <\\/ul>\\n <h3>1.8.4.1 (09-05-2018)<\\/h3>\\n <ul>\\n <li>Hotfix: Fix false positive caused by WordFence.<\\/li>\\n <\\/ul>\\n\\t\\t\\t\\t<h3>1.8.4 (08-22-2018)<\\/h3>\\n <ul>\\n <li>Added: Random image gallery widget.<\\/li>\\n <li>Added: Limit images option for standard gallery widget.<\\/li>\\n <li>Added: Filter for lightbox \\\"idle time\\\".<\\/li>\\n <li>Enhancement: Added support for featured images.<\\/li>\\n <li>Fix: Random galleries not random in certain circumstances.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n\\t\\t\\t\\t<\\/ul>\\n <h3>1.8.3 (05-30-2018)<\\/h3>\\n <ul>\\n\\t\\t\\t\\t\\t<li>Fix: Lightbox thumbnail custom sizes<\\/li>\\n\\t\\t\\t\\t\\t<li>Fix: Multiple Envira link fixes<\\/li>\\n\\t\\t\\t\\t\\t<li>Fix: Captions and titles missing from automatic layout<\\/li>\\n\\t\\t\\t\\t\\t<li>Fix: Toolbar navigation <\\/li>\\n\\t\\t\\t\\t\\t<li>Fix: Supersize appearance with no thumbnails<\\/li>\\n\\t\\t\\t\\t\\t<li>Fix: Minor bug fixes<\\/li>\\n\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<h3>1.8.2.1 (05-01-2018)<\\/h3>\\n <ul>\\n <li>Fix: Fix missing lightbox captions.<\\/li>\\n <\\/ul>\\n <h3>1.8.2 (05-01-2018)<\\/h3>\\n <ul>\\n \\u0010<li>Enhancement: Clear Envira Cache on update<\\/li>\\n <li>Enhancement: Using WordPress Importer adjust meta to new URL<\\/li>\\n <li>Enhancement: Image Dimensions set by default, option has been removed<\\/li>\\n <li>Fix: Random sorting not opening proper lightbox image<\\/li>\\n <li>Fix: Double images in Lightbox for Images with links in Captions<\\/li>\\n <li>Fix: Minor Bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.8.1 (04-20-2018)<\\/h3>\\n <ul>\\n <li>Fix: Addressed performance issues.<\\/li>\\n <li>Fix: Resolved issue regarding using slug instead of id in envira shortcode in some situations.<\\/li>\\n <li>Fix: Resolved JS error w\\/ Yoast and Divi<\\/li>\\n <li>Fix: Minor Bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.8.0 (04-10-2018)<\\/h3>\\n <ul>\\n <li>Added: Fancybox3<\\/li>\\n <li>Added: Link shortcode to open linkbox [envira_link id=GALLERYID]Link Text[\\/envira_link]<\\/li>\\n <li>Added: Filters to override or create Lightbox Themes Directly in themes<\\/li>\\n <li>Added: Gallery Scripts Optimization<\\/li>\\n <li>Fix: Cases that prevent cropping.<\\/li>\\n <li>Fix: Minor Bug fixes.<\\/li>\\n <li>Depricated: Justified Gallery Themes<\\/li>\\n <\\/ul>\\n\\n <h3>1.7.3 (11-07-2017)<\\/h3>\\n <ul>\\n <li>Fix: Tweaks to updater class to prevent multiple calls<\\/li>\\n <li>Fix: Minor bug fixes<\\/li>\\n <\\/ul>\\n <h3>1.7.1 (11-07-2017)<\\/h3>\\n <ul>\\n\\t\\t\\t\\t\\t\\t<li>Added: UI spinner when adding photos to gallery<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Cases where thumbnails have double URLS<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Compatibility with 3rd Party builders<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Random sorting<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Retina Cropping<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Prevent Caption Line breaks<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: RTL admin styling<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Minor bug fixes<\\/li>\\n <\\/ul>\\n\\n <h3>1.7.0.2 (10-23-2017)<\\/h3>\\n <ul>\\n <li>Fix: Compatibility with X Theme<\\/li>\\n <li>Fix: Compatibility with Yoast SEO<\\/li>\\n <li>Added: ENVIRA_DEBUG to System Info<\\/li>\\n <\\/ul>\\n\\n <h3>1.7.0.1 (10-19-2017)<\\/h3>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t<li>Added: Cropping Position Option<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Minor bug fixes<\\/li>\\n\\t\\t\\t\\t\\t<\\/ul>\\n\\n <h3>1.7.0 (10-18-2017)<\\/h3>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t<li>Added: Cropping is now done in a background process<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: Fragment Caching - gallery output is now cached utilizing fragment caching<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: Debug Screen<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: Sorting moved to config screen<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: Support for Search in Widget<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: French Translation<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: Russian Translation<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Url field linking to external<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Url on lightbox image using proper url<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Raw HTML in captions<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Minor bug fixes<\\/li>\\n\\t\\t\\t\\t\\t<\\/ul>\\n <h3>1.6.1.7 (10-08-2017)<\\/h3>\\n <ul>\\n\\t\\t\\t <li>Fixed: Minor bug fixes<\\/li>\\n <\\/ul>\\n <h3>1.6.1.6 (08-22-2017)<\\/h3>\\n <ul>\\n\\t\\t\\t\\t\\t\\t<li>Fixed: Opacity Issue with Lightbox<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Added: French Translations<\\/li>\\n <\\/ul>\\n <h3>1.6.1.5 (08-14-2017)<\\/h3>\\n <ul>\\n <li>Hotfix: Resolved issue with linking on certain cofigurations<\\/li>\\n <\\/ul>\\n <h3>1.6.1.4 (08-08-2017)<\\/h3>\\n <ul>\\n <li>Fixed: WP Caption link to open in new window<\\/li>\\n <li>Fixed: HTML in caption text<\\/li>\\n <\\/ul>\\n <h3>1.6.1.3 (07-24-2017)<\\/h3>\\n <ul>\\n <li>Fix: Title\\/Caption setting on automatic.<\\/li>\\n <li>Fix: Minor Bug Fixes.<\\/li>\\n <\\/ul>\\n <h3>1.6.1.2 (06-27-2017)<\\/h3>\\n <ul>\\n <li>Fix: Duplicate \\\"New Gallery\\\" links in \\\"New\\\" adminbar dropbown.<\\/li>\\n <li>Fix: Unneeded \\\"Uploading 1 of x\\\" messages removed.<\\/li>\\n <li>Fix: Legacy lightbox CSS adjusted.<\\/li>\\n <li>Fix: Add Album button for RTL displays.<\\/li>\\n <li>Fix: Minor Bug Fixes.<\\/li>\\n <\\/ul>\\n <h3>1.6.1.1 (05-16-2017)<\\/h3>\\n <ul>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Bulk editing clearing data.<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Sorting by title.<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Minor Bug Fixes.<\\/li>\\n <\\/ul>\\n <h3>1.6.1 (04-13-2017)<\\/h3>\\n <ul>\\n <li>Added; Background Processing Framework<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Caption Length on Lightboxes<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Wrong Image Dimensions being set when using fixed sizes<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Line breaks on captions<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix Title\\/Caption Display<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Animated Gifs<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: LazyLoading on Mobile<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix: Minor Bug Fixes<\\/li>\\n <\\/ul>\\n <h3>1.6.0.2 (04-04-2017)<\\/h3>\\n <ul>\\n <li>Fix: Captions displaying on Automatic.<\\/li>\\n <li>Fix: Portrait Cropping.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.6.0.1 (03-31-2017)<\\/h3>\\n <ul>\\n <li>Fix: Image dimensions not set proper with Lazy Loading.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.6.0 (03-30-2017)<\\/h3>\\n <ul>\\n <li>Added: Lazy loading.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.5.9.9 (03-08-2017)<\\/h3>\\n <ul>\\n <li>Added: Auto Save when editing metadata<\\/li>\\n <li>Fix: Show Title\\/Caption in automatic.<\\/li>\\n <li>Fix: When moving images to another gallery use before\\/after setting.<\\/li>\\n <\\/ul>\\n <h3>1.5.9.8 (02-17-2017)<\\/h3>\\n <ul>\\n <li>Fix: Pagination markup returning wrong.<\\/li>\\n <\\/ul>\\n <h3>1.5.9.7 (02-15-2017)<\\/h3>\\n <ul>\\n <li>Fix: Alter php class caching.<\\/li>\\n <\\/ul>\\n <h3>1.5.9.6 (02-15-2017)<\\/h3>\\n <ul>\\n <li>Added: Bulk Edit Image status<\\/li>\\n <li>Added: Select Full sized Images.<\\/li>\\n <li>Fix: Conflicts with Thrive.<\\/li>\\n <li>Fix: Php debug notice and warning.<\\/li>\\n <li>Fix: Minor Bug Fixes.<\\/li>\\n <li>Fix: Performance with external Links<\\/li>\\n <\\/ul>\\n <h3>1.5.9.5 (02-02-2017)<\\/h3>\\n <ul>\\n <li>Fix: Prevent error on some installs running on PHP 5.3.x<\\/li>\\n <\\/ul>\\n <h3>1.5.9.4 (02-01-2017)<\\/h3>\\n <ul>\\n <li>Added: Show Image title or caption<\\/li>\\n <li>Fix: Html tags in captions<\\/li>\\n <li>Fix: Editing image inside media library is not updating the lightbox image used<\\/li>\\n <li>Fix: Lightbox Image size selection<\\/li>\\n <li>Fix: Minor Bug Fixes<\\/li>\\n\\n <\\/ul>\\n <h3>1.5.9.3 (01-27-2017)<\\/h3>\\n <ul>\\n <li>Fix: Addons not showing updates<\\/li>\\n <\\/ul>\\n <h3>1.5.9.2 (01-19-2017)<\\/h3>\\n <ul>\\n <li>Fix: Dark Theme icons being removed.<\\/li>\\n <li>Fix: Improved image selection based on various settings.<\\/li>\\n <li>Fix: Retina pulling the wrong src.<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.5.9.1 (2017-01-15)<\\/h3>\\n <ul>\\n <li>Fix: Cases where images are blurry (upscaled)<\\/li>\\n <\\/ul>\\n <h3>1.5.9 (2017-01-10)<\\/h3>\\n <ul>\\n <li>PHP optimizations to improve performance<\\/li>\\n <li>Automatic Layout option now selects default images based on the specified row height to improve gallery loading times.<\\/li>\\n <li>Fix: UI after deleting images from galleries <\\/li>\\n <li>Fix: UI after deleting images from galleries <\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Fix galleries from showing up in search when standalone is disabled<\\/li>\\n\\t\\t\\t\\t\\t\\t<li>Minor bug fixes<\\/li>\\n <\\/ul>\\n <h3>1.5.8.4.1 (2016-12-16)<\\/h3>\\n <ul>\\n <li>Added: Select Image sizes for Automatic Layout<\\/li>\\n <li>Fix: Cases where images return 403<\\/li>\\n <li>Fix: Various Minor bugs<\\/li>\\n\\n <\\/ul>\\n <h3>1.5.8.4.1 (2016-12-08)<\\/h3>\\n <ul>\\n <li>Fix: Conflict with Mobile Detect<\\/li>\\n <\\/ul>\\n\\n <h3>1.5.8.4 (2016-12-08)<\\/h3>\\n <ul>\\n <li>Added: UI\\/UX Enhancement\\u2019s<\\/li>\\n <li>Added: Publish\\/Draft specific images<\\/li>\\n <li>Added Touchswipe support for lightbox thumbnails<\\/li>\\n <li>Added: Function for detecting mobile more precisely <\\/li>\\n <li>Fix: Default URL field to Image URL<\\/li>\\n <li>Fix: Gallery Title on misc tab being used instead of proper title<\\/li>\\n <li>Fix: Addon Search<\\/li>\\n <li>Fix: Allow for automatic margins to be set at 0<\\/li>\\n <li>Fix: Supersize on retina screen not showing proper image<\\/li>\\n <li>Fix: Lightbox icons now are prefixed<\\/li>\\n <li>Fix: Minor issues with 4.7<\\/li>\\n\\n <\\/ul>\\n <h3>1.5.8.3 (2016-11-07)<\\/h3>\\n <ul>\\n <li>Fix: Various minor bug fixes<\\/li>\\n <\\/ul>\\n <h3>1.5.8.2 (2016-11-03)<\\/h3>\\n <ul>\\n <li>Fix: Conflicts with some themes and plugins<\\/li>\\n <\\/ul>\\n <h3>1.5.8.1 (2016-11-03)<\\/h3>\\n <ul>\\n <li>Fix: Fallback for older versions of albums<\\/li>\\n <\\/ul>\\n <h3>1.5.8 (2016-11-03)<\\/h3>\\n <ul>\\n <li>Added: New Default Lightbox theme Base ( Dark )<\\/li>\\n <li>Added: Standalone Addon is now in the core!<\\/li>\\n <li>Added: Supersize Addon is now in the core!<\\/li>\\n <li>Added: Option to add margins with automatic layout<\\/li>\\n <li>Added: Option to handle last row in automatic layout<\\/li>\\n <li>Fix: Improved Error handled for servers without proper permissions<\\/li>\\n <li>Fix: Mobile Columns handled by CSS<\\/li>\\n <li>Fix: Mobile remove link if Lightbox is disabled<\\/li>\\n <li>Fix: Standalone support for page templates in folders<\\/li>\\n <li>Fix: Cases where servers would only allow you to insert 20 images <\\/li>\\n <li>Fix: Multiple instances of the same gallery now appearing<\\/li>\\n <li>Fix: Lightbox Caption not wrapping<\\/li>\\n <li>Fix: Supersize accounts for the admin bar<\\/li>\\n <li>Fix: Supersize styling<\\/li>\\n <li>Fix: Legacy Theme arrows hidden at certain browser widths<\\/li>\\n <li>Fix: Supersize css targeting body<\\/li>\\n <\\/ul>\\n <h3>1.5.7.2 (2016-10-06)<\\/h3>\\n <ul>\\n <li>Fix: Fatal error for older versions of PHP.<\\/li>\\n <li>Fix: PHP Notice for older versions of PHP.<\\/li>\\n <\\/ul>\\n <h3>1.5.7.1 (2016-10-06)<\\/h3>\\n <ul>\\n <li>Fix: envira-min.js not being minified.<\\/li>\\n <li>Fix: Invalid path to gallery themes stylesheets.<\\/li>\\n <li>Fix: Incompatibilities with WordPress versions lower than 4.5.<\\/li>\\n <\\/ul>\\n <h3>1.5.7 (2016-10-04)<\\/h3>\\n <ul>\\n <li>Fix: Uploading\\/Inserting Images from \\\"Select Files from Other Sources\\\" should no longer wipe out caption.<\\/li>\\n <li>Fix: Properly showing images at current ratio in list view inside gallery settings.<\\/li>\\n <li>Fix: Ensuring no duplicate images on pages which hold multiple dynamic galleries, with and without pagination.<\\/li>\\n <li>Updated: CSS Opacity added back to automatic gallery layout settings.<\\/li>\\n <li>Updated: Justified layout CSS is prefixed.<\\/li>\\n <\\/ul>\\n <h3>1.5.6 (2016-09-22)<\\/h3>\\n <ul>\\n <li>Fix: Modal \\\"Add Gallery\\\" CSS now looks normal when you activate it on Envira screens.<\\/li>\\n <li>Updated: CSS Opacity added back to automatic gallery layout settings.<\\/li>\\n <\\/ul>\\n <h3>1.5.5 (2016-09-16)<\\/h3>\\n <ul>\\n <li>Fix: \\\"EnviraJustifiedGallery\\\" undefined JavaScript error resolved for certain installs.<\\/li>\\n <li>Fix: No longer does enabling image cropping before setting the layout to automatic result in image cropping.<\\/li>\\n <li>Updated: Restored sort options and \\\"Render All WordPress Galleries\\\" option for automattic layouts.<\\/li>\\n <li>Updated: Russian translation.<\\/li>\\n <\\/ul>\\n <h3>1.5.4 (2016-09-08)<\\/h3>\\n <ul>\\n <li>Fix: CSS Animations and Deeplinking options should now show for Justified Layout (Automatic).<\\/li>\\n <\\/ul>\\n <h3>1.5.3 (2016-09-01)<\\/h3>\\n <ul>\\n <li>Fix: Dropbox Addon now will now extract images from subdirectories or subfolders.<\\/li>\\n <li>Fix: Self-hosted videos should now show properly.<\\/li>\\n <li>Fix: Justified layout setting of 150 pixels for row height applies to galleries that were using the older automattic layout.<\\/li>\\n <\\/ul>\\n <h3>1.5.2 (2016-08-25)<\\/h3>\\n <ul>\\n <li>Added: A justified layout replaces the old \\\"automatic\\\" layout setting for galleries. See documentation on enviragallery.com for additional information.<\\/li>\\n <li>Updated: Spanish translation.<\\/li>\\n <li>Fix: Removing \\\"Insert From Url\\\" option for galleries.<\\/li>\\n <li>Fix: Gallery display follows settings properly when WPML is used in certain cirucmstances.<\\/li>\\n <\\/ul>\\n <h3>1.5.1.2 (2016-08-04)<\\/h3>\\n <ul>\\n <li>Fix: Close button in lightbox admin bar should not jump position with longer gallery titles.<\\/li>\\n <\\/ul>\\n <h3>1.5.1.1 (2016-07-29)<\\/h3>\\n <ul>\\n <li>Fix: Addressing \\\"unexpected end of input\\\" JS Error.<\\/li>\\n <\\/ul>\\n <h3>1.5.1 (2016-07-26)<\\/h3>\\n <ul>\\n <li>Fix: Page jump should no longer be occuring when lightbox navigation is triggered.<\\/li>\\n <li>Fix: Caption link no longer appearing behind modal window.<\\/li>\\n <li>Fix: Instagram feed should no longer show non-instagram pictures under certain circumstances.<\\/li>\\n <\\/ul>\\n <h3>1.5.0.9 (2016-06-30)<\\/h3>\\n <ul>\\n <li>Fix: Mobile gallery images should no longer require two taps when social addon is activated.<\\/li>\\n <\\/ul>\\n <h3>1.5.0.8 (2016-06-02)<\\/h3>\\n <ul>\\n <li>Fix: Resolving an issue involving lightbox and toolbars producing a Javascript error.<\\/li>\\n <\\/ul>\\n <h3>1.5.0.7 (2016-05-31)<\\/h3>\\n <ul>\\n <li>Fix: Improved thumbnail and toolbar detection in Lightbox to avoid collisions<\\/li>\\n <li>Fix: Resolving random image sizes display errors<\\/li>\\n <li>Fix: Adding keyboard and mousewheel default values<\\/li>\\n <li>Fix: Adds a large button style<\\/li>\\n <\\/ul>\\n <h3>1.5.0.6 (2016-05-19)<\\/h3>\\n <ul>\\n <li>Fix: Ensure all CSS and JS is minified<\\/li>\\n <li>Fix: Ensure all inline JS is minified<\\/li>\\n <li>Fix: Prevent potential collisions with third party Plugins and Themes using different versions of the imagesLoaded library<\\/li>\\n <li>Fix: Ensure numerical captions display in Lightbox<\\/li>\\n <li>Fix: Minor layout issues with Addons screen<\\/li>\\n <li>Fix: Improved Addons search and sorting performance<\\/li>\\n <li>Fix: Prevent JS errors when Galleries are loaded by slug<\\/li>\\n <\\/ul>\\n <h3>1.5.0.5 (2016-05-12)<\\/h3>\\n <ul>\\n <li>Added: envira_gallery_export_data filter for developers and Addons to add their own data to the Gallery Export.<\\/li>\\n <li>Updated: Isotope to 3.0.0<\\/li>\\n <li>Updated: ImagesLoaded to 4.1.0<\\/li>\\n <li>Fix: Better rendering of Isotope layouts using imagesLoaded<\\/li>\\n <li>Fix: Addon Screen display issue on browser resize<\\/li>\\n <li>Fix: Image uploader on Gallery Add\\/Edit screen not displaying on some tablet and mobile devices<\\/li>\\n <li>Updated: Instagram Icon<\\/li>\\n <\\/ul>\\n <h3>1.5.0.4 (2016-05-05)<\\/h3>\\n <ul>\\n <li>Added: envira_gallery_api_lightbox_image_attributes action to allow Addons to populate the lightbox image array with additional parameters<\\/li>\\n <li>Updated: Standardised edit screen titles and descriptions<\\/li>\\n <li>Updated: Spanish translation<\\/li>\\n <li>Fix: When editing an image, store any checkbox values if checked, instead of assuming 1 or 0 for better Addon compatibility.<\\/li>\\n <\\/ul>\\n <h3>1.5.0.3 (2016-04-28)<\\/h3>\\n <ul>\\n <li>Added: Ability to move photos between galleries<\\/li>\\n <li>Added: ImageGallery and ImageObject Schema Markup to Galleries<\\/li>\\n <li>Added: Option to insert Gallery Title as heading when using the Add Gallery button in a Visual Editor<\\/li>\\n <li>Added: More detailed on screen progress bars when uploading multiple images<\\/li>\\n <li>Added: Retina support for gallery images<\\/li>\\n <li>Fix: Improved the layout of options on the Mobile tab, so it\\u2019s clear which relate to the Gallery and Lightbox<\\/li>\\n <li>Fix: Ensure that third party notification plugins don\\u2019t remove the Envira Gallery logo and header from Envira\\u2019s screens<\\/li>\\n <li>Fix: Exporting and importing video items within a gallery now correctly retains the video URL<\\/li>\\n <li>Fix: Various resets for images and captions to prevent themes overriding default behaviour<\\/li>\\n <li>Fix: Minified admin CSS for faster load times<\\/li>\\n <li>Updated: Spanish Translations<\\/li>\\n <\\/ul>\\n <h3>1.5.0.2 (2016-04-22)<\\/h3>\\n <ul>\\n <li>Added: Updated editor.js for third party Gallery and Album selection support<\\/li>\\n <\\/ul>\\n <h3>1.5.0.1 (2016-04-21)<\\/h3>\\n <ul>\\n <li>Added: Mobile: Option to define number of gallery columns.<\\/li>\\n <li>Fix: Checkmark icon wrongly displaying on modal close when editing \\/ bulk editing images.<\\/li>\\n <li>Fix: Display text in warning when Envira Lite and Envira Gallery are both activated.<\\/li>\\n <li>Fix: Remove the checkmark after dragging \\/ sorting an image in a gallery, so it doesn\\u2019t accidentally remain selected.<\\/li>\\n <li>Fix: Actually display an error message if the user has Lite enabled, not just a white box.<\\/li>\\n <li>Fix: Import\\/Export with Video Links now supported<\\/li>\\n <\\/ul>\\n <h3>1.5.0 (2016-04-16)<\\/h3>\\n <ul>\\n <li>Added: New UI<\\/li>\\n <li>Fix: Compat with jQuery 1.12.x \\/ WordPress 4.5<\\/li>\\n <\\/ul>\\n <h3>1.4.3.0 (2016-03-17)<\\/h3>\\n <ul>\\n <li>Added: Better integration for Envira Addons which insert content from third party sources e.g. Dropbox<\\/li>\\n <li>Added: Sort by Published Date<\\/li>\\n <li>Fix: Apply content filters (paragraphs, smileys, oEmbeds etc) to Gallery Description<\\/li>\\n <\\/ul>\\n <h3>1.4.2.2 (2016-03-10)<\\/h3>\\n <ul>\\n <li>Added: Bulk Edit Images in Gallery<\\/li>\\n <li>Updated: Spanish Translations<\\/li>\\n <\\/ul>\\n <h3>1.4.2.1 (2016-03-03)<\\/h3>\\n <ul>\\n <li>Added: generate_gallery_item_markup() function for better gallery loading (also Pagination AJAX loading compatibility)<\\/li>\\n <li>Added: dragging multiple selected images will move all images in the sort order<\\/li>\\n <li>Fix: Ensure iframe content uses allowfullscreen property, ensuring Videos Addon will provide a fullscreen button for Videos<\\/li>\\n <\\/ul>\\n <h3>1.4.2.0 (2016-02-25)<\\/h3>\\n <ul>\\n <li>Added: Option to delete image from server \\/ Media Library when deleted from a Gallery<\\/li>\\n <li>Fix: Images with double quotation marks in alt field can now be edited<\\/li>\\n <li>Fix: Hide Mobile Lightbox options when editing a gallery and unchecking the Mobile > Enable Lightbox option<\\/li>\\n <\\/ul>\\n <h3>1.4.1.9 (2016-02-18)<\\/h3>\\n <ul>\\n <li>Added: Shift + Click on existing Images in the Images tab to quickly select multiple images for deletion \\/ tag editing<\\/li>\\n <li>Added: New filters and compat for Envira Videos 1.1.6+ functionality<\\/li>\\n <\\/ul>\\n <h3>1.4.1.8 (2016-02-11)<\\/h3>\\n <ul>\\n <li>Added: Auto Columns option (fills each row as much as possible before moving onto the next row)<\\/li>\\n <li>Added: Russian Translations<\\/li>\\n <li>Dropped: srcset<\\/li>\\n <li>Fix: Using WPML with query string switcher (e.g. ?lang=fr) would result in images not cropping\\/resizing, due to get_bloginfo(\\u2018url\\u2019) returning the wrong site URL.<\\/li>\\n <\\/ul>\\n <h3>1.4.1.7 (2016-02-04)<\\/h3>\\n <ul>\\n <li>Fix: Dynamic Galleries with custom IDs would cause JS error with Lightbox<\\/li>\\n <li>Fix: Link dialog now appears in front of image editor when linking text in an image\\u2019s caption<\\/li>\\n <\\/ul>\\n <h3>1.4.1.6 (2016-01-28)<\\/h3>\\n <ul>\\n <li>Added: Image Size option (define width and height as before, or choose a WordPress registered image size)<\\/li>\\n <li>Added: CDN\\/S3 compatibility. Choose an Image Size above if you\\u2019re having problems getting your gallery images to display from your CDN\\/S3.<\\/li>\\n <li>Added: Filter to Insert Gallery button (envira_gallery_media_button)<\\/li>\\n <li>Added: Only set_time_limit() if PHP safe mode is off<\\/li>\\n <li>Added: Notice if running PHP 5.2.x or older (please upgrade - it\\u2019s 10 years old!)<\\/li>\\n <li>Fix: FILTER_VALIDATE_URL would fail on image URLs with non-ASCII, non-URL-encoded characters in them, therefore failing to generate thumbnail images<\\/li>\\n <\\/ul>\\n <h3>1.4.1.5 (2016-01-22)<\\/h3>\\n <ul>\\n <li>Fix: Insert from Other Sources fully supports Link To options for None, Media File, Attachment Page and Custom URL<\\/li>\\n <\\/ul>\\n <h3>1.4.1.4 (2016-01-21)<\\/h3>\\n <ul>\\n <li>Added: Insert from Other Image Sources supports linking images to either their image source or attachment page<\\/li>\\n <li>Added: When editing an existing image in a Gallery, buttons to quickly change the image link to its source or attachment page<\\/li>\\n <li>Added: Only load Envira underscore templates when editing an Envira Gallery (may resolve issues with third party plugins which choose to always load every underscore template)<\\/li>\\n <\\/ul>\\n <h3>1.4.1.3 (2016-01-14)<\\/h3>\\n <ul>\\n <li>Fix: Wrong setting name for lightbox transition effect which caused gallery lightbox to break<\\/li>\\n <\\/ul>\\n <h3>1.4.1.2 (2016-01-14)<\\/h3>\\n <ul>\\n <li>Added: Number of images output in a gallery via short code or template tag can be restricted with the limit argument e.g. [envira-gallery id=\\u201c123\\u201d limit=\\u201c3\\u201d]<\\/li>\\n <li>Added: Lightbox open\\/close effect option<\\/li>\\n <li>Added: Additional lightbox effects for open\\/close and transitions<\\/li>\\n <li>Fix: Truly get the largest intermediate image size between zero and the gallery image width<\\/li>\\n <li>Fix: Honor \\u201cOpen URL in New Window\\u201d setting<\\/li>\\n <li>Fix: Validate URL after typing completed to avoid multiple alerts with invalid URL messages<\\/li>\\n <\\/ul>\\n <h3>1.4.1.1 (2016-01-07)<\\/h3>\\n <ul>\\n <li>Added: property=stylesheet attribute to Envira CSS loaded within the body of a page<\\/li>\\n <li>Fix: Install Addon button on Addons Screen correctly aligns on smaller resolutions<\\/li>\\n <li>Fix: Dropped srcset and sizes on lightbox images, as Envira already provides an option to define the lightbox image size for optimization<\\/li>\\n <li>Fix: Only load images into srcset and sizes attributes that match or are below the galleries\\u2019 image width and height settings<\\/li>\\n <li>Updated: Spanish translations<\\/li>\\n <\\/ul>\\n <h3>1.4.1.0 (2015-12-31)<\\/h3>\\n <ul>\\n <li>Added: Optimised Edit Gallery screen when editing a gallery image\\u2019s metadata. ~ 70% performance increase, especially with galleries over 50 images.<\\/li>\\n <li>Added: A high max_input_vars PHP setting is no longer required when saving a gallery with a large number of images<\\/li>\\n <li>Fix: Don\\u2019t set media view strings if get_current_screen() isn\\u2019t defined (fixes compatibility with WooCommerce WPML)<\\/li>\\n <\\/ul>\\n <h3>1.4.0.4 (2015-12-24)<\\/h3>\\n <ul>\\n <li>Fix: Don\\u2019t output srcset and size attributes on images when cropping enabled. This ensures images maintain precise dimensions as expected by the user.<\\/li>\\n <\\/ul>\\n <h3>1.4.0.3 (2015-12-23)<\\/h3>\\n <ul>\\n <li>Added: srcset and sizes attributes to images in WordPress 4.4+ for better responsive compatibility and load times<\\/li>\\n <li>Added: Updated Isotope \\/ Masonry to 2.2.0<\\/li>\\n <li>Fix: Use WP_Query to get galleries when cache\\/transient is empty, preventing gallery output blanking after a day when using caching plugins<\\/li>\\n <\\/ul>\\n <h3>1.4.0.2 (2015-12-17)<\\/h3>\\n <ul>\\n <li>Added: Support for importing third party image URLs that don\\u2019t have a file extension (e.g. http:\\/\\/placehold.it\\/300x300)<\\/li>\\n <li>Added: get_supported_filetypes_mimes() in Envira_Gallery_Common<\\/li>\\n <li>Fix: Undefined variable $new_image in Envira_Gallery_Import<\\/li>\\n <li>Fix: Gallery Slug would not save when changed<\\/li>\\n <\\/ul>\\n <h3>1.4.0.1 (2015-12-10)<\\/h3>\\n <ul>\\n <li>Updated: Spanish Translation<\\/li>\\n <li>Fix: foreach() warning when attempting to add a widget and no galleries defined<\\/li>\\n <li>Fix: Display Instagram and other non-default gallery types in editor selection tool<\\/li>\\n <li>Fix: Close icon display on modals for WordPress 4.4<\\/li>\\n <\\/ul>\\n <h3>1.4.0 (2015-12-03)<\\/h3>\\n <ul>\\n <li>Added: Rewrote Insert from Other Image Sources modal to use native WordPress code<\\/li>\\n <li>Added: Insert Images modal compatible with third party Media Library plugins e.g. Enhanced Media Library<\\/li>\\n <li>Removed: Yoast 3.0.x hack to prevent undefined errors, as these are resolved in Yoast 3.0.4+ (note: we recommend 2.3.x until the well documented, ongoing issues with Yoast 3.x are resolved).<\\/li>\\n <\\/ul>\\n <h3>1.3.8.3 (2015-11-26)<\\/h3>\\n <ul>\\n <li>Added: Spanish translation<\\/li>\\n <li>Added: Notice to deactivate Lite if both versions of Envira Gallery are active.<\\/li>\\n <li>Fix: Prevent WordPress overwriting field widths when editing a gallery item in the modal window<\\/li>\\n <\\/ul>\\n <h3>1.3.8.2 (2015-11-20)<\\/h3>\\n <ul>\\n <li>Workaround: Yoast SEO 3.0.x throws an error if no Visual Editor exists on an editing screen, rendering edit functionality in Envira Gallery to fail. See Known Issues: https:\\/\\/wordpress.org\\/support\\/topic\\/yoast-seo-30<\\/li>\\n <\\/ul>\\n <h3>1.3.8.1 (2015-11-12)<\\/h3>\\n <ul>\\n <li>Fix: Cast $sorting_method as string so switch() statement correctly functions without offset warnings<\\/li>\\n <\\/ul>\\n <h3>1.3.8.0 (2015-11-06)<\\/h3>\\n <ul>\\n <li>Added: Gallery sorting options (none, random, title, caption, filename)<\\/li>\\n <li>Added: Gallery sorting directions (ascending, descending)<\\/li>\\n <li>Added: data-envira-gallery-id to image in Lightbox view (for Social Addon)<\\/li>\\n <li>Fix: Two column layout on mobile would sometimes result in whitespace when Isotope disabled.<\\/li>\\n <li>Fix: CSS Opacity preventing gallery save if CSS Animations disabled and CSS Opacity value outside of permitted range.<\\/li>\\n <\\/ul>\\n <h3>1.3.7.2 (2015-10-29)<\\/h3>\\n <ul>\\n <li>Fix: Typo in edit_others_envira_galleries capability, preventing some Administrators editing galleries belonging to lesser roles.<\\/li>\\n <li>Fix: Default Opacity if CSS Animations are enabled and opacity set to zero or blank value.<\\/li>\\n <\\/ul>\\n <h3>1.3.7.1 (2015-10-15)<\\/h3>\\n <ul>\\n <li>Fix: Added in all required capabilities; removed map_meta_cap.<\\/li>\\n <\\/ul>\\n <h3>1.3.7 (2015-10-14)<\\/h3>\\n <ul>\\n <li>Added: Custom Capabilities for Galleries (publish_envira_gallery, delete_envira_gallery etc).<\\/li>\\n <li>Added: Image Opacity option and CSS Transition support<\\/li>\\n <li>Added: envira_gallery_do_default_display action to includes\\/admin\\/metaboxes.php<\\/li>\\n <li>Fix: Settings - Addons Layout<\\/li>\\n <\\/ul>\\n <h3>1.3.6.5 (2015-10-01)<\\/h3>\\n <ul>\\n <li>Added: Galleries Data to envira_gallery_api_end_global action<\\/li>\\n <li>Fix: When Lightbox image size isn\\u2019t full size, don\\u2019t change the image item link unless it truly is an image (prevents errors with Video Addon)<\\/li>\\n <\\/ul>\\n <h3>1.3.6.4 (2015-09-24)<\\/h3>\\n <ul>\\n <li>Added: Abstracted transient expiration<\\/li>\\n <\\/ul>\\n <h3>1.3.6.3 (2015-09-17)<\\/h3>\\n <ul>\\n <li>Fix: Thumbnail generation on some multisite configurations not working<\\/li>\\n <li>Fix: Improved touchswipe detection<\\/li>\\n <\\/ul>\\n <h3>1.3.6.2 (2015-09-09)<\\/h3>\\n <ul>\\n <li>Added: Image resize\\/crop error messages are output to logged in WordPress users where WP_DEBUG enabled.<\\/li>\\n <li>Fix: Renamed localisation files to ensure they are loaded<\\/li>\\n <\\/ul>\\n <h3>1.3.6.1 (2015-09-03)<\\/h3>\\n <ul>\\n <li>Added: Touchwipe - option to close Lightbox on swipe up<\\/li>\\n <li>Added: Settings - option to automatically delete media uploaded to an Envira Gallery when that gallery is deleted. Note: this only applies to media uploaded through that specific Gallery - images inserted from other sources \\/ already in the media library do not get deleted.<\\/li>\\n <\\/ul>\\n <h3>1.3.6 (2015-08-20)<\\/h3>\\n <ul>\\n <li>Added: Lightbox - optionally choose a predefined WordPress Image size, instead of outputting the original, full size image<\\/li>\\n <li>Added: French translation (thanks, Arnaud!)<\\/li>\\n <li>Fix: Improved Fix Broken Migrations functionality to fix broken image URLs<\\/li>\\n <li>Fix: Thumbnails missing due to third party plugins stripping blog URL from all permalink and images.<\\/li>\\n <li>Fix: Thumbnails missing due to get_site_url() reporting different HTTP transport type vs. actual site. Changed to get_bloginfo( \\u2018url\\u2019 )<\\/li>\\n <\\/ul>\\n <h3>1.3.5 (2015-08-13)<\\/h3>\\n <ul>\\n <li>Added: Dismissible Notices support<\\/li>\\n <li>Fix: Changed default gallery columns to 3, and grid image sizes to 640 x 480 to improve performance on new galleries<\\/li>\\n <li>Fix: WordPress 4.3 compatibility for Widget<\\/li>\\n <li>Fix: WordPress 4.3 compatibility for modal close icon<\\/li>\\n <\\/ul>\\n <h3>1.3.4.3 (2015-07-30)<\\/h3>\\n <ul>\\n <li>Fix: Moved randomize functionality after envira_gallery_pre_data, so that plugins and Addons (i.e. Dynamic Addon) will randomise galleries if enabled.<\\/li>\\n <\\/ul>\\n <h3>1.3.4.2 (2015-07-23)<\\/h3>\\n <ul>\\n <li>Added: Filters for resize_image() for WP Rocket CDN compat (https:\\/\\/gist.github.com\\/n7studios\\/5727e3281ed43605ba2f)<\\/li>\\n <\\/ul>\\n <h3>1.3.4.1 (2015-07-16)<\\/h3>\\n <ul>\\n <li>Fix: Exclude Default and Dynamic Galleries when querying get_galleries()<\\/li>\\n <\\/ul>\\n <h3>1.3.4.0<\\/h3>\\n <ul>\\n <li>Fix: Force gallery ID on save, to ensure compat with WPML and duplication plugins<\\/li>\\n <\\/ul>\\n <h3>1.3.3.9<\\/h3>\\n <ul>\\n <li>Fix: Sorting images in a gallery and not clicking Update would result in loss of gallery configuration<\\/li>\\n <li>Fix: Prepend images before existing images in older versions of PHP<\\/li>\\n <\\/ul>\\n <h3>1.3.3.8<\\/h3>\\n <ul>\\n <li>Added: envira_minify_strip_double_forward_slashes filter to allow devs to disable more aggressive minification<\\/li>\\n <li>Fixed: Large number of thumbnails in Lightbox would drop onto two lines.<\\/li>\\n <\\/ul>\\n <h3>1.3.3.7<\\/h3>\\n <ul>\\n <li>Fixed: Envira_Gallery_Settings error when importing or choosing gallery images after defining Add New Images getting in 1.3.3.6<\\/li>\\n <li>Fixed: Import class uses init hook instead of construct to run the import, ensuring no fatal errors for dependencies<\\/li>\\n <\\/ul>\\n <h3>1.3.3.6<\\/h3>\\n <ul>\\n <li>Added: Insert from Other Sources - clear all selected, see image(s) being added in footer toolbar<\\/li>\\n <li>Added: Posts column to WP_List_Table, to show where shortcodes are embedded (applies to Posts, Pages saved following this update)<\\/li>\\n <li>Added: Lightbox HTML5 option, to use data-envirabox-group instead of rel attribute for valid HTML5 output<\\/li>\\n <li>Added: Setting to add new images to the start or end of a gallery, when uploading images or choosing existing images<\\/li>\\n <\\/ul>\\n <h3>1.3.3.5<\\/h3>\\n <ul>\\n <li>Added: Caption Position Float (Wrapped) option, to wrap Lightbox Caption text to match width of image<\\/li>\\n <li>Added: Shift + click to select multiple images when using Insert from Other Sources modal<\\/li>\\n <li>Fix: Search WordPress Content for URL in Edit Gallery Metabox<\\/li>\\n <\\/ul>\\n <h3>1.3.3.4<\\/h3>\\n <ul>\\n <li>Added: Improved animation for isotope layout<\\/li>\\n <li>Added: Captions support shortcodes<\\/li>\\n <li>Fix: Reinstated Load More Images from Library button for larger screens that would never be able to trigger the scroll event on the modal window.<\\/li>\\n <li>Fix: Optimised Insert Media into Gallery modal when searching<\\/li>\\n <li>Fix: Ensure post parent is set on attachments when imported from third party sources<\\/li>\\n <\\/ul>\\n <h3>1.3.3.3<\\/h3>\\n <ul>\\n <li>Added: Enable\\/Disable Lightbox on Mobile<\\/li>\\n <li>Added: Enable\\/Disable Touchwipe on Mobile<\\/li>\\n <li>Added: Insert from Other Images Sources - automatically load images on scroll and search<\\/li>\\n <li>Fixed: Improved method for Inserting Media into Gallery<\\/li>\\n <\\/ul>\\n <h3>1.3.3.2<\\/h3>\\n <ul>\\n <li>Added: esc_url() on add_query_arg() calls<\\/li>\\n <li>Added: Moved supported filetypes into common class, so Addons can better filter support<\\/li>\\n <li>Added: 320px to 479px screen widths will collapse to a 2 column layout if 2+ columns chosen in Gallery Settings (used to collapse to 1 column)<\\/li>\\n <li>Added: 320px and less screen widths will collapse to a 1 column layout<\\/li>\\n <\\/ul>\\n <h3>1.3.3.1<\\/h3>\\n <ul>\\n <li>Added: Mobile - Enable Gallery Arrows will ensure lightbox arrows remain displayed on touchscreen devices, so it is clearer to the user how they can navigate through the images.<\\/li>\\n <li>Added: Fancybox Video Helper<\\/li>\\n <li>Added: Edit Metabox Actions<\\/li>\\n <\\/ul>\\n <h3>1.3.3<\\/h3>\\n <ul>\\n <li>Added: Media Library code improvements and new actions for future Addon integrations.<\\/li>\\n <li>Added: CSS enhancements for Lightbox (iframe).<\\/li>\\n <li>Fix: Ensure the import routine imports titles, captions and alt tags where specified in the JSON file.<\\/li>\\n <li>Fix: Ensure the import routine returns an attachment ID when streaming a remote image into the Media Library.<\\/li>\\n <li>Fix: Modal window would hang if no images selected and \\u2018Insert\\u2019 button clicked.<\\/li>\\n <li>Fix: Don\\u2019t select gallery item when clicking delete icon or edit icon.<\\/li>\\n <li>Fix: Hide \\u2018Delete Selected Images from Gallery\\u2019 button when images are selected and deleted.<\\/li>\\n <\\/ul>\\n <h3>1.3.2.4<\\/h3>\\n <ul>\\n <li>Added: data-envira-data attribute to lightbox image for Social and EXIF Addon future support<\\/li>\\n <li>Added: Delete multiple images in a gallery by clicking them and using the Delete button<\\/li>\\n <li>Fix: nginx compatibility when searching Envira Galleries in the WordPress Administration List Table resulted in long URLs due to quick edit hidden fields.<\\/li>\\n <\\/ul>\\n <h3>1.3.2.3<\\/h3>\\n <ul>\\n <li>Added: Enable\\/disable Lightbox<\\/li>\\n <li>Fix: Multiline Gallery captions<\\/li>\\n <\\/ul>\\n <h3>1.3.2.2<\\/h3>\\n <ul>\\n <li>Added: Ensure that non-images cannot be uploaded by accident.<\\/li>\\n <li>Fix: Some sRGB image uploads would have their color profile affected and look different than the original upload.<\\/li>\\n <li>Fix: Only load CSS and JS when needed within relevant Envira screens (cf. previously loading CSS and JS for the entire Envira section)<\\/li>\\n <\\/ul>\\n <h3>1.3.2.1<\\/h3>\\n <ul>\\n <li>Added: Title and Caption to data- attributes in Gallery Images<\\/li>\\n <li>Added: Quick Edit Support populates field with correct Gallery Data<\\/li>\\n <li>Added: Quick Edit and Bulk Edit supports Number of Columns, Gallery Theme, Column Gutter Width, Margin Below Each Image and Image Dimension editing<\\/li>\\n <\\/ul>\\n <h3>1.3.2.0<\\/h3>\\n <ul>\\n <li>Added: Fix broken migrations setting<\\/li>\\n <li>Added: Mobile Tab - mobile gallery images option moved to this new tab, along with new settings for enabling gallery arrows, toolbar and thumbnails on light boxes when viewed on a mobile device<\\/li>\\n <li>Fix: noscript images for SEO regression reverted<\\/li>\\n <\\/ul>\\n <h3>1.3.1.5<\\/h3>\\n <ul>\\n <li>Fix: Improved error message UI when uploading files exceeding WordPress \\/ PHP file size limits<\\/li>\\n <\\/ul>\\n <h3>1.3.1.4<\\/h3>\\n <ul>\\n <li>Added: Global function for Envira and Addons to conditionally show settings in UI depending on other settings\\/values<\\/li>\\n <li>Added: get_lightbox_template with filter override for Lightbox HTML markup<\\/li>\\n <li>Added: envira_gallery_trash and envira_gallery_untrash actions to allow Addons (such as Albums) to update when a Gallery is deleted<\\/li>\\n <li>Fix: Display \\u201cfile size error\\u201d when adding a new image to an Envira Gallery, where the image exceeds the upload_max_size PHP directive<\\/li>\\n <\\/ul>\\n <h3>1.3.1.3<\\/h3>\\n <ul>\\n <li>Fix: Custom Post Type galleries where exclude_from_search = true would fail to migrate into the Envira CPT if upgrading from Envira Gallery 1.2.0 or older.<\\/li>\\n <li>Added: Set Image Dimensions option for Google PageSpeed<\\/li>\\n <\\/ul>\\n <h3>1.3.1.2<\\/h3>\\n <ul>\\n <li>Added: Option to display gallery title in Lightbox Toolbar.<\\/li>\\n <li>Fix: Added HTML support to image titles<\\/li>\\n <li>Fix: Layout issue when Tags and Gallery Description displayed above gallery<\\/li>\\n <\\/ul>\\n <h3>1.3.1.1<\\/h3>\\n <ul>\\n <li>Fix: Three column layout final image sized differently to other images.<\\/li>\\n <li>Fix: Thumbnails not being generated for some multisite installations.<\\/li>\\n <\\/ul>\\n <h3>1.3.1<\\/h3>\\n <ul>\\n <li>Added: Gallery Descriptions<\\/li>\\n <li>Added: Touchswipe support for Lightbox<\\/li>\\n <li>Added: Quick Edit Support<\\/li>\\n <li>Fix: RTL Support<\\/li>\\n <\\/ul>\\n <h3>1.3.0.1<\\/h3>\\n <ul>\\n <li>Fix: Added max-width: 100% for Envira Gallery Images for better responsive layouts<\\/li>\\n <\\/ul>\\n <h3>1.3.0<\\/h3>\\n <ul>\\n <li>Added: Enable \\/ Disable Isotope + CSS Animations<\\/li>\\n <li>Added: Mobile detection now performed server side using envira_mobile_detect()->isMobile(), removed unused JS mobile detection code<\\/li>\\n <li>Added: Randomize gallery output option<\\/li>\\n <li>Added: URL selection tool to quickly search and link images to Pages, Posts + Custom Post Types<\\/li>\\n <li>Fix: Upgraded to Isotope v2.1.0<\\/li>\\n <li>Fix: Added imagesLoaded so Isotope only loads when images are ready for masonry layout (fixes several IE issues)<\\/li>\\n <li>Fix: Always force image size dimensions to be honoured, making cropping optional, so that images are always optimised and the user can choose whether to crop those images to a forced size or aspect ratio<\\/li>\\n <li>Fix: Load images via shortcode, not JS, as they are now optimised due to required image size constraints, performance is not affected. Also fixes slow JS rendering engines for Isotope e.g. IE9<\\/li>\\n <li>Fix: Toolbar no longer overlaps thumbnails on lightbox if both are set to display: bottom<\\/li>\\n <\\/ul>\\n <h3>1.2.1<\\/h3>\\n <ul>\\n <li>Support for WP 4.0 media editing modals.<\\/li>\\n <li>Moved all galleries to CPT to allow for permalink slugs for things like Albums.<\\/li>\\n <li>Added support for tags done via taxonomy.<\\/li>\\n <li>Full localization support with .pot files.<\\/li>\\n <li>Lots of bug fixes and general improvements.<\\/li>\\n <\\/ul>\\n <h3>1.1.9<\\/h3>\\n <ul>\\n <li>Fixed bug with image duplication when cropping was activated.<\\/li>\\n <\\/ul>\\n <h3>1.1.8<\\/h3>\\n <ul>\\n <li>Fixed bug with API calls happening on every admin page load.<\\/li>\\n <li>Fixed thumbnail width bug in the lightbox view with lots of thumbnails.<\\/li>\\n <li>Fixed set time limit bug on hosts with safemode enabled.<\\/li>\\n <li>Added support for different gallery types (Instagram, Flickr, videos and more!) via Addons.<\\/li>\\n <\\/ul>\\n <h3>1.1.7.1<\\/h3>\\n <ul>\\n <li>Fixed bug when cropping gallery images.<\\/li>\\n <\\/ul>\\n <h3>1.1.7<\\/h3>\\n <ul>\\n <li>Tons of general bug fixes and improvements.<\\/li>\\n <li>Fixed image indexing bug.<\\/li>\\n <li>Fixed bug with HTML displaying in titles and caption output.<\\/li>\\n <li>Fixed some issues with the link dialog loading underneath the metadata modal.<\\/li>\\n <\\/ul>\\n <h3>1.1.6<\\/h3>\\n <ul>\\n <li>Tons of general bug fixes and improvements.<\\/li>\\n <li>Added image caption support.<\\/li>\\n <li>Fixed some incompatibility issues with gallery editing tabs and image uploading.<\\/li>\\n <\\/ul>\\n <h3>1.1.5<\\/h3>\\n <ul>\\n <li>Fixed bug with image uploading in WordPress 3.9.<\\/li>\\n <li>Fixed bug with Quicktag duplication when uploading images with the drag-and-drop uploader.<\\/li>\\n <li>Fixed bug with URLs not changing over when migrating between sites.<\\/li>\\n <\\/ul>\\n <h3>1.1.4<\\/h3>\\n <ul>\\n <li>Fixed styling and typography bugs with lightbox titles.<\\/li>\\n <li>Added a new filter to allow for individual item data filtering in the gallery.<\\/li>\\n <\\/ul>\\n <h3>1.1.3<\\/h3>\\n <ul>\\n <li>Fixed styling and typography bugs with lightbox titles.<\\/li>\\n <\\/ul>\\n <h3>1.1.2<\\/h3>\\n <ul>\\n <li>Added RTL support (enable via checkbox in Misc tab).<\\/li>\\n <li>Miscellaneous bug fixes and improvements.<\\/li>\\n <\\/ul>\\n <h3>1.1.1<\\/h3>\\n <ul>\\n <li>Fixed undefined index notice for max_upload_size variable in custom media uploader.<\\/li>\\n <li>Fixed bug with constraining gallery editing thumbnails.<\\/li>\\n <li>Fixed CSS bug on Addons page that caused inconsistent rendering of addon items.<\\/li>\\n <li>Fixed bug with thumbnails covering floating titles.<\\/li>\\n <li>Improved cropping feature by not cropping images that already match the destination width and height.<\\/li>\\n <li>Added hash state support for settings tabs and gallery settings tabs for better workflows.<\\/li>\\n <li>Removed unnecessary readme.txt file.<\\/li>\\n <\\/ul>\\n <h3>1.1.0<\\/h3>\\n <ul>\\n <li>Fixed bug with HTML rendering in feed display.<\\/li>\\n <li>Fixed bug with trying to grab post ID incorrectly that could cause settings not to save.<\\/li>\\n <li>Miscellaneous bug fixes and improvements.<\\/li>\\n <\\/ul>\\n <h3>1.0.9<\\/h3>\\n <ul>\\n <li>Change contextual loading of metabox.<\\/li>\\n <li>Allow metabox removal items to be filtered.<\\/li>\\n <li>Always update title\\/slug on Envira post type save.<\\/li>\\n <\\/ul>\\n <h3>1.0.8<\\/h3>\\n <ul>\\n <li>Allow lightbox to preload 1 image to make lightbox experience smoother.<\\/li>\\n <li>More contextual checks for the new custom uploader.<\\/li>\\n <li>Ensure nested tags inside the gallery lightbox display are styled properly.<\\/li>\\n <\\/ul>\\n <h3>1.0.7<\\/h3>\\n <ul>\\n <li>Fixed bug with metabox assets loading improperly for post types that are skipped.<\\/li>\\n <\\/ul>\\n <h3>1.0.6.1<\\/h3>\\n <ul>\\n <li>Properly escape HTML for image captions.<\\/li>\\n <\\/ul>\\n <h3>1.0.6<\\/h3>\\n <ul>\\n <li>Fixed bug where HTML would show on hover.<\\/li>\\n <li>Fixed issue with HTML tags not styling properly.<\\/li>\\n <li>Fixed bug with alt tag not being set properly.<\\/li>\\n <\\/ul>\\n <h3>1.0.5<\\/h3>\\n <ul>\\n <li>Custom uploader to prevent plugin conflicts.<\\/li>\\n <li>License keys are now password fields and have output values scrambled for security.<\\/li>\\n <li>Fixed bug where quicktags would not be initialized when a file was uploaded from computer.<\\/li>\\n <li>Update how floating title is output so it expands downward and not upward.<\\/li>\\n <li>Custom uploader to prevent plugin conflicts.<\\/li>\\n <li>Added option to change next\\/prev change effect in the lightbox.<\\/li>\\n <li>Removed lightbox preloading to prevent duplicate preloading of images.<\\/li>\\n <li>Moved lightbox theme option to the Lightbox config tab.<\\/li>\\n <li>Namespaced all Envira output to prevent plugin and theme conflicts.<\\/li>\\n <li>Fixed bug where images would appear linked even if no hyperlink was set.<\\/li>\\n <li>Added support for feed output.<\\/li>\\n <li>Updated contextual language and i18n.<\\/li>\\n <\\/ul>\\n <h3>1.0.4.2<\\/h3>\\n <ul>\\n <li>Added necessary hook to allow for Supersize addon!<\\/li>\\n <\\/ul>\\n <h3>1.0.4.1<\\/h3>\\n <ul>\\n <li>Fixed bug that was introduced in 1.0.3 where I accidentally removed code to calculate column width on resize. Fail by me, fixed now.<\\/li>\\n <\\/ul>\\n <h3>1.0.4<\\/h3>\\n <ul>\\n <li>Added custom attributes filters to HTML oupout of gallery.<\\/li>\\n <li>Added custom class helper for individual gallery items.<\\/li>\\n <li>Improved the CSS reset for list items.<\\/li>\\n <\\/ul>\\n <h3>1.0.3<\\/h3>\\n <ul>\\n <li>Flush gallery caches when interacting with meta.<\\/li>\\n <li>Fixed Isotope init on resize.<\\/li>\\n <li>Added Isotope config hooks.<\\/li>\\n <li>Added constant ENVIRA_FORCE_ACTIVATION that, when defined, allows you to load Envira on WordPress installs less than 3.8 (no guarantees of everything working properly).<\\/li>\\n <li>Fixed improper mobile loading.<\\/li>\\n <\\/ul>\\n <h3>1.0.2<\\/h3>\\n <ul>\\n <li>Fixed performance leak with Isotope. Galleries should load much, much faster!<\\/li>\\n <\\/ul>\\n <h3>1.0.1.1<\\/h3>\\n <ul>\\n <li>Added ability to pass args into template tag.<\\/li>\\n <\\/ul>\\n <h3>1.0.1<\\/h3>\\n <ul>\\n <li>Fixed bug with cropped images not loading properly.<\\/li>\\n <li>Added hook to the cache flush utility method.<\\/li>\\n <\\/ul>\\n <h3>1.0.0<\\/h3>\\n <ul>\\n <li>Initial release of the plugin.<\\/li>\\n <\\/ul>\",\"download_link\":\"https:\\/\\/enviragallery.s3.us-east-2.amazonaws.com\\/plugins\\/envira-gallery\\/envira-gallery.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIVBSMFW42TBGGRPA%2F20190913%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20190913T063126Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=a2e772b6a6c3afd150bf0ff20913d00ca65c6ec2fb00936dc97a653fc9192c4d\"}\";}','no'),(4022,'envira_default_gallery','482','yes'),(4023,'envira_default_album','483','yes'),(4028,'eg_c1ece9d477c84413758ae0a921d1ce9a','a:2:{s:7:\"timeout\";i:1568406686;s:5:\"value\";s:7465:\"{\"new_version\":\"1.4.8\",\"package\":\"https:\\/\\/enviragallery.s3.us-east-2.amazonaws.com\\/plugins\\/envira-gallery-themes\\/envira-gallery-themes.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIVBSMFW42TBGGRPA%2F20190913%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20190913T063127Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=8a2c4cba34d1e54807ae892739edce197a4838acbd0ea6fd254fb3735ec427f7\",\"slug\":\"envira-gallery-themes\",\"last_update\":1568356287,\"name\":\"Envira Gallery - Gallery Themes Addon\",\"version\":\"1.4.8\",\"author\":\"<a href=\\\"https:\\/\\/enviragallery.com\\\">Envira Gallery Team<\\/a>\",\"author_profile\":\"<a href=\\\"https:\\/\\/profiles.wordpress.org\\/enviragallery\\\">https:\\/\\/profiles.wordpress.org\\/enviragallery<\\/a>\",\"requires\":\"4.4.0\",\"tested\":\"5.2.2\",\"last_updated\":\"08-20-2019\",\"homepage\":\"https:\\/\\/enviragallery.com\\/\",\"changelog\":\"\\n <h3>1.4.8 (08-20-2019)<\\/h3>\\n <ul>\\n <li>Fix: Resolved issue involving thumbnails in Lightbox Appearing over Title\\/Caption for Supersized Images.<\\/li>\\n <\\/ul>\\n <h3>1.4.6 (02-20-2019)<\\/h3>\\n <ul>\\n <li>Fix: Remove empty buttons when pagination \\\"No Numbers\\\" option is selected for Caption and Poloroid themes (galleries and albums).<\\/li>\\n <li>Fix: Improved mobile swiping for some themes.<\\/li>\\n <li>Fix: Z-index issue involving lightbox navigation and close buttons resolved.<\\/li>\\n <\\/ul>\\n <h3>1.4.5 (01-23-2019)<\\/h3>\\n <ul>\\n <li>Fix: CSS update to resolve thumbnails not clickable in certain themes.<\\/li>\\n <\\/ul>\\n <h3>1.4.4 (12-19-2018)<\\/h3>\\n <ul>\\n <li>Fix: Captioned Lightbox theme and the image doesnt have a caption or title, the space for the caption now longer displays.<\\/li>\\n <\\/ul>\\n\\t\\t\\t\\t<h3>1.4.3 (11-07-2018)<\\/h3>\\n <ul>\\n\\t\\t\\t\\t <li>Fix: Lightbox thumbnails no longer cutoff.<\\/li>\\n\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<h3>1.4.2 (08-22-2018)<\\/h3>\\n <ul>\\n <li>Enhancement: French translations updated.<\\/li>\\n\\t\\t\\t\\t <li>Fix: Minor bug fixes and CSS updates.<\\/li>\\n\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<h3>1.4.1 (05-30-2018)<\\/h3>\\n\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t <li>Fix: Minor bug fixes.<\\/li>\\n\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<h3>1.4.0 (04-10-2018)<\\/h3>\\n <ul>\\n <li>Added: Fancybox3 support.<\\/li>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.3.1 (11-07-2017)<\\/h3>\\n <ul>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.3.0 (10-18-2017)<\\/h3>\\n <ul>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.2.8 (06-27-2017)<\\/h3>\\n <ul>\\n <li>Fix: Light Theme caption now limited.<\\/li>\\n <\\/ul>\\n <h3>1.2.7 (05-16-2017)<\\/h3>\\n <ul>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.2.6 (04-13-2017)<\\/h3>\\n <ul>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.2.5 (02-01-2017)<\\/h3>\\n <ul>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.2.4 (01-19-2017)<\\/h3>\\n <ul>\\n <li>Fix: Minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.2.3.2 (2016-12-08)<\\/h3>\\n <ul>\\n <li>Fix: Lightbox icons now are prefixed.<\\/li>\\n <\\/ul>\\n <h3>1.2.3.1 (2016-11-07)<\\/h3>\\n <ul>\\n <li>Added: Various minor bug fixes.<\\/li>\\n <\\/ul>\\n <h3>1.2.3 (2016-11-03)<\\/h3>\\n <ul>\\n <li>Added: New Theme Base Light!<\\/li>\\n <\\/ul>\\n <h3>1.2.2 (2016-09-01)<\\/h3>\\n <ul>\\n <li>Added: Line breaks in image captions will now reflect in gallery captions for certain themes.<\\/li>\\n <\\/ul>\\n <h3>1.2.1 (2016-08-26)<\\/h3>\\n <ul>\\n <li>Updated: Minor text and descriptions.<\\/li>\\n <\\/ul>\\n <h3>1.2 (2016-08-25)<\\/h3>\\n <ul>\\n <li>Added: Four new themes for automatic themes only: Desaturate, Blur, Threshold, Vintage.<\\/li>\\n <\\/ul>\\n <h3>1.1.0 (2016-04-28)<\\/h3>\\n <ul>\\n <li>Fix: Captioned theme text would sometimes honour theme\\u2019s setting, and therefore not be visible<\\/li>\\n <\\/ul>\\n <h3>1.0.9 (2016-02-25)<\\/h3>\\n <ul>\\n <li>Updated: Spanish Translations<\\/li>\\n <\\/ul>\\n <h3>1.0.8 (2016-02-18)<\\/h3>\\n <ul>\\n <li>Added: Polaroid Gallery Theme<\\/li>\\n <\\/ul>\\n <h3>1.0.7 (2015-12-10)<\\/h3>\\n <ul>\\n <li>Updated: Spanish Translation<\\/li>\\n <\\/ul>\\n <h3>1.0.6 (2015-11-26)<\\/h3>\\n <ul>\\n <li>Added: Spanish translation.<\\/li>\\n <\\/ul>\\n <h3>1.0.5<\\/h3>\\n <ul>\\n <li>Added: Captioned, Showcase, Sleek and Subtle Lightbox Themes<\\/li>\\n <\\/ul>\\n <h3>1.0.4<\\/h3>\\n <ul>\\n <li>Added: Pagination Addon CSS for each Theme<\\/li>\\n <li>Added: Support for Envira Gallery 1.3.0<\\/li>\\n <\\/ul>\\n <h3>1.0.3<\\/h3>\\n <ul>\\n <li>Full localization support with .pot files.<\\/li>\\n <\\/ul>\\n <h3>1.0.2<\\/h3>\\n <ul>\\n <li>Fixed bug with HTML displaying in titles and caption output.<\\/li>\\n <\\/ul>\\n <h3>1.0.1<\\/h3>\\n <ul>\\n <li>Added two new themes - <strong>Captioned<\\/strong> and <strong>Showcase<\\/strong>!<\\/li>\\n <\\/ul>\\n <h3>1.0.0<\\/h3>\\n <ul>\\n <li>Initial release of the addon.<\\/li>\\n <\\/ul>\",\"download_link\":\"https:\\/\\/enviragallery.s3.us-east-2.amazonaws.com\\/plugins\\/envira-gallery-themes\\/envira-gallery-themes.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIVBSMFW42TBGGRPA%2F20190913%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20190913T063127Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=8a2c4cba34d1e54807ae892739edce197a4838acbd0ea6fd254fb3735ec427f7\"}\";}','no'),(4102,'envira_gallery_standalone_enabled','1','yes'),(4103,'envira-gallery-slug','envira','yes'),(4104,'envira-albums-slug','envira_album','yes'),(4105,'envira-standalone-flushed','1','yes'),(4106,'envira_albums_version','1.8.6.3','no'),(4107,'widget_envira-albums','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4160,'envira-tags','a:3:{s:14:\"imagga_enabled\";b:1;s:25:\"imagga_authorization_code\";s:70:\"YWNjXzRmYTQ2MjM5N2MxMDgzMDo5NmI4NTAxZDdiMTA1YThlNzg1M2IyNGE1ZWYzYzU3Mg\";s:17:\"imagga_confidence\";i:40;}','yes'),(4305,'_site_transient_timeout_theme_roots','1568358029','no'),(4306,'_site_transient_theme_roots','a:4:{s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:1:\"x\";s:7:\"/themes\";}','no'),(4308,'_transient_timeout_modula-galleries','1568377840','no'),(4309,'_transient_modula-galleries','1','no'),(4312,'rs-templates-new','','no'),(4313,'rs-library','a:2:{s:7:\"objects\";a:179:{i:238;a:14:{s:2:\"id\";s:3:\"238\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:237;a:14:{s:2:\"id\";s:3:\"237\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:236;a:14:{s:2:\"id\";s:3:\"236\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:235;a:14:{s:2:\"id\";s:3:\"235\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:234;a:14:{s:2:\"id\";s:3:\"234\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:233;a:14:{s:2:\"id\";s:3:\"233\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:232;a:14:{s:2:\"id\";s:3:\"232\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:231;a:14:{s:2:\"id\";s:3:\"231\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:230;a:14:{s:2:\"id\";s:3:\"230\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:229;a:14:{s:2:\"id\";s:3:\"229\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:198;a:13:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:13:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:13:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:13:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:13:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:13:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:13:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:13:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:13:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:13:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:13:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:13:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:13:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:13:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:13:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:13:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:13:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:13:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:13:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:13:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:13:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:13:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:13:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:13:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:13:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:13:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:13:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:13:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:13:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:13:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:13:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:13:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:13:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:13:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:13:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:13:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:13:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:13:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:13:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:13:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:13:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:13:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:13:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:13:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:13:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:13:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:13:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:13:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:13:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:13:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:13:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:13:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:13:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:13:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:13:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:13:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:13:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:13:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:13:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:13:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:13:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:13:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:13:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:13:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:13:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:13:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:13:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:13:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:13:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:13:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:13:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:13:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:13:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:13:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:13:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:13:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:13:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:13:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:13:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:13:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:13:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:13:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:13:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:13:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:13:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:13:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:13:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:13:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:13:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:13:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:13:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:13:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:13:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:13:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:13:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:13:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:13:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:13:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:13:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:13:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:13:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:13:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:13:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:13:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:13:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:13:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:13:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:13:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:13:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:13:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:13:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:13:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:13:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:13:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:13:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:13:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:13:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:13:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:13:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:13:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:13:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:13:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:13:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:13:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:13:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:13:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:13:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:13:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:13:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:13:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:13:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:13:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:13:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:13:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:13:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:13:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:13:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:13:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:13:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:13:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:13:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:13:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:13:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:13:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:13:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:13:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:13:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:13:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:13:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:13:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:13:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:13:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:13:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:13:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:13:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:13:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:13:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:13:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:13:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:13:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:13:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:13:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:13:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:13:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:13:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:13:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:13:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:13:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:13:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'); INSERT INTO `wp_options` VALUES (4314,'rs-templates','a:2:{s:6:\"slider\";a:375:{i:0;a:21:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:21:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:21:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:21:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:21:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\" <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:21:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:21:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:21:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\" <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:21:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:21:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:21:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:21:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:21:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:21:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:21:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:21:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:21:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:21:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:21:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:21:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:21:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:21:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:21:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:21:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:21:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:21:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:21:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:21:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:21:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:21:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:21:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:21:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:21:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:21:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:21:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:21:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:21:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:21:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:21:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:21:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:21:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:21:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:21:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:21:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:21:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:21:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:21:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:21:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:21:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:21:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:21:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:21:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:21:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:21:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:21:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:21:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:21:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:21:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:21:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:21:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:21:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:21:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:21:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:21:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:21:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:21:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:21:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:24:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:24:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:24:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:24:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:24:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:24:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:24:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:24:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:24:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:24:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:24:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:24:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:24:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:24:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:24:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:24:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:21:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:21:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:21:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:21:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:24:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:24:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:24:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:24:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:24:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:24:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:24:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:24:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:21:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:21:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:24:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:24:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:24:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:24:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:24:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:21:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:21:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:21:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:24:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:24:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:24:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:24:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:21:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:21:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:24:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:24:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:24:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:24:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:24:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:24:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:24:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:24:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:24:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:24:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:24:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:24:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:24:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:24:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:24:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:24:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:24:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:24:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:24:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:24:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:21:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:21:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:21:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:24:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:21:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:21:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:21:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:21:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:21:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:21:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:21:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:21:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:21:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:21:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/filmstrip-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:21:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment