-- Softaculous SQL Dump
-- http://www.softaculous.com
--
-- Host: localhost
-- Generation Time: June 3, 2020, 11:10 am
-- Server version: 5.6.41
-- PHP Version: 7.2.7

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!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 */;

--
-- Database: `craftech_wp596`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_actionscheduler_actions`
--

CREATE TABLE `wpfp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `attempts` int(11) NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_actionscheduler_actions`
--

INSERT INTO `wpfp_actionscheduler_actions` VALUES
(3519, 'action_scheduler/migration_hook', 'complete', '2020-05-23 21:31:42', '2020-05-23 21:31:42', '[]', 'O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"\0*\0scheduled_timestamp";i:1590269502;s:41:"\0ActionScheduler_SimpleSchedule\0timestamp";i:1590269502;}', 1, 1, '2020-05-23 21:31:45', '2020-05-24 00:31:45', 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_actionscheduler_claims`
--

CREATE TABLE `wpfp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_actionscheduler_groups`
--

CREATE TABLE `wpfp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_actionscheduler_groups`
--

INSERT INTO `wpfp_actionscheduler_groups` VALUES
(1, 'action-scheduler-migration');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_actionscheduler_logs`
--

CREATE TABLE `wpfp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_actionscheduler_logs`
--

INSERT INTO `wpfp_actionscheduler_logs` VALUES
(1, 3519, 'action created', '2020-05-23 21:31:42', '2020-05-23 21:31:42'),
(2, 3519, 'action started via Async Request', '2020-05-23 21:31:45', '2020-05-23 21:31:45'),
(3, 3519, 'action complete via Async Request', '2020-05-23 21:31:45', '2020-05-23 21:31:45');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_commentmeta`
--

CREATE TABLE `wpfp_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_commentmeta`
--

INSERT INTO `wpfp_commentmeta` VALUES
(16, 12, 'is_customer_note', '0'),
(17, 13, 'is_customer_note', '0');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_comments`
--

CREATE TABLE `wpfp_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_comments`
--

INSERT INTO `wpfp_comments` VALUES
(12, 3066, 'tansh', 'example@example.com', '', '', '2014-09-10 21:48:54', '2014-09-10 16:18:54', 'Payment to be made upon delivery. Order status changed from pending to processing.', 0, '1', '', 'order_note', 0, 0),
(13, 3066, 'tansh', 'example@example.com', '', '', '2014-09-10 21:48:54', '2014-09-10 16:18:54', 'Order item stock reduced successfully.', 0, '1', '', 'order_note', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_failed_jobs`
--

CREATE TABLE `wpfp_failed_jobs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `failed_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_links`
--

CREATE TABLE `wpfp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_mailchimp_carts`
--

CREATE TABLE `wpfp_mailchimp_carts` (
  `id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `cart` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_mailchimp_jobs`
--

CREATE TABLE `wpfp_mailchimp_jobs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `obj_id` text COLLATE utf8mb4_unicode_520_ci,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_options`
--

CREATE TABLE `wpfp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_options`
--

INSERT INTO `wpfp_options` VALUES
(1, 'siteurl', 'https://craftech.co.ke', 'yes'),
(2, 'home', 'https://craftech.co.ke', 'yes'),
(3, 'blogname', 'Craftech Kenya', 'yes'),
(4, 'blogdescription', 'Crafting Tomorrows Technology Today', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'ayodokeith@gmail.com', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:264:{s:24:"^wc-auth/v([1]{1})/(.*)?";s:63:"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]";s:22:"^wc-api/v([1-3]{1})/?$";s:51:"index.php?wc-api-version=$matches[1]&wc-api-route=/";s:24:"^wc-api/v([1-3]{1})(.*)?";s:61:"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]";s:7:"shop/?$";s:27:"index.php?post_type=product";s:37:"shop/feed/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?post_type=product&feed=$matches[1]";s:32:"shop/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?post_type=product&feed=$matches[1]";s:24:"shop/page/([0-9]{1,})/?$";s:45:"index.php?post_type=product&paged=$matches[1]";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: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:32:"category/(.+?)/wc-api(/(.*))?/?$";s:54:"index.php?category_name=$matches[1]&wc-api=$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:29:"tag/([^/]+)/wc-api(/(.*))?/?$";s:44:"index.php?tag=$matches[1]&wc-api=$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:55:"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?product_cat=$matches[1]&feed=$matches[2]";s:50:"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?product_cat=$matches[1]&feed=$matches[2]";s:31:"product-category/(.+?)/embed/?$";s:44:"index.php?product_cat=$matches[1]&embed=true";s:43:"product-category/(.+?)/page/?([0-9]{1,})/?$";s:51:"index.php?product_cat=$matches[1]&paged=$matches[2]";s:25:"product-category/(.+?)/?$";s:33:"index.php?product_cat=$matches[1]";s:52:"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?product_tag=$matches[1]&feed=$matches[2]";s:47:"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?product_tag=$matches[1]&feed=$matches[2]";s:28:"product-tag/([^/]+)/embed/?$";s:44:"index.php?product_tag=$matches[1]&embed=true";s:40:"product-tag/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?product_tag=$matches[1]&paged=$matches[2]";s:22:"product-tag/([^/]+)/?$";s:33:"index.php?product_tag=$matches[1]";s:35:"product/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"product/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:41:"product/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:24:"product/([^/]+)/embed/?$";s:40:"index.php?product=$matches[1]&embed=true";s:28:"product/([^/]+)/trackback/?$";s:34:"index.php?product=$matches[1]&tb=1";s:48:"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?product=$matches[1]&feed=$matches[2]";s:43:"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?product=$matches[1]&feed=$matches[2]";s:36:"product/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?product=$matches[1]&paged=$matches[2]";s:43:"product/([^/]+)/comment-page-([0-9]{1,})/?$";s:47:"index.php?product=$matches[1]&cpage=$matches[2]";s:33:"product/([^/]+)/wc-api(/(.*))?/?$";s:48:"index.php?product=$matches[1]&wc-api=$matches[3]";s:39:"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:50:"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:32:"product/([^/]+)(?:/([0-9]+))?/?$";s:46:"index.php?product=$matches[1]&page=$matches[2]";s:24:"product/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:34:"product/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:54:"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"product/[^/]+/([^/]+)/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:38:"vc_grid_item/([^/]+)/wc-api(/(.*))?/?$";s:53:"index.php?vc_grid_item=$matches[1]&wc-api=$matches[3]";s:44:"vc_grid_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:55:"vc_grid_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$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:38:"mc4wp-form/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:48:"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:68:"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:44:"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:27:"mc4wp-form/([^/]+)/embed/?$";s:43:"index.php?mc4wp-form=$matches[1]&embed=true";s:31:"mc4wp-form/([^/]+)/trackback/?$";s:37:"index.php?mc4wp-form=$matches[1]&tb=1";s:39:"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$";s:50:"index.php?mc4wp-form=$matches[1]&paged=$matches[2]";s:46:"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]";s:36:"mc4wp-form/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?mc4wp-form=$matches[1]&wc-api=$matches[3]";s:42:"mc4wp-form/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:53:"mc4wp-form/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:35:"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$";s:49:"index.php?mc4wp-form=$matches[1]&page=$matches[2]";s:27:"mc4wp-form/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"mc4wp-form/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"mc4wp-form/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:43:"portfolio-items/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:53:"portfolio-items/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:73:"portfolio-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:68:"portfolio-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:68:"portfolio-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:49:"portfolio-items/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:32:"portfolio-items/([^/]+)/embed/?$";s:47:"index.php?tcsn_portfolio=$matches[1]&embed=true";s:36:"portfolio-items/([^/]+)/trackback/?$";s:41:"index.php?tcsn_portfolio=$matches[1]&tb=1";s:44:"portfolio-items/([^/]+)/page/?([0-9]{1,})/?$";s:54:"index.php?tcsn_portfolio=$matches[1]&paged=$matches[2]";s:51:"portfolio-items/([^/]+)/comment-page-([0-9]{1,})/?$";s:54:"index.php?tcsn_portfolio=$matches[1]&cpage=$matches[2]";s:41:"portfolio-items/([^/]+)/wc-api(/(.*))?/?$";s:55:"index.php?tcsn_portfolio=$matches[1]&wc-api=$matches[3]";s:47:"portfolio-items/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:58:"portfolio-items/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:40:"portfolio-items/([^/]+)(?:/([0-9]+))?/?$";s:53:"index.php?tcsn_portfolio=$matches[1]&page=$matches[2]";s:32:"portfolio-items/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:42:"portfolio-items/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:62:"portfolio-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"portfolio-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"portfolio-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:38:"portfolio-items/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:59:"tcsn_portfoliotags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:57:"index.php?tcsn_portfoliotags=$matches[1]&feed=$matches[2]";s:54:"tcsn_portfoliotags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:57:"index.php?tcsn_portfoliotags=$matches[1]&feed=$matches[2]";s:35:"tcsn_portfoliotags/([^/]+)/embed/?$";s:51:"index.php?tcsn_portfoliotags=$matches[1]&embed=true";s:47:"tcsn_portfoliotags/([^/]+)/page/?([0-9]{1,})/?$";s:58:"index.php?tcsn_portfoliotags=$matches[1]&paged=$matches[2]";s:29:"tcsn_portfoliotags/([^/]+)/?$";s:40:"index.php?tcsn_portfoliotags=$matches[1]";s:45:"testimonial-items/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:55:"testimonial-items/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:75:"testimonial-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:70:"testimonial-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:70:"testimonial-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"testimonial-items/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:34:"testimonial-items/([^/]+)/embed/?$";s:49:"index.php?tcsn_testimonial=$matches[1]&embed=true";s:38:"testimonial-items/([^/]+)/trackback/?$";s:43:"index.php?tcsn_testimonial=$matches[1]&tb=1";s:46:"testimonial-items/([^/]+)/page/?([0-9]{1,})/?$";s:56:"index.php?tcsn_testimonial=$matches[1]&paged=$matches[2]";s:53:"testimonial-items/([^/]+)/comment-page-([0-9]{1,})/?$";s:56:"index.php?tcsn_testimonial=$matches[1]&cpage=$matches[2]";s:43:"testimonial-items/([^/]+)/wc-api(/(.*))?/?$";s:57:"index.php?tcsn_testimonial=$matches[1]&wc-api=$matches[3]";s:49:"testimonial-items/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:60:"testimonial-items/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:42:"testimonial-items/([^/]+)(?:/([0-9]+))?/?$";s:55:"index.php?tcsn_testimonial=$matches[1]&page=$matches[2]";s:34:"testimonial-items/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"testimonial-items/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"testimonial-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"testimonial-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"testimonial-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:40:"testimonial-items/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:40:"team-members/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:50:"team-members/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:70:"team-members/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:65:"team-members/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:65:"team-members/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:46:"team-members/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:29:"team-members/([^/]+)/embed/?$";s:42:"index.php?tcsn_team=$matches[1]&embed=true";s:33:"team-members/([^/]+)/trackback/?$";s:36:"index.php?tcsn_team=$matches[1]&tb=1";s:41:"team-members/([^/]+)/page/?([0-9]{1,})/?$";s:49:"index.php?tcsn_team=$matches[1]&paged=$matches[2]";s:48:"team-members/([^/]+)/comment-page-([0-9]{1,})/?$";s:49:"index.php?tcsn_team=$matches[1]&cpage=$matches[2]";s:38:"team-members/([^/]+)/wc-api(/(.*))?/?$";s:50:"index.php?tcsn_team=$matches[1]&wc-api=$matches[3]";s:44:"team-members/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:55:"team-members/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:37:"team-members/([^/]+)(?:/([0-9]+))?/?$";s:48:"index.php?tcsn_team=$matches[1]&page=$matches[2]";s:29:"team-members/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:39:"team-members/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:59:"team-members/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:54:"team-members/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:54:"team-members/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:35:"team-members/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:13:"favicon\\.ico$";s:19:"index.php?favicon=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:40:"index.php?&page_id=553&cpage=$matches[1]";s:17:"wc-api(/(.*))?/?$";s:29:"index.php?&wc-api=$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:26:"comments/wc-api(/(.*))?/?$";s:29:"index.php?&wc-api=$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:29:"search/(.+)/wc-api(/(.*))?/?$";s:42:"index.php?s=$matches[1]&wc-api=$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:32:"author/([^/]+)/wc-api(/(.*))?/?$";s:52:"index.php?author_name=$matches[1]&wc-api=$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:54:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$";s:82:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$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:41:"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$";s:66:"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$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:28:"([0-9]{4})/wc-api(/(.*))?/?$";s:45:"index.php?year=$matches[1]&wc-api=$matches[3]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:58:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:68:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:88:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:64:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:53:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$";s:91:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$";s:85:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1";s:77:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:65:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]";s:62:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$";s:99:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]";s:62:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:73:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:61:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]";s:47:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:57:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:77:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:53:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]";s:51:"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]";s:38:"([0-9]{4})/comment-page-([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&cpage=$matches[2]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:25:"(.?.+?)/wc-api(/(.*))?/?$";s:49:"index.php?pagename=$matches[1]&wc-api=$matches[3]";s:28:"(.?.+?)/order-pay(/(.*))?/?$";s:52:"index.php?pagename=$matches[1]&order-pay=$matches[3]";s:33:"(.?.+?)/order-received(/(.*))?/?$";s:57:"index.php?pagename=$matches[1]&order-received=$matches[3]";s:25:"(.?.+?)/orders(/(.*))?/?$";s:49:"index.php?pagename=$matches[1]&orders=$matches[3]";s:29:"(.?.+?)/view-order(/(.*))?/?$";s:53:"index.php?pagename=$matches[1]&view-order=$matches[3]";s:28:"(.?.+?)/downloads(/(.*))?/?$";s:52:"index.php?pagename=$matches[1]&downloads=$matches[3]";s:31:"(.?.+?)/edit-account(/(.*))?/?$";s:55:"index.php?pagename=$matches[1]&edit-account=$matches[3]";s:31:"(.?.+?)/edit-address(/(.*))?/?$";s:55:"index.php?pagename=$matches[1]&edit-address=$matches[3]";s:34:"(.?.+?)/payment-methods(/(.*))?/?$";s:58:"index.php?pagename=$matches[1]&payment-methods=$matches[3]";s:32:"(.?.+?)/lost-password(/(.*))?/?$";s:56:"index.php?pagename=$matches[1]&lost-password=$matches[3]";s:34:"(.?.+?)/customer-logout(/(.*))?/?$";s:58:"index.php?pagename=$matches[1]&customer-logout=$matches[3]";s:37:"(.?.+?)/add-payment-method(/(.*))?/?$";s:61:"index.php?pagename=$matches[1]&add-payment-method=$matches[3]";s:40:"(.?.+?)/delete-payment-method(/(.*))?/?$";s:64:"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]";s:45:"(.?.+?)/set-default-payment-method(/(.*))?/?$";s:69:"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]";s:31:".?.+?/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:42:".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$";s:51:"index.php?attachment=$matches[1]&wc-api=$matches[3]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:13:{i:0;s:41:"TCSN-QZ-Shortcodes/tcsn-qz-shortcodes.php";i:1;s:19:"akismet/akismet.php";i:2;s:37:"breadcrumb-navxt/breadcrumb-navxt.php";i:3;s:36:"contact-form-7/wp-contact-form-7.php";i:4;s:45:"easy-custom-sidebars/easy-custom-sidebars.php";i:5;s:19:"jetpack/jetpack.php";i:6;s:27:"js_composer/js_composer.php";i:7;s:51:"mailchimp-for-woocommerce/mailchimp-woocommerce.php";i:8;s:37:"mailchimp-for-wp/mailchimp-for-wp.php";i:9;s:47:"one-click-demo-import/one-click-demo-import.php";i:10;s:23:"revslider/revslider.php";i:11;s:39:"woocommerce-admin/woocommerce-admin.php";i:12;s:27:"woocommerce/woocommerce.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '3', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'quezal', 'yes'),
(41, 'stylesheet', 'quezal', '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', '47018', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '1', 'yes'),
(52, 'default_link_category', '2', '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:4:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}i:3;a:4:{s:5:"title";s:10:"Categories";s:5:"count";i:1;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}i:4;a:4:{s:5:"title";s:10:"Categories";s:5:"count";i:1;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(79, 'widget_text', 'a:2:{i:1;a:4:{s:5:"title";s:14:"About Craftech";s:4:"text";s:255:"Craftech is committed to offering customer focused ICT solutions that meet both their interests and business needs.\r\n\r\n© 2016-2019 Craftech Kenya\r\n[text_style size="12px" line_height="20px" color="#b5b5b5"]Crafting Tomorrows Technology Today[/text_style]";s:6:"filter";b:1;s:6:"visual";b:1;}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:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '2431', 'yes'),
(84, 'page_on_front', '553', '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', '0', 'yes'),
(93, 'initial_db_version', '38590', 'yes'),
(94, 'wpfp_user_roles', 'a:7:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:114:{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:18:"manage_woocommerce";b:1;s:24:"view_woocommerce_reports";b:1;s:12:"edit_product";b:1;s:12:"read_product";b:1;s:14:"delete_product";b:1;s:13:"edit_products";b:1;s:20:"edit_others_products";b:1;s:16:"publish_products";b:1;s:21:"read_private_products";b:1;s:15:"delete_products";b:1;s:23:"delete_private_products";b:1;s:25:"delete_published_products";b:1;s:22:"delete_others_products";b:1;s:21:"edit_private_products";b:1;s:23:"edit_published_products";b:1;s:20:"manage_product_terms";b:1;s:18:"edit_product_terms";b:1;s:20:"delete_product_terms";b:1;s:20:"assign_product_terms";b:1;s:15:"edit_shop_order";b:1;s:15:"read_shop_order";b:1;s:17:"delete_shop_order";b:1;s:16:"edit_shop_orders";b:1;s:23:"edit_others_shop_orders";b:1;s:19:"publish_shop_orders";b:1;s:24:"read_private_shop_orders";b:1;s:18:"delete_shop_orders";b:1;s:26:"delete_private_shop_orders";b:1;s:28:"delete_published_shop_orders";b:1;s:25:"delete_others_shop_orders";b:1;s:24:"edit_private_shop_orders";b:1;s:26:"edit_published_shop_orders";b:1;s:23:"manage_shop_order_terms";b:1;s:21:"edit_shop_order_terms";b:1;s:23:"delete_shop_order_terms";b:1;s:23:"assign_shop_order_terms";b:1;s:16:"edit_shop_coupon";b:1;s:16:"read_shop_coupon";b:1;s:18:"delete_shop_coupon";b:1;s:17:"edit_shop_coupons";b:1;s:24:"edit_others_shop_coupons";b:1;s:20:"publish_shop_coupons";b:1;s:25:"read_private_shop_coupons";b:1;s:19:"delete_shop_coupons";b:1;s:27:"delete_private_shop_coupons";b:1;s:29:"delete_published_shop_coupons";b:1;s:26:"delete_others_shop_coupons";b:1;s:25:"edit_private_shop_coupons";b:1;s:27:"edit_published_shop_coupons";b:1;s:24:"manage_shop_coupon_terms";b:1;s:22:"edit_shop_coupon_terms";b:1;s:24:"delete_shop_coupon_terms";b:1;s:24:"assign_shop_coupon_terms";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}s:8:"customer";a:2:{s:4:"name";s:8:"Customer";s:12:"capabilities";a:1:{s:4:"read";b:1;}}s:12:"shop_manager";a:2:{s:4:"name";s:12:"Shop manager";s:12:"capabilities";a:92:{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:4:"read";b:1;s:18:"read_private_pages";b:1;s:18:"read_private_posts";b:1;s:10:"edit_posts";b:1;s:10:"edit_pages";b:1;s:20:"edit_published_posts";b:1;s:20:"edit_published_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"edit_private_posts";b:1;s:17:"edit_others_posts";b:1;s:17:"edit_others_pages";b:1;s:13:"publish_posts";b:1;s:13:"publish_pages";b:1;s:12:"delete_posts";b:1;s:12:"delete_pages";b:1;s:20:"delete_private_pages";b:1;s:20:"delete_private_posts";b:1;s:22:"delete_published_pages";b:1;s:22:"delete_published_posts";b:1;s:19:"delete_others_posts";b:1;s:19:"delete_others_pages";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:17:"moderate_comments";b:1;s:12:"upload_files";b:1;s:6:"export";b:1;s:6:"import";b:1;s:10:"list_users";b:1;s:18:"edit_theme_options";b:1;s:18:"manage_woocommerce";b:1;s:24:"view_woocommerce_reports";b:1;s:12:"edit_product";b:1;s:12:"read_product";b:1;s:14:"delete_product";b:1;s:13:"edit_products";b:1;s:20:"edit_others_products";b:1;s:16:"publish_products";b:1;s:21:"read_private_products";b:1;s:15:"delete_products";b:1;s:23:"delete_private_products";b:1;s:25:"delete_published_products";b:1;s:22:"delete_others_products";b:1;s:21:"edit_private_products";b:1;s:23:"edit_published_products";b:1;s:20:"manage_product_terms";b:1;s:18:"edit_product_terms";b:1;s:20:"delete_product_terms";b:1;s:20:"assign_product_terms";b:1;s:15:"edit_shop_order";b:1;s:15:"read_shop_order";b:1;s:17:"delete_shop_order";b:1;s:16:"edit_shop_orders";b:1;s:23:"edit_others_shop_orders";b:1;s:19:"publish_shop_orders";b:1;s:24:"read_private_shop_orders";b:1;s:18:"delete_shop_orders";b:1;s:26:"delete_private_shop_orders";b:1;s:28:"delete_published_shop_orders";b:1;s:25:"delete_others_shop_orders";b:1;s:24:"edit_private_shop_orders";b:1;s:26:"edit_published_shop_orders";b:1;s:23:"manage_shop_order_terms";b:1;s:21:"edit_shop_order_terms";b:1;s:23:"delete_shop_order_terms";b:1;s:23:"assign_shop_order_terms";b:1;s:16:"edit_shop_coupon";b:1;s:16:"read_shop_coupon";b:1;s:18:"delete_shop_coupon";b:1;s:17:"edit_shop_coupons";b:1;s:24:"edit_others_shop_coupons";b:1;s:20:"publish_shop_coupons";b:1;s:25:"read_private_shop_coupons";b:1;s:19:"delete_shop_coupons";b:1;s:27:"delete_private_shop_coupons";b:1;s:29:"delete_published_shop_coupons";b:1;s:26:"delete_others_shop_coupons";b:1;s:25:"edit_private_shop_coupons";b:1;s:27:"edit_published_shop_coupons";b:1;s:24:"manage_shop_coupon_terms";b:1;s:22:"edit_shop_coupon_terms";b:1;s:24:"delete_shop_coupon_terms";b:1;s:24:"assign_shop_coupon_terms";b:1;}}}', 'yes'),
(95, 'fresh_site', '0', 'yes'),
(96, 'widget_search', 'a:4:{i:2;a:1:{s:5:"title";s:0:"";}i:3;a:1:{s:5:"title";s:11:"Search Site";}i:4;a:1:{s:5:"title";s:11:"Search Site";}s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_recent-posts', 'a:3:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}i:3;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'widget_recent-comments', 'a:3:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}i:3;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(99, 'widget_archives', 'a:3:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}i:3;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:3:{i:2;a:1:{s:5:"title";s:0:"";}i:3;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(101, 'sidebars_widgets', 'a:13:{s:19:"wp_inactive_widgets";a:7:{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";i:6;s:19:"mc4wp_form_widget-1";}s:12:"widgets-blog";a:12:{i:0;s:8:"search-3";i:1;s:14:"recent-posts-3";i:2;s:17:"recent-comments-3";i:3;s:10:"archives-3";i:4;s:12:"categories-3";i:5;s:23:"tcsn-custom-tag-cloud-1";i:6;s:19:"rev-slider-widget-1";i:7;s:28:"tcsn-custom-social-network-1";i:8;s:25:"tcsn-custom-flickr-feed-1";i:9;s:26:"tcsn-custom-twitter-feed-1";i:10;s:10:"calendar-1";i:11;s:6:"meta-3";}s:12:"widgets-page";a:5:{i:0;s:8:"search-4";i:1;s:26:"tcsn-custom-twitter-feed-2";i:2;s:12:"categories-4";i:3;s:26:"tcsn-custom-recent-posts-1";i:4;s:11:"tag_cloud-1";}s:21:"widget-social-network";a:1:{i:0;s:28:"tcsn-custom-social-network-2";}s:19:"widgets-woocommerce";a:6:{i:0;s:26:"woocommerce_price_filter-1";i:1;s:32:"woocommerce_product_categories-1";i:2;s:32:"woocommerce_top_rated_products-1";i:3;s:31:"woocommerce_product_tag_cloud-1";i:4;s:28:"woocommerce_recent_reviews-1";i:5;s:25:"woocommerce_widget_cart-1";}s:16:"widgets-footer-1";a:1:{i:0;s:6:"text-1";}s:16:"widgets-footer-2";a:1:{i:0;s:26:"tcsn-custom-twitter-feed-3";}s:16:"widgets-footer-3";a:1:{i:0;s:26:"tcsn-custom-contact-info-1";}s:15:"widgets-slide-1";a:1:{i:0;s:26:"tcsn-custom-contact-info-2";}s:15:"widgets-slide-2";a:1:{i:0;s:28:"tcsn-custom-social-network-3";}s:15:"widgets-slide-3";a:0:{}s:17:"custom-sidebar-99";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(102, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'widget_calendar', 'a:2:{i:1;a:1:{s:5:"title";s:8:"Calendar";}s:12:"_multiwidget";i:1;}', 'yes'),
(104, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(105, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(106, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(107, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(108, 'widget_tag_cloud', 'a:2:{i:1;a:2:{s:5:"title";s:4:"Tags";s:8:"taxonomy";s:8:"post_tag";}s:12:"_multiwidget";i:1;}', 'yes'),
(109, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(110, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(111, 'cron', 'a:21:{i:1591171421;a:1:{s:26:"action_scheduler_run_queue";a:1:{s:32:"0d04ed39571b55704c122d726248bbac";a:3:{s:8:"schedule";s:12:"every_minute";s:4:"args";a:1:{i:0;s:7:"WP Cron";}s:8:"interval";i:60;}}}i:1591171570;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:1591172243;a:1:{s:33:"woocommerce_cleanup_personal_data";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591172253;a:1:{s:30:"woocommerce_tracker_send_event";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591172299;a:1:{s:14:"wc_admin_daily";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591172301;a:1:{s:33:"wc_admin_process_orders_milestone";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1591172307;a:1:{s:29:"wc_admin_unsnooze_admin_notes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1591172337;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591173220;a:1:{s:20:"jetpack_clean_nonces";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1591175005;a:1:{s:32:"woocommerce_cancel_unpaid_orders";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1591183043;a:1:{s:24:"woocommerce_cleanup_logs";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591184534;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:1591193843;a:1:{s:28:"woocommerce_cleanup_sessions";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1591203970;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:1591218000;a:1:{s:27:"woocommerce_scheduled_sales";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591221457;a:1:{s:24:"akismet_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;}}}i:1591243680;a:1:{s:29:"mc4wp_refresh_mailchimp_lists";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591247303;a:2:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:25:"delete_expired_transients";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1591258724;a:1:{s:25:"woocommerce_geoip_updater";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:11:"fifteendays";s:4:"args";a:0:{}s:8:"interval";i:1296000;}}}i:1591554368;a:1:{s:30:"wp_site_health_scheduled_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}s:7:"version";i:2;}', 'yes'),
(112, 'theme_mods_twentyseventeen', 'a:2:{s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1543813938;s:4:"data";a:4:{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";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(8145, 'db_upgraded', '', 'yes'),
(76781, '_transient_jetpack_idc_allowed', '1', 'no'),
(76780, '_transient_timeout_jetpack_idc_allowed', '1591175004', 'no'),
(41466, 'jetpack_xmlrpc_errors', 'a:1:{s:14:"no_user_tokens";b:1;}', 'no'),
(2709, '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 `wpfp_options` VALUES
(2172, 'auto_core_update_notified', 'a:4:{s:4:"type";s:7:"success";s:5:"email";s:20:"ayodokeith@gmail.com";s:7:"version";s:5:"5.3.3";s:9:"timestamp";i:1588224797;}', 'no'),
(28488, '_transient_orders-transient-version', '1563761215', 'yes'),
(4266, 'wordpress_api_key', '029e7d156fc2', 'yes'),
(4267, 'akismet_strictness', '1', 'yes'),
(4269, 'akismet_show_user_comments_approved', '1', 'yes'),
(4270, 'akismet_comment_form_privacy_notice', 'display', 'yes'),
(38632, '_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'yes'),
(38636, 'woocommerce_show_marketplace_suggestions', 'yes', 'no'),
(38807, 'mailchimp-woocommerce_cart_table_add_index_update', '1', 'yes'),
(38810, 'jetpack_ab_connect_banner_green_bar', 'a', 'yes'),
(1204, 'revslider-connection', '1', 'yes'),
(1205, 'revslider-latest-version', '6.2.10', 'yes'),
(1206, 'revslider-stable-version', '4.2', 'yes'),
(1207, 'revslider-notices', 'a:0:{}', 'yes'),
(140, 'current_theme', 'Quezal | Shared By Themes24x7.com', 'yes'),
(141, 'theme_mods_quezal', 'a:4:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:12:"primary_menu";i:54;s:14:"secondary_menu";i:55;}s:18:"custom_css_post_id";i:-1;s:11:"tcsn_option";a:4:{s:21:"tcsn_show_slide_panel";s:1:"0";s:16:"tcsn_show_topbar";s:1:"1";s:23:"tcsn_show_topbar_social";s:1:"1";s:23:"tcsn_show_topbar_search";s:1:"0";}}', 'yes'),
(142, 'theme_switched', '', 'yes'),
(143, 'redux_version_upgraded_from', '3.6.2', 'yes'),
(146, 'widget_tcsn-custom-tag-cloud', 'a:2:{i:1;a:2:{s:5:"title";s:4:"Tags";s:8:"taxonomy";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(147, 'widget_tcsn-custom-flickr-feed', 'a:2:{i:1;a:4:{s:5:"title";s:11:"Flickr Feed";s:9:"flickr_id";s:12:"52617155@N08";s:6:"number";i:6;s:6:"sortby";s:6:"latest";}s:12:"_multiwidget";i:1;}', 'yes'),
(148, 'widget_tcsn-custom-twitter-feed', 'a:4:{i:1;a:7:{s:5:"title";s:12:"From Twitter";s:12:"consumer_key";s:22:"yzkAjgfKqMOk9nfIx1woYg";s:15:"consumer_secret";s:42:"ir0wGlsYfslU0T0zokaysu15HUGArbG2k1kBaHRTL4";s:10:"user_token";s:50:"258905075-wucTdhGLiR2eWUMUa5rZD3KR8NgC2NKDf0UcNu5o";s:11:"user_secret";s:42:"OQRyqrPOBpJZrdxoBCs07nXxgRdDUq1XXfZ9M1J27o";s:10:"twitter_id";s:6:"envato";s:5:"count";s:1:"3";}i:2;a:7:{s:5:"title";s:13:"Recent Tweets";s:12:"consumer_key";s:22:"yzkAjgfKqMOk9nfIx1woYg";s:15:"consumer_secret";s:42:"ir0wGlsYfslU0T0zokaysu15HUGArbG2k1kBaHRTL4";s:10:"user_token";s:50:"258905075-wucTdhGLiR2eWUMUa5rZD3KR8NgC2NKDf0UcNu5o";s:11:"user_secret";s:42:"OQRyqrPOBpJZrdxoBCs07nXxgRdDUq1XXfZ9M1J27o";s:10:"twitter_id";s:6:"envato";s:5:"count";s:1:"1";}i:3;a:8:{s:5:"title";s:12:"From Twitter";s:12:"consumer_key";s:22:"yzkAjgfKqMOk9nfIx1woYg";s:15:"consumer_secret";s:42:"ir0wGlsYfslU0T0zokaysu15HUGArbG2k1kBaHRTL4";s:10:"user_token";s:50:"258905075-wucTdhGLiR2eWUMUa5rZD3KR8NgC2NKDf0UcNu5o";s:11:"user_secret";s:42:"OQRyqrPOBpJZrdxoBCs07nXxgRdDUq1XXfZ9M1J27o";s:10:"twitter_id";s:14:"Craftech_Kenya";s:5:"count";s:1:"1";s:4:"link";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(149, 'widget_tcsn-custom-contact-info', 'a:3:{i:1;a:6:{s:5:"title";s:62:"Let’s talk business. Contact us and we will discuss further.";s:7:"address";s:50:"Kivemia Road\r\nNairobi Kenya\r\nTel. +254 778 859 139";s:6:"filter";b:1;s:5:"phone";s:0:"";s:5:"email";s:1:"#";s:8:"emailtxt";s:23:"craftech@craftech.co.ke";}i:2;a:6:{s:5:"title";s:10:"Contact Us";s:7:"address";s:97:"3245 East Creek Blvd, Suite 590,\r\nBos Boomer, AU 20076\r\nMail: info@example.com\r\nTel. 009 123 4567";s:6:"filter";b:1;s:5:"phone";s:0:"";s:5:"email";s:0:"";s:8:"emailtxt";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(150, 'widget_tcsn-custom-social-network', 'a:4:{i:1;a:28:{s:5:"title";s:14:"Social Connect";s:10:"tooltippos";s:3:"top";s:3:"aim";s:1:"#";s:7:"behance";s:1:"#";s:9:"delicious";s:1:"#";s:8:"dribbble";s:1:"#";s:7:"dropbox";s:1:"#";s:8:"facebook";s:1:"#";s:6:"flickr";s:1:"#";s:6:"forrst";s:1:"#";s:10:"googleplus";s:1:"#";s:9:"instagram";s:1:"#";s:6:"lastfm";s:1:"#";s:8:"linkedin";s:1:"#";s:6:"paypal";s:1:"#";s:6:"picasa";s:1:"#";s:9:"pinterest";s:1:"#";s:5:"skype";s:1:"#";s:10:"soundcloud";s:1:"#";s:11:"stumbleupon";s:1:"#";s:6:"tumblr";s:1:"#";s:7:"twitter";s:1:"#";s:5:"vimeo";s:1:"#";s:5:"yahoo";s:1:"#";s:4:"yelp";s:1:"#";s:7:"youtube";s:1:"#";s:3:"rss";s:1:"#";s:4:"mail";s:1:"#";}i:2;a:28:{s:5:"title";s:0:"";s:10:"tooltippos";s:6:"bottom";s:3:"aim";s:0:"";s:7:"behance";s:0:"";s:9:"delicious";s:0:"";s:8:"dribbble";s:1:"#";s:7:"dropbox";s:0:"";s:8:"facebook";s:0:"";s:6:"flickr";s:0:"";s:6:"forrst";s:0:"";s:10:"googleplus";s:1:"#";s:9:"instagram";s:0:"";s:6:"lastfm";s:0:"";s:8:"linkedin";s:0:"";s:6:"paypal";s:0:"";s:6:"picasa";s:0:"";s:9:"pinterest";s:0:"";s:5:"skype";s:0:"";s:10:"soundcloud";s:0:"";s:11:"stumbleupon";s:0:"";s:6:"tumblr";s:0:"";s:7:"twitter";s:1:"#";s:5:"vimeo";s:0:"";s:5:"yahoo";s:0:"";s:4:"yelp";s:0:"";s:7:"youtube";s:0:"";s:3:"rss";s:0:"";s:4:"mail";s:0:"";}i:3;a:28:{s:5:"title";s:14:"Social Network";s:10:"tooltippos";s:3:"top";s:3:"aim";s:1:"#";s:7:"behance";s:1:"#";s:9:"delicious";s:1:"#";s:8:"dribbble";s:1:"#";s:7:"dropbox";s:0:"";s:8:"facebook";s:1:"#";s:6:"flickr";s:1:"#";s:6:"forrst";s:0:"";s:10:"googleplus";s:1:"#";s:9:"instagram";s:1:"#";s:6:"lastfm";s:0:"";s:8:"linkedin";s:0:"";s:6:"paypal";s:0:"";s:6:"picasa";s:0:"";s:9:"pinterest";s:0:"";s:5:"skype";s:0:"";s:10:"soundcloud";s:0:"";s:11:"stumbleupon";s:0:"";s:6:"tumblr";s:0:"";s:7:"twitter";s:0:"";s:5:"vimeo";s:0:"";s:5:"yahoo";s:0:"";s:4:"yelp";s:0:"";s:7:"youtube";s:0:"";s:3:"rss";s:0:"";s:4:"mail";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(151, 'widget_tcsn-custom-sidebar-menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(152, 'tcsn_option', 'a:122:{s:8:"last_tab";s:1:"0";s:12:"tcsn_favicon";a:5:{s:3:"url";s:61:"https://craftech.co.ke/wp-content/uploads/2018/12/favicon.ico";s:2:"id";s:4:"3455";s:6:"height";s:0:"";s:5:"width";s:0:"";s:9:"thumbnail";s:59:"https://craftech.co.ke/wp-includes/images/media/default.png";}s:19:"tcsn_favicon_iphone";a:5:{s:3:"url";s:85:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed.png";s:2:"id";s:4:"3456";s:6:"height";s:3:"192";s:5:"width";s:3:"192";s:9:"thumbnail";s:93:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed-150x150.png";}s:26:"tcsn_favicon_iphone_retina";a:5:{s:3:"url";s:85:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed.png";s:2:"id";s:4:"3456";s:6:"height";s:3:"192";s:5:"width";s:3:"192";s:9:"thumbnail";s:93:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed-150x150.png";}s:17:"tcsn_favicon_ipad";a:5:{s:3:"url";s:85:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed.png";s:2:"id";s:4:"3456";s:6:"height";s:3:"192";s:5:"width";s:3:"192";s:9:"thumbnail";s:93:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed-150x150.png";}s:24:"tcsn_favicon_ipad_retina";a:5:{s:3:"url";s:85:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed.png";s:2:"id";s:4:"3456";s:6:"height";s:3:"192";s:5:"width";s:3:"192";s:9:"thumbnail";s:93:"https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed-150x150.png";}s:22:"tcsn_layout_responsive";s:1:"1";s:20:"tcsn_header_tracking";s:0:"";s:20:"tcsn_footer_tracking";s:0:"";s:18:"tcsn_page_comments";s:0:"";s:20:"tcsn_body_typography";a:10:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-backup";s:28:"Arial, Helvetica, sans-serif";s:11:"font-weight";s:3:"400";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"14px";s:11:"line-height";s:4:"22px";s:5:"color";s:7:"#545454";}s:18:"tcsn_h1_typography";a:9:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"48px";s:11:"line-height";s:4:"52px";s:5:"color";s:7:"#060606";}s:18:"tcsn_h2_typography";a:9:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"36px";s:11:"line-height";s:4:"42px";s:5:"color";s:7:"#060606";}s:18:"tcsn_h3_typography";a:9:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"30px";s:11:"line-height";s:4:"36px";s:5:"color";s:7:"#060606";}s:18:"tcsn_h4_typography";a:9:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"24px";s:11:"line-height";s:4:"30px";s:5:"color";s:7:"#060606";}s:18:"tcsn_h5_typography";a:9:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"18px";s:11:"line-height";s:4:"24px";s:5:"color";s:7:"#060606";}s:18:"tcsn_h6_typography";a:9:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"14px";s:11:"line-height";s:4:"20px";s:5:"color";s:7:"#060606";}s:21:"tcsn_theme_link_color";a:2:{s:7:"regular";s:7:"#969696";s:5:"hover";s:7:"#545454";}s:22:"tcsn_button_typography";a:5:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"400";s:10:"font-style";s:0:"";}s:27:"tcsn_slide_panel_typography";a:9:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"400";s:10:"font-style";s:0:"";s:7:"subsets";s:0:"";s:9:"font-size";s:4:"14px";s:11:"line-height";s:4:"22px";s:5:"color";s:7:"#ffffff";}s:25:"tcsn_slide_panel_headings";s:7:"#ffffff";s:27:"tcsn_slide_panel_link_color";a:2:{s:7:"regular";s:7:"#ffffff";s:5:"hover";s:7:"#060606";}s:22:"tcsn_topbar_typography";a:8:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"400";s:10:"font-style";s:0:"";s:7:"subsets";s:0:"";s:9:"font-size";s:4:"14px";s:5:"color";s:7:"#ffffff";}s:22:"tcsn_topbar_link_hover";s:7:"#969696";s:24:"tcsn_topbar_social_color";s:7:"#ffffff";s:20:"tcsn_menu_typography";a:8:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"600";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"14px";s:5:"color";s:7:"#060606";}s:20:"tcsn_menu_link_hover";s:7:"#a2a2a2";s:21:"tcsn_menu_link_active";s:7:"#a2a2a2";s:29:"tcsn_menu_dropdown_typography";a:7:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"400";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"14px";}s:24:"tcsn_dropdown_background";a:1:{s:16:"background-color";s:7:"#060606";}s:20:"tcsn_dropdown_border";s:7:"#060606";s:18:"tcsn_dropdown_link";s:7:"#ffffff";s:24:"tcsn_dropdown_link_hover";s:7:"#a2a2a2";s:26:"tcsn_page_title_typography";a:8:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"24px";s:5:"color";s:7:"#b8b8b8";}s:26:"tcsn_breadcrumb_typography";a:2:{s:9:"font-size";s:4:"11px";s:5:"color";s:7:"#b8b8b8";}s:21:"tcsn_page_header_link";a:2:{s:7:"regular";s:7:"#b8b8b8";s:5:"hover";s:7:"#545454";}s:22:"tcsn_footer_typography";a:9:{s:11:"font-family";s:9:"Open Sans";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"400";s:10:"font-style";s:0:"";s:7:"subsets";s:0:"";s:9:"font-size";s:4:"14px";s:11:"line-height";s:4:"22px";s:5:"color";s:7:"#787878";}s:20:"tcsn_footer_headings";s:7:"#ffffff";s:22:"tcsn_footer_link_color";a:2:{s:7:"regular";s:7:"#b8b8b8";s:5:"hover";s:7:"#545454";}s:22:"tcsn_widget_typography";a:7:{s:11:"font-family";s:6:"Roboto";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:3:"500";s:10:"font-style";s:0:"";s:7:"subsets";s:5:"latin";s:9:"font-size";s:4:"18px";}s:24:"tcsn_widget_border_color";s:7:"#d5d5d5";s:24:"tcsn_social_widget_color";s:7:"#b8b8b8";s:36:"tcsn_slide_panel_widget_border_color";s:7:"#ffffff";s:36:"tcsn_slide_panel_social_widget_color";s:7:"#ffffff";s:31:"tcsn_footer_widget_border_color";s:7:"#545454";s:31:"tcsn_footer_social_widget_color";s:7:"#b8b8b8";s:21:"tcsn_theme_base_color";s:7:"#3ba3ed";s:20:"tcsn_body_background";a:7:{s:16:"background-color";s:7:"#ffffff";s:17:"background-repeat";s:0:"";s:15:"background-size";s:0:"";s:21:"background-attachment";s:0:"";s:19:"background-position";s:0:"";s:16:"background-image";s:0:"";s:5:"media";a:4:{s:2:"id";s:0:"";s:6:"height";s:0:"";s:5:"width";s:0:"";s:9:"thumbnail";s:0:"";}}s:19:"tcsn_sidebar_margin";a:1:{s:10:"margin-top";s:4:"60px";}s:18:"tcsn_layout_header";s:2:"v1";s:18:"tcsn_header_sticky";s:1:"1";s:21:"tcsn_show_slide_panel";s:1:"0";s:16:"tcsn_show_topbar";s:1:"1";s:23:"tcsn_show_topbar_social";s:1:"1";s:23:"tcsn_show_topbar_search";s:1:"0";s:23:"tcsn_select_topbar_info";s:10:"tcsn_links";s:21:"tcsn_text_topbar_info";s:12:"ICT Services";s:22:"tcsn_topbar_background";a:7:{s:16:"background-color";s:7:"#060606";s:17:"background-repeat";s:0:"";s:15:"background-size";s:0:"";s:21:"background-attachment";s:0:"";s:19:"background-position";s:0:"";s:16:"background-image";s:0:"";s:5:"media";a:4:{s:2:"id";s:0:"";s:6:"height";s:0:"";s:5:"width";s:0:"";s:9:"thumbnail";s:0:"";}}s:19:"tcsn_topbar_padding";a:2:{s:11:"padding-top";s:4:"10px";s:14:"padding-bottom";s:4:"10px";}s:25:"tcsn_topbar_border_bottom";s:0:"";s:31:"tcsn_topbar_border_bottom_color";s:0:"";s:22:"tcsn_header_background";a:7:{s:16:"background-color";s:7:"#ffffff";s:17:"background-repeat";s:0:"";s:15:"background-size";s:0:"";s:21:"background-attachment";s:0:"";s:19:"background-position";s:0:"";s:16:"background-image";s:0:"";s:5:"media";a:4:{s:2:"id";s:0:"";s:6:"height";s:0:"";s:5:"width";s:0:"";s:9:"thumbnail";s:0:"";}}s:19:"tcsn_header_padding";a:2:{s:11:"padding-top";s:4:"30px";s:14:"padding-bottom";s:4:"30px";}s:25:"tcsn_header_border_bottom";s:1:"1";s:31:"tcsn_header_border_bottom_color";s:7:"#e0e0e0";s:14:"tcsn_logo_type";s:20:"tcsn_show_image_logo";s:24:"tcsn_image_standard_logo";a:5:{s:3:"url";s:58:"https://craftech.co.ke/wp-content/uploads/2018/12/logo.png";s:2:"id";s:4:"3457";s:6:"height";s:4:"1657";s:5:"width";s:4:"3124";s:9:"thumbnail";s:66:"https://craftech.co.ke/wp-content/uploads/2018/12/logo-150x150.png";}s:14:"tcsn_text_logo";s:8:"Craftech";s:14:"tcsn_font_logo";a:8:{s:11:"font-family";s:26:"Arial,Helvetica,sans-serif";s:12:"font-options";s:0:"";s:6:"google";s:1:"1";s:11:"font-weight";s:0:"";s:10:"font-style";s:0:"";s:7:"subsets";s:0:"";s:9:"font-size";s:4:"30px";s:11:"line-height";s:4:"30px";}s:14:"tcsn_link_menu";a:2:{s:7:"regular";s:7:"#ffffff";s:5:"hover";s:7:"#ffffff";}s:21:"tcsn_show_retina_logo";s:1:"1";s:22:"tcsn_image_retina_logo";a:5:{s:3:"url";s:58:"https://craftech.co.ke/wp-content/uploads/2018/12/logo.png";s:2:"id";s:4:"3457";s:6:"height";s:4:"1657";s:5:"width";s:4:"3124";s:9:"thumbnail";s:66:"https://craftech.co.ke/wp-content/uploads/2018/12/logo-150x150.png";}s:27:"tcsn_retina_logo_dimensions";a:3:{s:5:"width";s:5:"132px";s:6:"height";s:4:"36px";s:5:"units";s:2:"px";}s:27:"tcsn_sticky_logo_dimensions";a:2:{s:5:"width";s:5:"100px";s:5:"units";s:2:"px";}s:16:"tcsn_menu_margin";a:1:{s:10:"margin-top";s:0:"";}s:21:"tcsn_show_page_header";s:1:"1";s:27:"tcsn_page_header_background";a:7:{s:16:"background-color";s:7:"#f4f4f4";s:17:"background-repeat";s:0:"";s:15:"background-size";s:0:"";s:21:"background-attachment";s:0:"";s:19:"background-position";s:0:"";s:16:"background-image";s:0:"";s:5:"media";a:4:{s:2:"id";s:0:"";s:6:"height";s:0:"";s:5:"width";s:0:"";s:9:"thumbnail";s:0:"";}}s:24:"tcsn_page_header_padding";a:2:{s:11:"padding-top";s:4:"30px";s:14:"padding-bottom";s:4:"30px";}s:30:"tcsn_page_header_border_bottom";s:1:"1";s:36:"tcsn_page_header_border_bottom_color";s:7:"#e0e0e0";s:20:"tcsn_show_breadcrumb";s:1:"1";s:24:"tcsn_columns_slide_panel";s:1:"3";s:27:"tcsn_slide_panel_background";s:7:"#b5b5b5";s:31:"tcsn_slide_panel_btn_background";s:7:"#b5b5b5";s:19:"tcsn_columns_footer";s:1:"3";s:22:"tcsn_footer_background";a:7:{s:16:"background-color";s:7:"#0d0d0d";s:17:"background-repeat";s:9:"no-repeat";s:15:"background-size";s:5:"cover";s:21:"background-attachment";s:0:"";s:19:"background-position";s:13:"center center";s:16:"background-image";s:63:"https://craftech.co.ke/wp-content/uploads/2014/07/footer-bg.jpg";s:5:"media";a:4:{s:2:"id";s:4:"1276";s:6:"height";s:3:"400";s:5:"width";s:4:"1920";s:9:"thumbnail";s:63:"https://craftech.co.ke/wp-content/uploads/2014/07/footer-bg.jpg";}}s:19:"tcsn_footer_padding";a:2:{s:11:"padding-top";s:4:"60px";s:14:"padding-bottom";s:4:"30px";}s:18:"tcsn_show_take_top";s:1:"1";s:24:"tcsn_take_top_background";s:7:"#000000";s:15:"tcsn_blog_title";s:14:"Craftech Works";s:16:"tcsn_blog_layout";s:17:"tcsn-with-sidebar";s:17:"tcsn_blog_sidebar";s:18:"tcsn-sidebar-right";s:23:"tcsn_single_post_layout";s:24:"tcsn-single-with-sidebar";s:24:"tcsn_single_post_sidebar";s:25:"tcsn-single-sidebar-right";s:22:"tcsn_post_social_share";s:1:"1";s:27:"tcsn_show_post_social_share";a:6:{i:1;s:1:"1";i:2;s:1:"1";i:3;s:1:"1";i:4;s:1:"1";i:5;s:1:"1";i:6;s:1:"1";}s:20:"tcsn_portfolio_title";s:9:"Portfolio";s:29:"tcsn_portfolio_items_per_page";s:1:"9";s:19:"tcsn_portfolio_sort";s:4:"date";s:22:"tcsn_portfolio_arrange";s:4:"DESC";s:21:"tcsn_portfolio_filter";s:1:"1";s:22:"tcsn_portfolio_heading";s:1:"1";s:22:"tcsn_portfolio_excerpt";s:1:"0";s:20:"tcsn_portfolio_hover";s:9:"tcsn_zoom";s:33:"tcsn_portfolio_predefined_content";s:1:"1";s:15:"tcsn_team_title";s:8:"Our Team";s:22:"tcsn_testimonial_title";s:7:"Reviews";s:27:"tcsn_woocommerce_shop_title";s:8:"Products";s:16:"tcsn_shop_layout";s:22:"tcsn-shop-with-sidebar";s:17:"tcsn_shop_sidebar";s:22:"tcsn-shop-sidebar-left";s:19:"tcsn_product_layout";s:25:"tcsn-product-with-sidebar";s:20:"tcsn_product_sidebar";s:26:"tcsn-product-sidebar-right";s:29:"tcsn_woocommerce_shop_columns";s:1:"3";s:40:"tcsn_woocommerce_related_products_column";s:1:"3";s:33:"tcsn_woocommerce_related_products";s:1:"3";s:19:"tcsn_show_ajax_cart";s:1:"1";s:22:"tcsn_ajax_cart_padding";a:1:{s:11:"padding-top";s:4:"10px";}s:25:"tcsn_product_social_share";s:1:"1";s:30:"tcsn_show_product_social_share";a:6:{i:1;s:1:"1";i:2;s:1:"1";i:3;s:1:"1";i:4;s:1:"1";i:5;s:1:"1";i:6;s:1:"1";}s:15:"tcsn_custom_css";s:252:"/*----- mailchimp widget form / any subscribe widget -----*/\r\n.subscribe-form input[type="email"] {\r\n	width: 99% !important;\r\n	line-height: 24px;\r\n	margin-right: 0;\r\n	float: none;\r\n}\r\n.subscribe-form input[type="submit"] {\r\n	width: 99.8% !important;\r\n}";s:14:"tcsn_vc_extras";s:1:"1";s:23:"tcsn_demo_plugin_disble";s:1:"1";}', 'yes'),
(153, 'tcsn_option-transients', 'a:2:{s:14:"changed_values";a:0:{}s:9:"last_save";i:1543995322;}', 'yes'),
(900, 'mailchimp_woocommerce_version', '2.4.0', 'no'),
(901, 'mailchimp-woocommerce', 'a:2:{s:33:"woocommerce_settings_save_general";b:1;s:19:"store_currency_code";s:3:"KES";}', 'yes'),
(902, 'mailchimp-woocommerce-store_id', '5c04ea55dc729', 'yes'),
(924, 'jetpack_tos_agreed', '1', 'yes'),
(925, 'jetpack_secrets', 'a:1:{s:19:"jetpack_authorize_1";a:3:{s:8:"secret_1";s:32:"n18FVuAbnmu6aOoJbICyxlAWzXFQct0u";s:8:"secret_2";s:32:"CyBIjQVihvE0VPXH3aTktCQGUd79ghuN";s:3:"exp";i:1590264874;}}', 'no'),
(928, 'jetpack_private_options', 'a:1:{s:10:"blog_token";s:65:"M&1WHw1X5((pDq$2k2#gkPgtkCh3ZECf.fa1y$Ak6pMa*qZEYkT6emziHQuYhm7Iu";}', 'yes'),
(929, 'jetpack_last_connect_url_check', '1590257674', 'no'),
(157, 'recently_activated', 'a:0:{}', 'yes'),
(171, 'mc4wp_version', '4.7.7', 'yes'),
(172, 'revslider-library-check', '1590481303', 'yes'),
(160, 'wpcf7', 'a:4:{s:7:"version";s:5:"5.1.9";s:13:"bulk_validate";a:4:{s:9:"timestamp";i:1543814010;s:7:"version";s:5:"5.0.5";s:11:"count_valid";i:1;s:13:"count_invalid";i:0;}s:9:"recaptcha";N;s:23:"recaptcha_v2_v3_warning";b:1;}', 'yes'),
(161, 'revslider_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'),
(162, 'revslider_server_refresh', '1591096046', 'yes'),
(163, 'revslider-update-check-short', '1591096051', 'yes'),
(164, 'revslider-templates-check', '1591096051', 'yes'),
(168, 'widget_mc4wp_form_widget', 'a:2:{i:1;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(169, 'widget_bcn_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(170, 'vc_version', '5.5.1', 'yes'),
(173, 'revslider_checktables', '1', 'yes'),
(174, 'rs_tables_created', '1', 'yes'),
(175, 'revslider_table_version', '1.0.6', 'yes'),
(176, 'revslider-global-settings', 'a:0:{}', 'yes'),
(179, 'woocommerce_store_address', '44609', 'yes'),
(180, 'woocommerce_store_address_2', '', 'yes'),
(181, 'woocommerce_store_city', 'Nairobi', 'yes'),
(182, 'woocommerce_default_country', 'KE:*', 'yes'),
(183, 'woocommerce_store_postcode', '00100', 'yes'),
(184, 'woocommerce_allowed_countries', 'all', 'yes'),
(185, 'woocommerce_all_except_countries', '', 'yes'),
(186, 'woocommerce_specific_allowed_countries', '', 'yes'),
(187, 'woocommerce_ship_to_countries', '', 'yes'),
(188, 'woocommerce_specific_ship_to_countries', '', 'yes'),
(189, 'woocommerce_default_customer_address', 'geolocation', 'yes'),
(190, 'woocommerce_calc_taxes', 'no', 'yes'),
(191, 'woocommerce_enable_coupons', 'yes', 'yes'),
(192, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(193, 'woocommerce_currency', 'KES', 'yes'),
(194, 'woocommerce_currency_pos', 'left', 'yes'),
(195, 'woocommerce_price_thousand_sep', ',', 'yes'),
(196, 'woocommerce_price_decimal_sep', '.', 'yes'),
(197, 'woocommerce_price_num_decimals', '2', 'yes'),
(198, 'woocommerce_shop_page_id', '2963', 'yes'),
(199, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(200, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(201, 'woocommerce_placeholder_image', '3488', 'yes'),
(202, 'woocommerce_weight_unit', 'kg', 'yes'),
(203, 'woocommerce_dimension_unit', 'cm', 'yes'),
(204, 'woocommerce_enable_reviews', 'yes', 'yes'),
(205, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(206, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(207, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(208, 'woocommerce_review_rating_required', 'yes', 'no'),
(209, 'woocommerce_manage_stock', 'yes', 'yes'),
(210, 'woocommerce_hold_stock_minutes', '60', 'no'),
(211, 'woocommerce_notify_low_stock', 'yes', 'no'),
(212, 'woocommerce_notify_no_stock', 'yes', 'no'),
(213, 'woocommerce_stock_email_recipient', 'craftech@craftech.co.ke', 'no'),
(214, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(215, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(216, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(217, 'woocommerce_stock_format', '', 'yes'),
(218, 'woocommerce_file_download_method', 'force', 'no'),
(219, 'woocommerce_downloads_require_login', 'no', 'no'),
(220, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(221, 'woocommerce_prices_include_tax', 'no', 'yes'),
(222, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(223, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(224, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(226, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(227, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(228, 'woocommerce_price_display_suffix', '', 'yes'),
(229, 'woocommerce_tax_total_display', 'itemized', 'no'),
(230, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(231, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(232, 'woocommerce_ship_to_destination', 'billing', 'no'),
(233, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(234, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(235, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(236, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(237, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(238, 'woocommerce_registration_generate_username', 'yes', 'no'),
(239, 'woocommerce_registration_generate_password', 'yes', 'no'),
(240, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(241, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(242, 'woocommerce_registration_privacy_policy_text', 'Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].', 'yes'),
(243, 'woocommerce_checkout_privacy_policy_text', 'Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].', 'yes'),
(244, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:"number";s:0:"";s:4:"unit";s:6:"months";}', 'no'),
(245, 'woocommerce_trash_pending_orders', '', 'no'),
(246, 'woocommerce_trash_failed_orders', '', 'no'),
(247, 'woocommerce_trash_cancelled_orders', '', 'no'),
(248, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:"number";s:0:"";s:4:"unit";s:6:"months";}', 'no'),
(249, 'woocommerce_email_from_name', 'Craftech Kenya', 'no'),
(250, 'woocommerce_email_from_address', 'craftech@craftech.co.ke', 'no'),
(251, 'woocommerce_email_header_image', '', 'no'),
(252, 'woocommerce_email_footer_text', '{site_title}<br/>Powered by <a href="https://woocommerce.com/">WooCommerce</a>', 'no'),
(253, 'woocommerce_email_base_color', '#96588a', 'no'),
(254, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(255, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(256, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(257, 'woocommerce_cart_page_id', '2964', 'yes'),
(258, 'woocommerce_checkout_page_id', '2965', 'yes'),
(259, 'woocommerce_myaccount_page_id', '2966', 'yes'),
(260, 'woocommerce_terms_page_id', '', 'no'),
(261, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(262, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(263, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(264, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(265, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(266, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(267, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(268, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(269, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(270, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(271, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(272, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(273, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(274, 'woocommerce_api_enabled', 'no', 'yes'),
(275, 'woocommerce_single_image_width', '600', 'yes'),
(276, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(277, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(278, 'woocommerce_demo_store', 'no', 'no'),
(279, 'woocommerce_permalinks', 'a:5:{s:12:"product_base";s:7:"product";s:13:"category_base";s:16:"product-category";s:8:"tag_base";s:11:"product-tag";s:14:"attribute_base";s:0:"";s:22:"use_verbose_page_rules";b:0;}', 'yes'),
(280, 'current_theme_supports_woocommerce', 'yes', 'yes'),
(281, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(38635, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(63480, 'product_cat_children', 'a:0:{}', 'yes'),
(284, 'default_product_cat', '15', 'yes'),
(916, 'jetpack_activated', '1', 'yes'),
(919, 'jetpack_activation_source', 'a:2:{i:0;s:7:"unknown";i:1;N;}', 'yes'),
(893, 'woocommerce_tracker_last_send', '1590828927', 'yes'),
(63388, 'woocommerce_version', '3.9.3', 'yes'),
(75165, 'woocommerce_db_version', '3.9.3', 'yes'),
(289, 'woocommerce_admin_notices', 'a:0:{}', 'yes'),
(290, 'mc4wp_flash_messages', 'a:0:{}', 'no'),
(291, 'revslider_update_version', '5.2.5.5', 'yes'),
(294, '_transient_woocommerce_webhook_ids', 'a:0:{}', 'yes'),
(295, 'widget_rev-slider-widget', 'a:2:{i:1;a:3:{s:16:"rev_slider_title";s:0:"";s:10:"rev_slider";s:1:"4";s:16:"rev_slider_pages";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(296, 'widget_woocommerce_widget_cart', 'a:2:{i:1;a:2:{s:5:"title";s:4:"Cart";s:13:"hide_if_empty";s:1:"1";}s:12:"_multiwidget";i:1;}', 'yes'),
(297, 'widget_woocommerce_layered_nav_filters', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(298, 'widget_woocommerce_layered_nav', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(299, 'widget_woocommerce_price_filter', 'a:2:{i:1;a:1:{s:5:"title";s:15:"Filter by price";}s:12:"_multiwidget";i:1;}', 'yes'),
(300, 'widget_woocommerce_product_categories', 'a:2:{i:1;a:6:{s:5:"title";s:18:"Product Categories";s:7:"orderby";s:4:"name";s:8:"dropdown";i:0;s:5:"count";s:1:"1";s:12:"hierarchical";i:0;s:18:"show_children_only";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(301, 'widget_woocommerce_product_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(302, 'widget_woocommerce_product_tag_cloud', 'a:2:{i:1;a:1:{s:5:"title";s:12:"Product Tags";}s:12:"_multiwidget";i:1;}', 'yes'),
(303, 'widget_woocommerce_products', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(304, 'widget_woocommerce_recently_viewed_products', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(305, 'widget_woocommerce_top_rated_products', 'a:2:{i:1;a:2:{s:5:"title";s:18:"Top Rated Products";s:6:"number";s:1:"3";}s:12:"_multiwidget";i:1;}', 'yes'),
(306, 'widget_woocommerce_recent_reviews', 'a:2:{i:1;a:2:{s:5:"title";s:14:"Recent Reviews";s:6:"number";s:2:"10";}s:12:"_multiwidget";i:1;}', 'yes'),
(307, 'widget_woocommerce_rating_filter', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(312, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes'),
(337, 'category_children', 'a:0:{}', 'yes'),
(336, '_transient_product_query-transient-version', '1590257675', 'yes'),
(324, 'widget_akismet_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(339, 'tcsn_portfoliotags_children', 'a:0:{}', 'yes'),
(340, 'widget_tcsn-custom-recent-posts', 'a:2:{i:1;a:6:{s:5:"title";s:12:"Recent Posts";s:6:"number";i:3;s:10:"post_thumb";b:0;s:9:"show_date";b:1;s:11:"show_author";b:1;s:7:"excerpt";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(1071, 'woocommerce_tracker_ua', 'a:4:{i:0;s:129:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134";i:1;s:114:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36";i:2;s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36";i:3;s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36";}', 'yes'),
(75116, '_transient_woocommerce_reports-transient-version', '1590255275', 'yes'),
(63402, 'woocommerce_marketplace_suggestions', 'a:2:{s:11:"suggestions";a:28:{i:0;a:4:{s:4:"slug";s:28:"product-edit-meta-tab-header";s:7:"context";s:28:"product-edit-meta-tab-header";s:5:"title";s:22:"Recommended extensions";s:13:"allow-dismiss";b:0;}i:1;a:6:{s:4:"slug";s:39:"product-edit-meta-tab-footer-browse-all";s:7:"context";s:28:"product-edit-meta-tab-footer";s:9:"link-text";s:21:"Browse all extensions";s:3:"url";s:64:"https://woocommerce.com/product-category/woocommerce-extensions/";s:8:"promoted";s:31:"category-woocommerce-extensions";s:13:"allow-dismiss";b:0;}i:2;a:9:{s:4:"slug";s:46:"product-edit-mailchimp-woocommerce-memberships";s:7:"product";s:33:"woocommerce-memberships-mailchimp";s:14:"show-if-active";a:1:{i:0;s:23:"woocommerce-memberships";}s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:117:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/mailchimp-for-memberships.svg";s:5:"title";s:25:"Mailchimp for Memberships";s:4:"copy";s:79:"Completely automate your email lists by syncing membership changes to Mailchimp";s:11:"button-text";s:10:"Learn More";s:3:"url";s:67:"https://woocommerce.com/products/mailchimp-woocommerce-memberships/";}i:3;a:9:{s:4:"slug";s:19:"product-edit-addons";s:7:"product";s:26:"woocommerce-product-addons";s:14:"show-if-active";a:2:{i:0;s:25:"woocommerce-subscriptions";i:1;s:20:"woocommerce-bookings";}s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:107:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-add-ons.svg";s:5:"title";s:15:"Product Add-Ons";s:4:"copy";s:93:"Offer add-ons like gift wrapping, special messages or other special options for your products";s:11:"button-text";s:10:"Learn More";s:3:"url";s:49:"https://woocommerce.com/products/product-add-ons/";}i:4;a:9:{s:4:"slug";s:46:"product-edit-woocommerce-subscriptions-gifting";s:7:"product";s:33:"woocommerce-subscriptions-gifting";s:14:"show-if-active";a:1:{i:0;s:25:"woocommerce-subscriptions";}s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:117:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/gifting-for-subscriptions.svg";s:5:"title";s:25:"Gifting for Subscriptions";s:4:"copy";s:70:"Let customers buy subscriptions for others - they''re the ultimate gift";s:11:"button-text";s:10:"Learn More";s:3:"url";s:67:"https://woocommerce.com/products/woocommerce-subscriptions-gifting/";}i:5;a:9:{s:4:"slug";s:42:"product-edit-teams-woocommerce-memberships";s:7:"product";s:33:"woocommerce-memberships-for-teams";s:14:"show-if-active";a:1:{i:0;s:23:"woocommerce-memberships";}s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:113:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/teams-for-memberships.svg";s:5:"title";s:21:"Teams for Memberships";s:4:"copy";s:123:"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts";s:11:"button-text";s:10:"Learn More";s:3:"url";s:63:"https://woocommerce.com/products/teams-woocommerce-memberships/";}i:6;a:8:{s:4:"slug";s:29:"product-edit-variation-images";s:7:"product";s:39:"woocommerce-additional-variation-images";s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:119:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/additional-variation-images.svg";s:5:"title";s:27:"Additional Variation Images";s:4:"copy";s:72:"Showcase your products in the best light with a image for each variation";s:11:"button-text";s:10:"Learn More";s:3:"url";s:73:"https://woocommerce.com/products/woocommerce-additional-variation-images/";}i:7;a:9:{s:4:"slug";s:47:"product-edit-woocommerce-subscription-downloads";s:7:"product";s:34:"woocommerce-subscription-downloads";s:14:"show-if-active";a:1:{i:0;s:25:"woocommerce-subscriptions";}s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:114:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscription-downloads.svg";s:5:"title";s:22:"Subscription Downloads";s:4:"copy";s:57:"Give customers special downloads with their subscriptions";s:11:"button-text";s:10:"Learn More";s:3:"url";s:68:"https://woocommerce.com/products/woocommerce-subscription-downloads/";}i:8;a:8:{s:4:"slug";s:31:"product-edit-min-max-quantities";s:7:"product";s:30:"woocommerce-min-max-quantities";s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:110:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/min-max-quantities.svg";s:5:"title";s:18:"Min/Max Quantities";s:4:"copy";s:81:"Specify minimum and maximum allowed product quantities for orders to be completed";s:11:"button-text";s:10:"Learn More";s:3:"url";s:52:"https://woocommerce.com/products/min-max-quantities/";}i:9;a:8:{s:4:"slug";s:28:"product-edit-name-your-price";s:7:"product";s:27:"woocommerce-name-your-price";s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:107:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/name-your-price.svg";s:5:"title";s:15:"Name Your Price";s:4:"copy";s:70:"Let customers pay what they want - useful for donations, tips and more";s:11:"button-text";s:10:"Learn More";s:3:"url";s:49:"https://woocommerce.com/products/name-your-price/";}i:10;a:8:{s:4:"slug";s:42:"product-edit-woocommerce-one-page-checkout";s:7:"product";s:29:"woocommerce-one-page-checkout";s:7:"context";a:1:{i:0;s:26:"product-edit-meta-tab-body";}s:4:"icon";s:109:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/one-page-checkout.svg";s:5:"title";s:17:"One Page Checkout";s:4:"copy";s:92:"Don''t make customers click around - let them choose products, checkout & pay all on one page";s:11:"button-text";s:10:"Learn More";s:3:"url";s:63:"https://woocommerce.com/products/woocommerce-one-page-checkout/";}i:11;a:4:{s:4:"slug";s:19:"orders-empty-header";s:7:"context";s:24:"orders-list-empty-header";s:5:"title";s:20:"Tools for your store";s:13:"allow-dismiss";b:0;}i:12;a:6:{s:4:"slug";s:30:"orders-empty-footer-browse-all";s:7:"context";s:24:"orders-list-empty-footer";s:9:"link-text";s:21:"Browse all extensions";s:3:"url";s:64:"https://woocommerce.com/product-category/woocommerce-extensions/";s:8:"promoted";s:31:"category-woocommerce-extensions";s:13:"allow-dismiss";b:0;}i:13;a:8:{s:4:"slug";s:19:"orders-empty-zapier";s:7:"context";s:22:"orders-list-empty-body";s:7:"product";s:18:"woocommerce-zapier";s:4:"icon";s:98:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/zapier.svg";s:5:"title";s:6:"Zapier";s:4:"copy";s:88:"Save time and increase productivity by connecting your store to more than 1000+ services";s:11:"button-text";s:10:"Learn More";s:3:"url";s:52:"https://woocommerce.com/products/woocommerce-zapier/";}i:14;a:8:{s:4:"slug";s:30:"orders-empty-shipment-tracking";s:7:"context";s:22:"orders-list-empty-body";s:7:"product";s:29:"woocommerce-shipment-tracking";s:4:"icon";s:109:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipment-tracking.svg";s:5:"title";s:17:"Shipment Tracking";s:4:"copy";s:86:"Let customers know when their orders will arrive by adding shipment tracking to emails";s:11:"button-text";s:10:"Learn More";s:3:"url";s:51:"https://woocommerce.com/products/shipment-tracking/";}i:15;a:8:{s:4:"slug";s:32:"orders-empty-table-rate-shipping";s:7:"context";s:22:"orders-list-empty-body";s:7:"product";s:31:"woocommerce-table-rate-shipping";s:4:"icon";s:111:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/table-rate-shipping.svg";s:5:"title";s:19:"Table Rate Shipping";s:4:"copy";s:122:"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count";s:11:"button-text";s:10:"Learn More";s:3:"url";s:53:"https://woocommerce.com/products/table-rate-shipping/";}i:16;a:8:{s:4:"slug";s:40:"orders-empty-shipping-carrier-extensions";s:7:"context";s:22:"orders-list-empty-body";s:4:"icon";s:119:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipping-carrier-extensions.svg";s:5:"title";s:27:"Shipping Carrier Extensions";s:4:"copy";s:116:"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again";s:11:"button-text";s:13:"Find Carriers";s:8:"promoted";s:26:"category-shipping-carriers";s:3:"url";s:99:"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/";}i:17;a:8:{s:4:"slug";s:32:"orders-empty-google-product-feed";s:7:"context";s:22:"orders-list-empty-body";s:7:"product";s:25:"woocommerce-product-feeds";s:4:"icon";s:111:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/google-product-feed.svg";s:5:"title";s:19:"Google Product Feed";s:4:"copy";s:76:"Increase sales by letting customers find you when they''re shopping on Google";s:11:"button-text";s:10:"Learn More";s:3:"url";s:53:"https://woocommerce.com/products/google-product-feed/";}i:18;a:8:{s:4:"slug";s:27:"orders-empty-stripe-payment";s:7:"context";s:22:"orders-list-empty-body";s:7:"product";s:26:"woocommerce-gateway-stripe";s:4:"icon";s:106:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/stripe-payment.svg";s:5:"title";s:6:"Stripe";s:4:"copy";s:132:"The complete payments platform engineered for growth. Millions around the globe use Stripe to start, run and scale their businesses.";s:11:"button-text";s:10:"Learn More";s:3:"url";s:40:"https://woocommerce.com/products/stripe/";}i:19;a:4:{s:4:"slug";s:35:"products-empty-header-product-types";s:7:"context";s:26:"products-list-empty-header";s:5:"title";s:23:"Other types of products";s:13:"allow-dismiss";b:0;}i:20;a:6:{s:4:"slug";s:32:"products-empty-footer-browse-all";s:7:"context";s:26:"products-list-empty-footer";s:9:"link-text";s:21:"Browse all extensions";s:3:"url";s:64:"https://woocommerce.com/product-category/woocommerce-extensions/";s:8:"promoted";s:31:"category-woocommerce-extensions";s:13:"allow-dismiss";b:0;}i:21;a:8:{s:4:"slug";s:30:"products-empty-product-vendors";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:27:"woocommerce-product-vendors";s:4:"icon";s:107:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-vendors.svg";s:5:"title";s:15:"Product Vendors";s:4:"copy";s:47:"Turn your store into a multi-vendor marketplace";s:11:"button-text";s:10:"Learn More";s:3:"url";s:49:"https://woocommerce.com/products/product-vendors/";}i:22;a:8:{s:4:"slug";s:26:"products-empty-memberships";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:23:"woocommerce-memberships";s:4:"icon";s:103:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/memberships.svg";s:5:"title";s:11:"Memberships";s:4:"copy";s:76:"Give members access to restricted content or products, for a fee or for free";s:11:"button-text";s:10:"Learn More";s:3:"url";s:57:"https://woocommerce.com/products/woocommerce-memberships/";}i:23;a:9:{s:4:"slug";s:35:"products-empty-woocommerce-deposits";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:20:"woocommerce-deposits";s:14:"show-if-active";a:1:{i:0;s:20:"woocommerce-bookings";}s:4:"icon";s:100:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/deposits.svg";s:5:"title";s:8:"Deposits";s:4:"copy";s:75:"Make it easier for customers to pay by offering a deposit or a payment plan";s:11:"button-text";s:10:"Learn More";s:3:"url";s:54:"https://woocommerce.com/products/woocommerce-deposits/";}i:24;a:8:{s:4:"slug";s:40:"products-empty-woocommerce-subscriptions";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:25:"woocommerce-subscriptions";s:4:"icon";s:105:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscriptions.svg";s:5:"title";s:13:"Subscriptions";s:4:"copy";s:97:"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis";s:11:"button-text";s:10:"Learn More";s:3:"url";s:59:"https://woocommerce.com/products/woocommerce-subscriptions/";}i:25;a:8:{s:4:"slug";s:35:"products-empty-woocommerce-bookings";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:20:"woocommerce-bookings";s:4:"icon";s:100:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/bookings.svg";s:5:"title";s:8:"Bookings";s:4:"copy";s:99:"Allow customers to book appointments, make reservations or rent equipment without leaving your site";s:11:"button-text";s:10:"Learn More";s:3:"url";s:54:"https://woocommerce.com/products/woocommerce-bookings/";}i:26;a:8:{s:4:"slug";s:30:"products-empty-product-bundles";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:27:"woocommerce-product-bundles";s:4:"icon";s:107:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-bundles.svg";s:5:"title";s:15:"Product Bundles";s:4:"copy";s:49:"Offer customizable bundles and assembled products";s:11:"button-text";s:10:"Learn More";s:3:"url";s:49:"https://woocommerce.com/products/product-bundles/";}i:27;a:8:{s:4:"slug";s:29:"products-empty-stripe-payment";s:7:"context";s:24:"products-list-empty-body";s:7:"product";s:26:"woocommerce-gateway-stripe";s:4:"icon";s:106:"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/stripe-payment.svg";s:5:"title";s:6:"Stripe";s:4:"copy";s:132:"The complete payments platform engineered for growth. Millions around the globe use Stripe to start, run and scale their businesses.";s:11:"button-text";s:10:"Learn More";s:3:"url";s:40:"https://woocommerce.com/products/stripe/";}}s:7:"updated";i:1583482661;}', 'no'),
(1208, 'revslider-dashboard', 'a:0:{}', 'yes'),
(1209, '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:81:"//updates.themepunch-ext-b.tools/revslider/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:77:"//updates.themepunch-ext-b.tools/revslider/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:73:"//updates.themepunch-ext-b.tools/revslider/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:76:"//updates.themepunch-ext-b.tools/revslider/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:76:"//updates.themepunch-ext-b.tools/revslider/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:77:"//updates.themepunch-ext-b.tools/revslider/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:80:"//updates.themepunch-ext-b.tools/revslider/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:84:"//updates.themepunch-ext-b.tools/revslider/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:71:"//updates.themepunch-ext-b.tools/revslider/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:76:"//updates.themepunch-ext-b.tools/revslider/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:75:"//updates.themepunch-ext-b.tools/revslider/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:70:"//updates.themepunch-ext-b.tools/revslider/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:77:"//updates.themepunch-ext-b.tools/revslider/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:76:"//updates.themepunch-ext-b.tools/revslider/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:72:"//updates.themepunch-ext-b.tools/revslider/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:77:"//updates.themepunch-ext-b.tools/revslider/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:73:"//updates.themepunch-ext-b.tools/revslider/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:78:"//updates.themepunch-ext-b.tools/revslider/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:74:"//updates.themepunch-ext-b.tools/revslider/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:75:"//updates.themepunch-ext-b.tools/revslider/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:74:"//updates.themepunch-ext-b.tools/revslider/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:73:"//updates.themepunch-ext-b.tools/revslider/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:73:"//updates.themepunch-ext-b.tools/revslider/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:78:"//updates.themepunch-ext-b.tools/revslider/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:77:"//updates.themepunch-ext-b.tools/revslider/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:76:"//updates.themepunch-ext-b.tools/revslider/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:77:"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"PB";}}}', 'yes');
INSERT INTO `wpfp_options` VALUES
(350, 'WPLANG', '', 'yes'),
(63376, 'revslider-valid-notice', 'false', 'yes'),
(359, '_transient_shipping-transient-version', '1543814732', 'yes'),
(362, 'woocommerce_maybe_regenerate_images_hash', '991b1ca641921cf0f5baf7a2fe85861b', 'yes'),
(719, 'rs_cache_overlay', '5.4.8', 'yes'),
(723, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(888, 'woocommerce_product_type', 'both', 'yes'),
(889, 'woocommerce_sell_in_person', '1', 'yes'),
(890, 'woocommerce_allow_tracking', 'yes', 'yes'),
(894, 'woocommerce_cheque_settings', 'a:1:{s:7:"enabled";s:2:"no";}', 'yes'),
(895, 'woocommerce_bacs_settings', 'a:1:{s:7:"enabled";s:2:"no";}', 'yes'),
(896, 'woocommerce_cod_settings', 'a:1:{s:7:"enabled";s:3:"yes";}', 'yes'),
(898, 'mailchimp_woocommerce_plugin_do_activation_redirect', '', 'yes'),
(966, 'mc4wp', 'a:4:{s:7:"api_key";s:37:"99527892c2dbed980fb48bb590a37a82-us19";s:20:"allow_usage_tracking";i:0;s:15:"debug_log_level";s:7:"warning";s:18:"first_activated_on";i:1543827799;}', 'yes'),
(910, 'mailchimp_woocommerce_db_mailchimp_carts', '1', 'no'),
(913, 'woocommerce_setup_jetpack_opted_in', '1', 'yes'),
(922, 'jetpack_available_modules', 'a:1:{s:5:"7.7.3";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'),
(923, 'jetpack_options', 'a:7:{s:7:"version";s:14:"6.8:1543826021";s:11:"old_version";s:14:"6.8:1543826021";s:28:"fallback_no_verify_ssl_certs";i:0;s:9:"time_diff";i:-2;s:2:"id";i:154602348;s:6:"public";i:1;s:9:"jumpstart";s:14:"new_connection";}', 'yes'),
(926, 'jetpack_sync_settings_disable', '0', 'yes'),
(932, 'do_activate', '0', 'yes'),
(1027, 'akismet_spam_count', '118', 'yes'),
(38613, 'recovery_keys', 'a:0:{}', 'yes'),
(38645, '_transient_product-transient-version', '1583483653', 'yes'),
(55496, '_transient_list-tweets-tcsn-custom-twitter-feed-3', 'a:1:{i:0;O:8:"stdClass":25:{s:10:"created_at";s:30:"Fri Dec 28 18:17:10 +0000 2018";s:2:"id";i:1078716503674052608;s:6:"id_str";s:19:"1078716503674052608";s:4:"text";s:96:"Follow me on Instagram! Username: craftech_kenya\nhttps://t.co/r3Fovtt4Ph https://t.co/72HJgy8VaW";s:9:"truncated";b:0;s:8:"entities";O:8:"stdClass":5:{s:8:"hashtags";a:0:{}s:7:"symbols";a:0:{}s:13:"user_mentions";a:0:{}s:4:"urls";a:1:{i:0;O:8:"stdClass":4:{s:3:"url";s:23:"https://t.co/r3Fovtt4Ph";s:12:"expanded_url";s:50:"https://www.instagram.com/craftech_kenya?r=nametag";s:11:"display_url";s:31:"instagram.com/craftech_kenya…";s:7:"indices";a:2:{i:0;i:49;i:1;i:72;}}}s:5:"media";a:1:{i:0;O:8:"stdClass":11:{s:2:"id";i:1078716474326482944;s:6:"id_str";s:19:"1078716474326482944";s:7:"indices";a:2:{i:0;i:73;i:1;i:96;}s:9:"media_url";s:46:"http://pbs.twimg.com/media/Dvhe6wmXgAAGkqp.jpg";s:15:"media_url_https";s:47:"https://pbs.twimg.com/media/Dvhe6wmXgAAGkqp.jpg";s:3:"url";s:23:"https://t.co/72HJgy8VaW";s:11:"display_url";s:26:"pic.twitter.com/72HJgy8VaW";s:12:"expanded_url";s:69:"https://twitter.com/Craftech_Kenya/status/1078716503674052608/photo/1";s:4:"type";s:5:"photo";s:5:"sizes";O:8:"stdClass":4:{s:5:"thumb";O:8:"stdClass":3:{s:1:"w";i:150;s:1:"h";i:150;s:6:"resize";s:4:"crop";}s:6:"medium";O:8:"stdClass":3:{s:1:"w";i:821;s:1:"h";i:1200;s:6:"resize";s:3:"fit";}s:5:"large";O:8:"stdClass":3:{s:1:"w";i:1080;s:1:"h";i:1578;s:6:"resize";s:3:"fit";}s:5:"small";O:8:"stdClass":3:{s:1:"w";i:465;s:1:"h";i:680;s:6:"resize";s:3:"fit";}}s:8:"features";O:8:"stdClass":4:{s:6:"medium";O:8:"stdClass":1:{s:5:"faces";a:0:{}}s:5:"large";O:8:"stdClass":1:{s:5:"faces";a:0:{}}s:5:"small";O:8:"stdClass":1:{s:5:"faces";a:0:{}}s:4:"orig";O:8:"stdClass":1:{s:5:"faces";a:0:{}}}}}}s:17:"extended_entities";O:8:"stdClass":1:{s:5:"media";a:1:{i:0;O:8:"stdClass":11:{s:2:"id";i:1078716474326482944;s:6:"id_str";s:19:"1078716474326482944";s:7:"indices";a:2:{i:0;i:73;i:1;i:96;}s:9:"media_url";s:46:"http://pbs.twimg.com/media/Dvhe6wmXgAAGkqp.jpg";s:15:"media_url_https";s:47:"https://pbs.twimg.com/media/Dvhe6wmXgAAGkqp.jpg";s:3:"url";s:23:"https://t.co/72HJgy8VaW";s:11:"display_url";s:26:"pic.twitter.com/72HJgy8VaW";s:12:"expanded_url";s:69:"https://twitter.com/Craftech_Kenya/status/1078716503674052608/photo/1";s:4:"type";s:5:"photo";s:5:"sizes";O:8:"stdClass":4:{s:5:"thumb";O:8:"stdClass":3:{s:1:"w";i:150;s:1:"h";i:150;s:6:"resize";s:4:"crop";}s:6:"medium";O:8:"stdClass":3:{s:1:"w";i:821;s:1:"h";i:1200;s:6:"resize";s:3:"fit";}s:5:"large";O:8:"stdClass":3:{s:1:"w";i:1080;s:1:"h";i:1578;s:6:"resize";s:3:"fit";}s:5:"small";O:8:"stdClass":3:{s:1:"w";i:465;s:1:"h";i:680;s:6:"resize";s:3:"fit";}}s:8:"features";O:8:"stdClass":4:{s:6:"medium";O:8:"stdClass":1:{s:5:"faces";a:0:{}}s:5:"large";O:8:"stdClass":1:{s:5:"faces";a:0:{}}s:5:"small";O:8:"stdClass":1:{s:5:"faces";a:0:{}}s:4:"orig";O:8:"stdClass":1:{s:5:"faces";a:0:{}}}}}}s:6:"source";s:84:"<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>";s:21:"in_reply_to_status_id";N;s:25:"in_reply_to_status_id_str";N;s:19:"in_reply_to_user_id";N;s:23:"in_reply_to_user_id_str";N;s:23:"in_reply_to_screen_name";N;s:4:"user";O:8:"stdClass":44:{s:2:"id";i:741355152700002304;s:6:"id_str";s:18:"741355152700002304";s:4:"name";s:14:"Craftech_Kenya";s:11:"screen_name";s:14:"Craftech_Kenya";s:8:"location";s:13:"Nairobi,kenya";s:11:"description";s:36:"CRAFTING TOMORROWS TECHNOLOGY TODAY.";s:3:"url";s:23:"https://t.co/QWtfODfMmS";s:8:"entities";O:8:"stdClass":2:{s:3:"url";O:8:"stdClass":1:{s:4:"urls";a:1:{i:0;O:8:"stdClass":4:{s:3:"url";s:23:"https://t.co/QWtfODfMmS";s:12:"expanded_url";s:25:"http://www.craftech.co.ke";s:11:"display_url";s:14:"craftech.co.ke";s:7:"indices";a:2:{i:0;i:0;i:1;i:23;}}}}s:11:"description";O:8:"stdClass":1:{s:4:"urls";a:0:{}}}s:9:"protected";b:0;s:15:"followers_count";i:20;s:13:"friends_count";i:12;s:12:"listed_count";i:0;s:10:"created_at";s:30:"Fri Jun 10 19:43:36 +0000 2016";s:16:"favourites_count";i:0;s:10:"utc_offset";N;s:9:"time_zone";N;s:11:"geo_enabled";b:0;s:8:"verified";b:0;s:14:"statuses_count";i:10;s:4:"lang";N;s:20:"contributors_enabled";b:0;s:13:"is_translator";b:0;s:22:"is_translation_enabled";b:0;s:24:"profile_background_color";s:6:"F5F8FA";s:28:"profile_background_image_url";N;s:34:"profile_background_image_url_https";N;s:23:"profile_background_tile";b:0;s:17:"profile_image_url";s:74:"http://pbs.twimg.com/profile_images/742027234660261888/l9tRW8mr_normal.jpg";s:23:"profile_image_url_https";s:75:"https://pbs.twimg.com/profile_images/742027234660261888/l9tRW8mr_normal.jpg";s:18:"profile_banner_url";s:67:"https://pbs.twimg.com/profile_banners/741355152700002304/1465748203";s:18:"profile_link_color";s:6:"1DA1F2";s:28:"profile_sidebar_border_color";s:6:"C0DEED";s:26:"profile_sidebar_fill_color";s:6:"DDEEF6";s:18:"profile_text_color";s:6:"333333";s:28:"profile_use_background_image";b:1;s:20:"has_extended_profile";b:0;s:15:"default_profile";b:1;s:21:"default_profile_image";b:0;s:13:"can_media_tag";b:1;s:11:"followed_by";b:0;s:9:"following";b:0;s:19:"follow_request_sent";b:0;s:13:"notifications";b:0;s:15:"translator_type";s:4:"none";}s:3:"geo";N;s:11:"coordinates";N;s:5:"place";N;s:12:"contributors";N;s:15:"is_quote_status";b:0;s:13:"retweet_count";i:0;s:14:"favorite_count";i:0;s:9:"favorited";b:0;s:9:"retweeted";b:0;s:18:"possibly_sensitive";b:0;s:4:"lang";s:2:"en";}}', 'no'),
(63385, 'woocommerce_maxmind_geolocation_settings', 'a:1:{s:15:"database_prefix";s:32:"bQ2T1Gl4cXddGGG9AYsVcQIAFxOxYEab";}', 'yes'),
(63390, '_transient_wc_attribute_taxonomies', 'a:0:{}', 'yes'),
(63411, 'woocommerce_onboarding_opt_in', 'no', 'yes'),
(63413, 'woocommerce_admin_install_timestamp', '', 'yes'),
(63414, 'woocommerce_onboarding_profile', 'a:0:{}', 'yes'),
(63415, 'woocommerce_admin_last_orders_milestone', '1', 'yes'),
(75232, 'woocommerce_admin_version', '1.1.3', 'yes'),
(44050, '_transient_timeout__redux_activation_redirect', '1591171435', 'no'),
(44051, '_transient__redux_activation_redirect', '1', 'no'),
(76717, 'rs-templates', 'a:2:{s:6:"slider";a:442:{i:0;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:1;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:2;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:3;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:4;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:5;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:6;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:7;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:8;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:9;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:10;a:22:{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.1";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:11;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:12;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:13;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:14;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:15;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:16;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:17;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:18;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:19;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:20;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:21;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:22;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:23;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:24;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:25;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:26;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:27;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:28;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:29;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:30;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:31;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:32;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:33;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:34;a:22:{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.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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:35;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:36;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:37;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:38;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:39;a:22:{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.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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:40;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:41;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:42;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:43;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:44;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:45;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:46;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:47;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:48;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:49;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:50;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:51;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:52;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:53;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:54;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:55;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:56;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:57;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:58;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:59;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:60;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:61;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:62;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:63;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:64;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:65;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:66;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:67;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:68;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:69;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:70;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:71;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:72;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:73;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:74;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:75;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:76;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:77;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:78;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:79;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:80;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:81;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:82;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:83;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:84;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:85;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:86;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:87;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:88;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:89;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:90;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:91;a:25:{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.1";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:92;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:93;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:94;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:95;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:96;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:97;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"4";s:9:"installed";b:0;}i:98;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"4";s:9:"installed";b:0;}i:99;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"4";s:9:"installed";b:0;}i:100;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"4";s:9:"installed";b:0;}i:101;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"4";s:9:"installed";b:0;}i:102;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:103;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:104;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:105;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"4";s:9:"installed";b:0;}i:106;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"3";s:9:"installed";b:0;}i:107;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"2";s:9:"installed";b:0;}i:108;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"1";s:9:"installed";b:0;}i:109;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:110;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:111;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:112;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:113;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:114;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:115;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:116;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:117;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:118;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:119;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:120;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"5";s:9:"installed";b:0;}i:121;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:122;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:123;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:124;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:125;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:126;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:127;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:128;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:129;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:130;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:131;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:132;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:133;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:134;a:25:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"6";s:9:"installed";b:0;}i:135;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:136;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:137;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:138;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:139;a:22:{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.1";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:140;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:141;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:142;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:143;a:22:{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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:144;a:22:{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:59:"https://revolution.themepunch.com/filmstrip-add-on-slider/ ";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:145;a:22:{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";s:3:"868";s:11:"description";s:201:"<span class="ttm_content">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:146;a:22:{s:2:"id";s:3:"149";s:5:"title";s:13:"Website Intro";s:5:"alias";s:12:"websiteintro";s:3:"zip";s:16:"websiteintro.zip";s:3:"uid";s:32:"348df76d999456aa19be58c9df56ae20";s:3:"img";s:23:"websiteintro/slide1.jpg";s:7:"preview";s:65:"https://revolution.themepunch.com/website-intro-wordpress-slider/";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:274:"<span class="ttm_content">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</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:171:"[{"path":"revslider-slicey-addon\\/revslider-slicey-addon.php","name":"Background Slicey 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:147;a:22:{s:2:"id";s:3:"150";s:5:"title";s:13:"Mask Showcase";s:5:"alias";s:12:"maskshowcase";s:3:"zip";s:16:"maskshowcase.zip";s:3:"uid";s:32:"fc943c31e2da9c63b252aeabf554d128";s:3:"img";s:23:"maskshowcase/slide1.jpg";s:7:"preview";s:56:"https://revolution.themepunch.com/minimal-mask-showcase/";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:187:"<span class="ttm_content">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any 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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:148;a:22:{s:2:"id";s:3:"151";s:5:"title";s:20:"Parallax Zoom Slices";s:5:"alias";s:18:"parallaxzoomslices";s:3:"zip";s:22:"parallaxzoomslices.zip";s:3:"uid";s:32:"83537cae05709ddb9bcb7375470a5894";s:3:"img";s:29:"parallaxzoomslices/slide1.jpg";s:7:"preview";s:72:"https://revolution.themepunch.com/parallax-zoom-slices-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:249:"<span class="ttm_content">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</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:171:"[{"path":"revslider-slicey-addon\\/revslider-slicey-addon.php","name":"Background Slicey 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:149;a:22:{s:2:"id";s:3:"152";s:5:"title";s:22:"Double Exposure Effect";s:5:"alias";s:20:"doubleexposureeffect";s:3:"zip";s:24:"doubleexposureeffect.zip";s:3:"uid";s:32:"8d9229b5cbcf5bda5fbdc6a8e01a2b8c";s:3:"img";s:31:"doubleexposureeffect/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/wordpress-double-exposure-effect/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:150;a:22:{s:2:"id";s:3:"153";s:5:"title";s:24:"Mountain Parallax Header";s:5:"alias";s:22:"mountainparallaxheader";s:3:"zip";s:26:"mountainparallaxheader.zip";s:3:"uid";s:32:"8dc64663f317a2abdf179bbe341d016e";s:3:"img";s:33:"mountainparallaxheader/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/mountain-wordpress-parallax-header/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:192:"<span class="ttm_content">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you''re done!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:151;a:25:{s:2:"id";s:3:"154";s:5:"title";s:26:"GoodNews One-Pager Package";s:5:"alias";s:26:"goodnews-one-pager-package";s:3:"zip";s:0:"";s:3:"uid";s:26:"goodnews-one-pager-package";s:3:"img";s:44:"packages/templatepack_goodnews_one_pager.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:4:{i:0;s:8:"carousel";i:1;s:6:"slider";i:2;s:4:"hero";i:3;s:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:18:"GoodNews One-Pager";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:152;a:25:{s:2:"id";s:3:"155";s:5:"title";s:13:"GoodNews Menu";s:5:"alias";s:12:"goodnewsmenu";s:3:"zip";s:22:"packs/goodnewsmenu.zip";s:3:"uid";s:32:"4cbc82501ff340fcdc0acf7eb3ba2640";s:3:"img";s:23:"goodnewsmenu/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:153;a:25:{s:2:"id";s:3:"156";s:5:"title";s:15:"GoodNews Header";s:5:"alias";s:14:"goodnewsheader";s:3:"zip";s:24:"packs/goodnewsheader.zip";s:3:"uid";s:32:"c6660b6bdbf596f38466f569596f5259";s:3:"img";s:25:"goodnewsheader/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:154;a:25:{s:2:"id";s:3:"157";s:5:"title";s:18:"GoodNews Whats Hot";s:5:"alias";s:16:"goodnewswhatshot";s:3:"zip";s:26:"packs/goodnewswhatshot.zip";s:3:"uid";s:32:"cb841ce64a99a6644adab049cf5405cd";s:3:"img";s:27:"goodnewswhatshot/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:155;a:25:{s:2:"id";s:3:"158";s:5:"title";s:17:"GoodNews Featured";s:5:"alias";s:16:"goodnewsfeatured";s:3:"zip";s:26:"packs/goodnewsfeatured.zip";s:3:"uid";s:32:"00bde4b09e3700da7183999eaf137ccc";s:3:"img";s:27:"goodnewsfeatured/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:156;a:25:{s:2:"id";s:3:"159";s:5:"title";s:18:"GoodNews Spotlight";s:5:"alias";s:17:"goodnewsspotlight";s:3:"zip";s:27:"packs/goodnewsspotlight.zip";s:3:"uid";s:32:"138076241a828e1c5764379944755f2b";s:3:"img";s:28:"goodnewsspotlight/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:157;a:25:{s:2:"id";s:3:"160";s:5:"title";s:17:"GoodNews Carousel";s:5:"alias";s:16:"goodnewscarousel";s:3:"zip";s:26:"packs/goodnewscarousel.zip";s:3:"uid";s:32:"d29d4460a6015e30d08d2714232d3768";s:3:"img";s:27:"goodnewscarousel/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:8:"carousel";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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:158;a:25:{s:2:"id";s:3:"161";s:5:"title";s:16:"GoodNews Callout";s:5:"alias";s:15:"goodnewscallout";s:3:"zip";s:25:"packs/goodnewscallout.zip";s:3:"uid";s:32:"d9568b3193e96577fae630b3a6728785";s:3:"img";s:26:"goodnewscallout/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:159;a:25:{s:2:"id";s:3:"162";s:5:"title";s:15:"GoodNews Footer";s:5:"alias";s:14:"goodnewsfooter";s:3:"zip";s:24:"packs/goodnewsfooter.zip";s:3:"uid";s:32:"34f43f891cb8d55375149dc4bbc38298";s:3:"img";s:25:"goodnewsfooter/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:18:"GoodNews One-Pager";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"7";s:9:"installed";b:0;}i:160;a:25:{s:2:"id";s:3:"163";s:5:"title";s:29:"GoodNews Content Page Package";s:5:"alias";s:29:"goodnews-content-page-package";s:3:"zip";s:0:"";s:3:"uid";s:29:"goodnews-content-page-package";s:3:"img";s:55:"packages/templatepack_goodnews_content_page_package.jpg";s:7:"preview";s:78:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:3:{i:0;s:6:"slider";i:1;s:4:"hero";i:2;s:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:21:"GoodNews Content Page";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"8";s:9:"installed";b:0;}i:161;a:25:{s:2:"id";s:3:"164";s:5:"title";s:18:"GoodNews Menu Back";s:5:"alias";s:16:"goodnewsmenuback";s:3:"zip";s:26:"packs/goodnewsmenuback.zip";s:3:"uid";s:32:"1340d1aeefba497a7d404d12a1fceed4";s:3:"img";s:27:"goodnewsmenuback/slide1.jpg";s:7:"preview";s:78:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:"GoodNews Content Page";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"8";s:9:"installed";b:0;}i:162;a:25:{s:2:"id";s:3:"165";s:5:"title";s:20:"GoodNews Blog Header";s:5:"alias";s:18:"goodnewsblogheader";s:3:"zip";s:28:"packs/goodnewsblogheader.zip";s:3:"uid";s:32:"abc4d7c1e48475c6def05f1f6d8bf564";s:3:"img";s:29:"goodnewsblogheader/slide1.jpg";s:7:"preview";s:78:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:"GoodNews Content Page";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"8";s:9:"installed";b:0;}i:163;a:25:{s:2:"id";s:3:"166";s:5:"title";s:21:"GoodNews Blog Content";s:5:"alias";s:19:"goodnewsblogcontent";s:3:"zip";s:29:"packs/goodnewsblogcontent.zip";s:3:"uid";s:32:"bbf34563da6db2779c29599b503b07e9";s:3:"img";s:30:"goodnewsblogcontent/slide1.jpg";s:7:"preview";s:78:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:"GoodNews Content Page";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"8";s:9:"installed";b:0;}i:164;a:25:{s:2:"id";s:3:"167";s:5:"title";s:21:"GoodNews Testimonials";s:5:"alias";s:20:"goodnewstestimonials";s:3:"zip";s:30:"packs/goodnewstestimonials.zip";s:3:"uid";s:32:"606b7336e86f69c567542d3f43712b56";s:3:"img";s:31:"goodnewstestimonials/slide1.jpg";s:7:"preview";s:78:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:"GoodNews Content Page";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"8";s:9:"installed";b:0;}i:165;a:25:{s:2:"id";s:3:"168";s:5:"title";s:20:"GoodNews Blog Footer";s:5:"alias";s:18:"goodnewsblogfooter";s:3:"zip";s:28:"packs/goodnewsblogfooter.zip";s:3:"uid";s:32:"1fb88aecfb116fde67ce8d52bd3b5f05";s:3:"img";s:29:"goodnewsblogfooter/slide1.jpg";s:7:"preview";s:78:"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:268:"<span class="ttm_content">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:"GoodNews Content Page";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"8";s:9:"installed";b:0;}i:166;a:22:{s:2:"id";s:3:"169";s:5:"title";s:19:"Before After Slider";s:5:"alias";s:17:"beforeafterslider";s:3:"zip";s:21:"beforeafterslider.zip";s:3:"uid";s:32:"6e615091a1fc3037c24b985ce5136fb2";s:3:"img";s:28:"beforeafterslider/slide1.jpg";s:7:"preview";s:54:"https://revolution.themepunch.com/before-after-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.3.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:201:"<span class="ttm_content">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:320:"<span class="ttm_content">How to install <a href="https://www.themepunch.com/slider-revolution/install-addons/" target="_blank">Add-Ons</a>.</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-beforeafter-addon\\/revslider-beforeafter-addon.php","name":"Before After 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:167;a:22:{s:2:"id";s:3:"170";s:5:"title";s:16:"Product Showcase";s:5:"alias";s:15:"productshowcase";s:3:"zip";s:19:"productshowcase.zip";s:3:"uid";s:32:"a43447670260aaa7e8ff66cedfddb57a";s:3:"img";s:26:"productshowcase/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/wordpress-product-showcase-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:165:"<span class="ttm_content">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:168;a:22:{s:2:"id";s:3:"171";s:5:"title";s:23:"Overexposure Transition";s:5:"alias";s:22:"overexposuretransition";s:3:"zip";s:26:"overexposuretransition.zip";s:3:"uid";s:32:"13f16bbe6c6d646c7d0cb817a0d3d181";s:3:"img";s:33:"overexposuretransition/slide1.jpg";s:7:"preview";s:65:"https://revolution.themepunch.com/overexposure-transition-effect/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:155:"<span class="ttm_content">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:320:"<span class="ttm_content">How to install <a href="https://www.themepunch.com/slider-revolution/install-addons/" target="_blank">Add-Ons</a>.</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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:169;a:22:{s:2:"id";s:3:"172";s:5:"title";s:15:"Parallax Scroll";s:5:"alias";s:14:"parallaxscroll";s:3:"zip";s:18:"parallaxscroll.zip";s:3:"uid";s:32:"82546ee2f6af6c6682852f495109b3c3";s:3:"img";s:25:"parallaxscroll/slide1.jpg";s:7:"preview";s:50:"https://revolution.themepunch.com/parallax-scroll/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:148:"<span class="ttm_content">A strikingly colourful header for your website with super smooth parallax effects.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:170;a:25:{s:2:"id";s:3:"173";s:5:"title";s:24:"TechCo One-Pager Package";s:5:"alias";s:24:"techco-one-pager-package";s:3:"zip";s:0:"";s:3:"uid";s:24:"techco-one-pager-package";s:3:"img";s:28:"packages/techco_overview.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:3:{i:0;s:6:"slider";i:1;s:4:"hero";i:2;s:7:"website";}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:7:"package";s:16:"TechCo One-Pager";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:171;a:25:{s:2:"id";s:3:"174";s:5:"title";s:11:"TechCo Menu";s:5:"alias";s:11:"techco-menu";s:3:"zip";s:21:"packs/techco-menu.zip";s:3:"uid";s:32:"55e5efee828cdf1ff7e2d3b90a301ea9";s:3:"img";s:22:"techco-menu/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:172;a:25:{s:2:"id";s:3:"175";s:5:"title";s:13:"TechCo Header";s:5:"alias";s:13:"techco-header";s:3:"zip";s:23:"packs/techco-header.zip";s:3:"uid";s:32:"fb574d1376de9b1e408c91f51e6497d7";s:3:"img";s:24:"techco-header/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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";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:7:"package";s:16:"TechCo One-Pager";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:173;a:25:{s:2:"id";s:3:"176";s:5:"title";s:12:"TechCo About";s:5:"alias";s:12:"techco-about";s:3:"zip";s:22:"packs/techco-about.zip";s:3:"uid";s:32:"ba216da8231e55118d87e37d2358812c";s:3:"img";s:23:"techco-about/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:174;a:25:{s:2:"id";s:3:"177";s:5:"title";s:15:"TechCo Services";s:5:"alias";s:15:"techco-services";s:3:"zip";s:25:"packs/techco-services.zip";s:3:"uid";s:32:"ef4a8ddbb5e1136133f7bc1227248e22";s:3:"img";s:26:"techco-services/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:175;a:25:{s:2:"id";s:3:"178";s:5:"title";s:12:"TechCo Video";s:5:"alias";s:12:"techco-video";s:3:"zip";s:22:"packs/techco-video.zip";s:3:"uid";s:32:"d7bb92281d05f39f9bc9eca71f90e402";s:3:"img";s:23:"techco-video/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:176;a:25:{s:2:"id";s:3:"179";s:5:"title";s:13:"TechCo Prices";s:5:"alias";s:13:"techco-prices";s:3:"zip";s:23:"packs/techco-prices.zip";s:3:"uid";s:32:"6291f404efbea12bb181352aba71ef11";s:3:"img";s:24:"techco-prices/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:177;a:25:{s:2:"id";s:3:"180";s:5:"title";s:19:"TechCo Testimonials";s:5:"alias";s:19:"techco-testimonials";s:3:"zip";s:29:"packs/techco-testimonials.zip";s:3:"uid";s:32:"3460bd51f6b80599266fecb7fbb918be";s:3:"img";s:30:"techco-testimonials/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:178;a:25:{s:2:"id";s:3:"181";s:5:"title";s:13:"TechCo Footer";s:5:"alias";s:13:"techco-footer";s:3:"zip";s:23:"packs/techco-footer.zip";s:3:"uid";s:32:"640abcd549137520461a4a71ff758a3b";s:3:"img";s:24:"techco-footer/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</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:16:"TechCo One-Pager";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:1:"9";s:9:"installed";b:0;}i:179;a:22:{s:2:"id";s:3:"182";s:5:"title";s:12:"Live Weather";s:5:"alias";s:7:"weather";s:3:"zip";s:11:"weather.zip";s:3:"uid";s:32:"aab92e69374e4c7b8c6741fe02e574b9";s:3:"img";s:18:"weather/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/wordpress-live-weather-add-on/";s:7:"version";s:5:"1.0.3";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:173:"<span class="ttm_content">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</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:168:"[{"path":"revslider-weather-addon\\/revslider-weather-addon.php","name":"Live Weather 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:180;a:22:{s:2:"id";s:3:"183";s:5:"title";s:17:"360 Panorama Tour";s:5:"alias";s:11:"360panorama";s:3:"zip";s:15:"360panorama.zip";s:3:"uid";s:32:"332720fdacdbb38f65e8327a2a96c52d";s:3:"img";s:22:"360panorama/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:155:"<span class="ttm_content">An example template for our Panorama 360 tour add-on, created for the real estate market.</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:165:"[{"path":"revslider-panorama-addon\\/revslider-panorama-addon.php","name":"Panorama 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:181;a:22:{s:2:"id";s:3:"184";s:5:"title";s:14:"Duotone Add-on";s:5:"alias";s:14:"duotone-add-on";s:3:"zip";s:18:"duotone-add-on.zip";s:3:"uid";s:32:"a428c6f363b3146e96d20a6f44958922";s:3:"img";s:25:"duotone-add-on/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:168:"<span class="ttm_content">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone 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:350:"[{"path":"revslider-particles-addon\\/revslider-particles-addon.php","name":"Particles Effect AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"},{"path":"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php","name":"Duotone 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:182;a:22:{s:2:"id";s:3:"185";s:5:"title";s:13:"Reveal Add-on";s:5:"alias";s:13:"reveal-add-on";s:3:"zip";s:17:"reveal-add-on.zip";s:3:"uid";s:32:"7fa7525d8ff7fa7365cb98a437e88e32";s:3:"img";s:24:"reveal-add-on/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/wordpress-content-reveal-effect/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:204:"<span class="ttm_content">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</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:337:"[{"path":"revslider-particles-addon\\/revslider-particles-addon.php","name":"Particles Effect AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"},{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:201;a:22:{s:2:"id";s:3:"210";s:5:"title";s:21:"Cryptocurrency Prices";s:5:"alias";s:12:"cryptoslider";s:3:"zip";s:16:"cryptoslider.zip";s:3:"uid";s:32:"c4b02210387f11946223977e940d9e9e";s:3:"img";s:23:"cryptoslider/slide1.jpg";s:7:"preview";s:95:"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/";s:7:"version";s:5:"1.0.5";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:209:"<span class="ttm_content">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:410:"<span class="ttm_content">Please refer to the "Custom JavaScript" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:202;a:25:{s:2:"id";s:3:"211";s:5:"title";s:18:"Immersion One Page";s:5:"alias";s:26:"immersion-one-page-package";s:3:"zip";s:0:"";s:3:"uid";s:26:"immersion-one-page-package";s:3:"img";s:31:"packages/immersion_overview.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:3:{i:0;s:6:"slider";i:1;s:4:"hero";i:2;s:7:"website";}s:14:"plugin_require";s:343:"[{"path":"revslider-typewriter-addon\\/revslider-typewriter-addon.php","name":"Typewriter AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/"},{"path":"revslider-slicey-addon\\/revslider-slicey-addon.php","name":"Background Slicey Add-On","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:18:"Immersion One Page";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:203;a:25:{s:2:"id";s:3:"212";s:5:"title";s:16:"Immersion Header";s:5:"alias";s:16:"immersion_header";s:3:"zip";s:26:"packs/immersion_header.zip";s:3:"uid";s:32:"853da51256308b341ecd030bd4883229";s:3:"img";s:27:"immersion_header/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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";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:7:"package";s:18:"Immersion One Page";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:204;a:25:{s:2:"id";s:3:"213";s:5:"title";s:19:"Immersion Mountains";s:5:"alias";s:19:"immersion-mountains";s:3:"zip";s:29:"packs/immersion-mountains.zip";s:3:"uid";s:32:"817167eb3fe22b7e065ba210cbe6d53c";s:3:"img";s:30:"immersion-mountains/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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";s:171:"[{"path":"revslider-slicey-addon\\/revslider-slicey-addon.php","name":"Background Slicey Add-On","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:18:"Immersion One Page";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:205;a:25:{s:2:"id";s:3:"214";s:5:"title";s:17:"Immersion Product";s:5:"alias";s:17:"immersion-product";s:3:"zip";s:27:"packs/immersion-product.zip";s:3:"uid";s:32:"64134f263484d2bbcd7ef088ffbbfb4b";s:3:"img";s:28:"immersion-product/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:18:"Immersion One Page";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:206;a:25:{s:2:"id";s:3:"215";s:5:"title";s:16:"Immersion Design";s:5:"alias";s:16:"immersion-design";s:3:"zip";s:26:"packs/immersion-design.zip";s:3:"uid";s:32:"91e1d77c1a2826438763804f4d02bc26";s:3:"img";s:27:"immersion-design/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:18:"Immersion One Page";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:207;a:25:{s:2:"id";s:3:"216";s:5:"title";s:22:"Immersion Phototgraphy";s:5:"alias";s:21:"immersion-photography";s:3:"zip";s:31:"packs/immersion-photography.zip";s:3:"uid";s:32:"e3ddf0c577b09740f5cbf2e38ffd684d";s:3:"img";s:32:"immersion-photography/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:18:"Immersion One Page";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:208;a:25:{s:2:"id";s:3:"217";s:5:"title";s:14:"Immersion Grid";s:5:"alias";s:14:"immersion-grid";s:3:"zip";s:24:"packs/immersion-grid.zip";s:3:"uid";s:32:"b6903868189bb83b2c7a852fde3a7dc3";s:3:"img";s:25:"immersion-grid/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:18:"Immersion One Page";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:209;a:22:{s:2:"id";s:3:"218";s:5:"title";s:18:"Funky Intro Slider";s:5:"alias";s:11:"funkyslider";s:3:"zip";s:15:"funkyslider.zip";s:3:"uid";s:32:"2d4187e3fdad19b976be335253c8925d";s:3:"img";s:22:"funkyslider/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:200:"<span class="ttm_content">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</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:6:"slider";}s:14:"plugin_require";s:335:"[{"path":"revslider-typewriter-addon\\/revslider-typewriter-addon.php","name":"Typewriter AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/"},{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:210;a:25:{s:2:"id";s:3:"219";s:5:"title";s:19:"Clear View Magazine";s:5:"alias";s:27:"clear-view-magazine-package";s:3:"zip";s:0:"";s:3:"uid";s:27:"clear-view-magazine-package";s:3:"img";s:41:"packages/clear_view_magazine_overview.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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";s:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:19:"Clear View Magazine";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:211;a:25:{s:2:"id";s:3:"220";s:5:"title";s:15:"Clear View Menu";s:5:"alias";s:14:"clearview_menu";s:3:"zip";s:24:"packs/clearview_menu.zip";s:3:"uid";s:32:"eaecee5fa5f3c3a7f4d2a96c4616a353";s:3:"img";s:25:"clearview_menu/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.2";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:212;a:25:{s:2:"id";s:3:"221";s:5:"title";s:17:"Clear View Header";s:5:"alias";s:16:"clearview_header";s:3:"zip";s:26:"packs/clearview_header.zip";s:3:"uid";s:32:"25e3dd80ad130875d7438a07952cb0cd";s:3:"img";s:27:"clearview_header/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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";s:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:19:"Clear View Magazine";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:213;a:25:{s:2:"id";s:3:"222";s:5:"title";s:18:"Clear View Mission";s:5:"alias";s:17:"clearview_mission";s:3:"zip";s:27:"packs/clearview_mission.zip";s:3:"uid";s:32:"35b2092a49fd2beb549342e69097eb5b";s:3:"img";s:28:"clearview_mission/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:214;a:25:{s:2:"id";s:3:"223";s:5:"title";s:17:"Clear View Slider";s:5:"alias";s:17:"clear-view-slider";s:3:"zip";s:27:"packs/clear-view-slider.zip";s:3:"uid";s:32:"d2e17edffce16ed78c54b0ef23fd7e05";s:3:"img";s:28:"clear-view-slider/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:215;a:25:{s:2:"id";s:3:"224";s:5:"title";s:15:"Clear View News";s:5:"alias";s:15:"clear-view-news";s:3:"zip";s:25:"packs/clear-view-news.zip";s:3:"uid";s:32:"5698d3131ba141e9afcfd2906739dd00";s:3:"img";s:26:"clear-view-news/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:216;a:25:{s:2:"id";s:3:"225";s:5:"title";s:18:"Clear View Clients";s:5:"alias";s:18:"clear-view-clients";s:3:"zip";s:28:"packs/clear-view-clients.zip";s:3:"uid";s:32:"b95616a94832e22bdfac5ce60232be1b";s:3:"img";s:29:"clear-view-clients/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:217;a:25:{s:2:"id";s:3:"226";s:5:"title";s:18:"Clear View Contact";s:5:"alias";s:18:"clear-view-contact";s:3:"zip";s:28:"packs/clear-view-contact.zip";s:3:"uid";s:32:"0e0cc1d8f6f6500e5f8a2b091fa3b4cb";s:3:"img";s:29:"clear-view-contact/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:218;a:25:{s:2:"id";s:3:"227";s:5:"title";s:20:"Clear View Post Page";s:5:"alias";s:28:"clear-view-post-page-package";s:3:"zip";s:0:"";s:3:"uid";s:28:"clear-view-post-page-package";s:3:"img";s:42:"packages/clear_view_post_page_overview.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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";s:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:20:"Clear View Post Page";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"12";s:9:"installed";b:0;}i:219;a:25:{s:2:"id";s:3:"228";s:5:"title";s:22:"Clear View Single Menu";s:5:"alias";s:22:"clear-view-single-menu";s:3:"zip";s:32:"packs/clear-view-single-menu.zip";s:3:"uid";s:32:"1e80f81982f8a4ea763482d4fa99d321";s:3:"img";s:33:"clear-view-single-menu/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post Page";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"12";s:9:"installed";b:0;}i:220;a:25:{s:2:"id";s:3:"229";s:5:"title";s:24:"Clear View Single Header";s:5:"alias";s:24:"clear-view-single-header";s:3:"zip";s:34:"packs/clear-view-single-header.zip";s:3:"uid";s:32:"c8d717627be6cd5e70922ab609694dbf";s:3:"img";s:35:"clear-view-single-header/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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";s:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:20:"Clear View Post Page";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"12";s:9:"installed";b:0;}i:221;a:25:{s:2:"id";s:3:"230";s:5:"title";s:23:"Clear View Single Media";s:5:"alias";s:23:"clear-view-single-media";s:3:"zip";s:33:"packs/clear-view-single-media.zip";s:3:"uid";s:32:"c480368ded2a64f0cdd44f1674213814";s:3:"img";s:34:"clear-view-single-media/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post Page";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"12";s:9:"installed";b:0;}i:222;a:25:{s:2:"id";s:3:"231";s:5:"title";s:22:"Clear View Single More";s:5:"alias";s:22:"clear-view-single-more";s:3:"zip";s:32:"packs/clear-view-single-more.zip";s:3:"uid";s:32:"9c693190df26218366d1f77e10cf550a";s:3:"img";s:33:"clear-view-single-more/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post Page";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"12";s:9:"installed";b:0;}i:223;a:25:{s:2:"id";s:3:"232";s:5:"title";s:25:"Clear View Single Contact";s:5:"alias";s:25:"clear-view-single-contact";s:3:"zip";s:35:"packs/clear-view-single-contact.zip";s:3:"uid";s:32:"73c0a889f2b654a87b5aba1ff76fbc5c";s:3:"img";s:36:"clear-view-single-contact/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post Page";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"12";s:9:"installed";b:0;}i:224;a:22:{s:2:"id";s:3:"233";s:5:"title";s:18:"Clean Landing Page";s:5:"alias";s:16:"cleanlandingpage";s:3:"zip";s:20:"cleanlandingpage.zip";s:3:"uid";s:32:"727a3680d312f22c6a5998ebdb9afe52";s:3:"img";s:27:"cleanlandingpage/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/clean-landing-page-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:203:"<span class="ttm_content">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:225;a:22:{s:2:"id";s:3:"234";s:5:"title";s:9:"Clear Cut";s:5:"alias";s:8:"clearcut";s:3:"zip";s:12:"clearcut.zip";s:3:"uid";s:32:"07f43c00e9b4d3057a03cdb3385ad2b7";s:3:"img";s:19:"clearcut/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:240:"<span class="ttm_content">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:226;a:25:{s:2:"id";s:3:"235";s:5:"title";s:22:"Wonderstruck One-Pager";s:5:"alias";s:30:"wonderstruck-one-pager-package";s:3:"zip";s:0:"";s:3:"uid";s:30:"wonderstruck-one-pager-package";s:3:"img";s:44:"packages/wonderstruck-one-pager-overview.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck One-Pager";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"13";s:9:"installed";b:0;}i:227;a:25:{s:2:"id";s:3:"236";s:5:"title";s:17:"Wonderstruck Menu";s:5:"alias";s:17:"wonderstruck_menu";s:3:"zip";s:27:"packs/wonderstruck_menu.zip";s:3:"uid";s:32:"0a976e9aaae59c4f795b38f59f5a08d8";s:3:"img";s:28:"wonderstruck_menu/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck One-Pager";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"13";s:9:"installed";b:0;}i:228;a:25:{s:2:"id";s:3:"237";s:5:"title";s:19:"Wonderstruck Header";s:5:"alias";s:19:"wonderstruck_header";s:3:"zip";s:29:"packs/wonderstruck_header.zip";s:3:"uid";s:32:"e1379f77a902960a0ce12d44d85a9e0a";s:3:"img";s:30:"wonderstruck_header/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck One-Pager";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"13";s:9:"installed";b:0;}i:229;a:25:{s:2:"id";s:3:"238";s:5:"title";s:18:"Wonderstruck About";s:5:"alias";s:18:"wonderstruck_about";s:3:"zip";s:28:"packs/wonderstruck_about.zip";s:3:"uid";s:32:"d207fb140fd328acc3038300ea52082a";s:3:"img";s:29:"wonderstruck_about/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck One-Pager";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"13";s:9:"installed";b:0;}i:230;a:25:{s:2:"id";s:3:"239";s:5:"title";s:18:"Wonderstruck Works";s:5:"alias";s:18:"wonderstruck-works";s:3:"zip";s:28:"packs/wonderstruck-works.zip";s:3:"uid";s:32:"4476935097e27d92454b0011b7700c1d";s:3:"img";s:29:"wonderstruck-works/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck One-Pager";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"13";s:9:"installed";b:0;}i:231;a:25:{s:2:"id";s:3:"240";s:5:"title";s:20:"Wonderstruck Contact";s:5:"alias";s:20:"wonderstruck-contact";s:3:"zip";s:30:"packs/wonderstruck-contact.zip";s:3:"uid";s:32:"9e4911521f77bce2b8efa40f4c2adc22";s:3:"img";s:31:"wonderstruck-contact/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck One-Pager";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"13";s:9:"installed";b:0;}i:232;a:22:{s:2:"id";s:3:"241";s:5:"title";s:12:"Bubble Morph";s:5:"alias";s:11:"bubblemorph";s:3:"zip";s:15:"bubblemorph.zip";s:3:"uid";s:32:"1102d6f5460ab82cb612cbe9f1d9514b";s:3:"img";s:22:"bubblemorph/slide1.jpg";s:7:"preview";s:75:"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:188:"<span class="ttm_content">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</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:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:233;a:22:{s:2:"id";s:3:"242";s:5:"title";s:16:"Distortion AddOn";s:5:"alias";s:15:"distortionaddon";s:3:"zip";s:19:"distortionaddon.zip";s:3:"uid";s:32:"0ad46c9929bb2fa6316f1e6ced301aaf";s:3:"img";s:26:"distortionaddon/slide1.jpg";s:7:"preview";s:73:"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</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:182:"[{"path":"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php","name":"Distortion 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:234;a:22:{s:2:"id";s:3:"243";s:5:"title";s:10:"Club Flyer";s:5:"alias";s:9:"clubflyer";s:3:"zip";s:13:"clubflyer.zip";s:3:"uid";s:32:"dab73b9904d0e643a35b0475980998bd";s:3:"img";s:20:"clubflyer/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:227:"<span class="ttm_content">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </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:187:"[{"path":"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php","name":"Exploding Layers 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:235;a:22:{s:2:"id";s:3:"244";s:5:"title";s:16:"Paintbrush AddOn";s:5:"alias";s:15:"paintbrushaddon";s:3:"zip";s:19:"paintbrushaddon.zip";s:3:"uid";s:32:"c85c48a6742b4bf72a2590cc1b50f6a0";s:3:"img";s:26:"paintbrushaddon/slide1.jpg";s:7:"preview";s:73:"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:239:"<span class="ttm_content">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</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:171:"[{"path":"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php","name":"Paintbrush 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:236;a:25:{s:2:"id";s:3:"245";s:5:"title";s:18:"Parallax One-Pager";s:5:"alias";s:26:"parallax-one-pager-package";s:3:"zip";s:0:"";s:3:"uid";s:26:"parallax-one-pager-package";s:3:"img";s:39:"packages/parallax-one-pager-package.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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";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:7:"package";s:18:"Parallax One-Pager";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"14";s:9:"installed";b:0;}i:237;a:25:{s:2:"id";s:3:"246";s:5:"title";s:15:"Parallax Header";s:5:"alias";s:15:"parallax_header";s:3:"zip";s:25:"packs/parallax_header.zip";s:3:"uid";s:32:"32bf4a0f5136853bd6bd366275a7a60b";s:3:"img";s:26:"parallax_header/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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:18:"Parallax One-Pager";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"14";s:9:"installed";b:0;}i:238;a:25:{s:2:"id";s:3:"247";s:5:"title";s:16:"Parallax Content";s:5:"alias";s:16:"parallax_content";s:3:"zip";s:26:"packs/parallax_content.zip";s:3:"uid";s:32:"a25c5fb8f74757476ab4dc038e56f90d";s:3:"img";s:27:"parallax_content/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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:18:"Parallax One-Pager";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"14";s:9:"installed";b:0;}i:239;a:25:{s:2:"id";s:3:"248";s:5:"title";s:15:"Parallax Footer";s:5:"alias";s:15:"parallax_footer";s:3:"zip";s:25:"packs/parallax_footer.zip";s:3:"uid";s:32:"665dff9ea6eaf162a2a1f160f51a9ddb";s:3:"img";s:26:"parallax_footer/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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";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:7:"package";s:18:"Parallax One-Pager";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"14";s:9:"installed";b:0;}i:240;a:25:{s:2:"id";s:3:"249";s:5:"title";s:18:"Le Chef Restaurant";s:5:"alias";s:18:"le-chef-restaurant";s:3:"zip";s:0:"";s:3:"uid";s:26:"le-chef-restaurant-package";s:3:"img";s:39:"packages/le-chef-restaurant-package.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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";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:7:"package";s:18:"Le Chef Restaurant";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:241;a:25:{s:2:"id";s:3:"250";s:5:"title";s:12:"Le Chef Menu";s:5:"alias";s:12:"le-chef-menu";s:3:"zip";s:22:"packs/le-chef-menu.zip";s:3:"uid";s:32:"2f2a6a333431fefe4a7b3b6a982b2ff5";s:3:"img";s:23:"le-chef-menu/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:18:"Le Chef Restaurant";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:242;a:25:{s:2:"id";s:3:"251";s:5:"title";s:14:"Le Chef Header";s:5:"alias";s:14:"le-chef-header";s:3:"zip";s:24:"packs/le-chef-header.zip";s:3:"uid";s:32:"06450ca3be5a4a8959f3752ab974e574";s:3:"img";s:25:"le-chef-header/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:18:"Le Chef Restaurant";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:243;a:25:{s:2:"id";s:3:"252";s:5:"title";s:18:"Le Chef Philosophy";s:5:"alias";s:18:"le-chef-philosophy";s:3:"zip";s:28:"packs/le-chef-philosophy.zip";s:3:"uid";s:32:"a532fd029addeb18106e751409b8e20a";s:3:"img";s:29:"le-chef-philosophy/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:18:"Le Chef Restaurant";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:244;a:25:{s:2:"id";s:3:"253";s:5:"title";s:12:"Le Chef Food";s:5:"alias";s:12:"le-chef-food";s:3:"zip";s:22:"packs/le-chef-food.zip";s:3:"uid";s:32:"cd4b6a2cb5de2dd20a0e8ba0c35451df";s:3:"img";s:23:"le-chef-food/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:18:"Le Chef Restaurant";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:245;a:25:{s:2:"id";s:3:"254";s:5:"title";s:16:"Le Chef La Carte";s:5:"alias";s:16:"le-chef-la-carte";s:3:"zip";s:26:"packs/le-chef-la-carte.zip";s:3:"uid";s:32:"6f312749679c3ba52c41189a6b8bf729";s:3:"img";s:27:"le-chef-la-carte/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:18:"Le Chef Restaurant";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:246;a:25:{s:2:"id";s:3:"255";s:5:"title";s:14:"Le Chef Footer";s:5:"alias";s:14:"le-chef-footer";s:3:"zip";s:24:"packs/le-chef-footer.zip";s:3:"uid";s:32:"12fc241e8e5b9e5df9758c43448e2907";s:3:"img";s:25:"le-chef-footer/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:18:"Le Chef Restaurant";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:247;a:22:{s:2:"id";s:3:"256";s:5:"title";s:20:"News Magazine Slider";s:5:"alias";s:20:"news-magazine-slider";s:3:"zip";s:24:"news-magazine-slider.zip";s:3:"uid";s:32:"31f2c1506babb1fef459401f051d2d52";s:3:"img";s:31:"news-magazine-slider/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:205:"<span class="ttm_content">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news 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:6:"slider";}s:14:"plugin_require";s:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:248;a:22:{s:2:"id";s:3:"257";s:5:"title";s:18:"Real Estate Slider";s:5:"alias";s:18:"real-estate-slider";s:3:"zip";s:22:"real-estate-slider.zip";s:3:"uid";s:32:"739ce6336e46815094387c9448e6c804";s:3:"img";s:29:"real-estate-slider/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/real-estate-slider-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:204:"<span class="ttm_content">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:249;a:22:{s:2:"id";s:3:"258";s:5:"title";s:14:"Fashion Header";s:5:"alias";s:14:"fashion-header";s:3:"zip";s:18:"fashion-header.zip";s:3:"uid";s:32:"24ece4e7f4d31cd90377c62abbd9e25a";s:3:"img";s:25:"fashion-header/slide1.jpg";s:7:"preview";s:75:"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:254:"<span class="ttm_content">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique "Bubble Morph" effect makes this module stand out!</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:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:250;a:22:{s:2:"id";s:3:"259";s:5:"title";s:14:"Seasonal Offer";s:5:"alias";s:13:"seasonaloffer";s:3:"zip";s:17:"seasonaloffer.zip";s:3:"uid";s:32:"caf2f17f8fd64f2f89dcb3c8dd238457";s:3:"img";s:24:"seasonaloffer/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:204:"<span class="ttm_content">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to 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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:251;a:25:{s:2:"id";s:3:"260";s:5:"title";s:11:"Barber Shop";s:5:"alias";s:11:"barber-shop";s:3:"zip";s:0:"";s:3:"uid";s:19:"barber-shop-package";s:3:"img";s:32:"packages/barber-shop-package.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:252;a:25:{s:2:"id";s:3:"261";s:5:"title";s:18:"Barber Shop Header";s:5:"alias";s:18:"barber-shop-header";s:3:"zip";s:28:"packs/barber-shop-header.zip";s:3:"uid";s:32:"71c995d36d39a0e8a04cffdf753f2ba2";s:3:"img";s:29:"barber-shop-header/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:253;a:25:{s:2:"id";s:3:"262";s:5:"title";s:23:"Barber Shop Mobile Menu";s:5:"alias";s:23:"barber-shop-mobile-menu";s:3:"zip";s:33:"packs/barber-shop-mobile-menu.zip";s:3:"uid";s:32:"762c6fb5c6306f37becb1e55773c2592";s:3:"img";s:34:"barber-shop-mobile-menu/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:254;a:25:{s:2:"id";s:3:"263";s:5:"title";s:24:"Barber Shop First Screen";s:5:"alias";s:24:"barber-shop-first-screen";s:3:"zip";s:34:"packs/barber-shop-first-screen.zip";s:3:"uid";s:32:"acf70bfd64cff2c3c2ea5585223575da";s:3:"img";s:35:"barber-shop-first-screen/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:255;a:25:{s:2:"id";s:3:"264";s:5:"title";s:17:"Barber Shop About";s:5:"alias";s:17:"barber-shop-about";s:3:"zip";s:27:"packs/barber-shop-about.zip";s:3:"uid";s:32:"bc8b63cfc7f8c34173b4fd5b082fc05a";s:3:"img";s:28:"barber-shop-about/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:256;a:25:{s:2:"id";s:3:"265";s:5:"title";s:20:"Barber Shop Services";s:5:"alias";s:20:"barber-shop-services";s:3:"zip";s:30:"packs/barber-shop-services.zip";s:3:"uid";s:32:"d65121d6f84fabd812a2b621b768e10e";s:3:"img";s:31:"barber-shop-services/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:257;a:25:{s:2:"id";s:3:"266";s:5:"title";s:19:"Barber Shop Barbers";s:5:"alias";s:19:"barber-shop-barbers";s:3:"zip";s:29:"packs/barber-shop-barbers.zip";s:3:"uid";s:32:"003e9fec9693072119c8f8d8b6690c4d";s:3:"img";s:30:"barber-shop-barbers/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:258;a:25:{s:2:"id";s:3:"267";s:5:"title";s:20:"Barber Shop Contacts";s:5:"alias";s:20:"barber-shop-contacts";s:3:"zip";s:30:"packs/barber-shop-contacts.zip";s:3:"uid";s:32:"cdcc08f5d6c90dbcfd0502bda2401643";s:3:"img";s:31:"barber-shop-contacts/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:259;a:25:{s:2:"id";s:3:"268";s:5:"title";s:18:"Barber Shop Footer";s:5:"alias";s:18:"barber-shop-footer";s:3:"zip";s:28:"packs/barber-shop-footer.zip";s:3:"uid";s:32:"26ca5ae0de7cdbb2ca19348b6e01eda0";s:3:"img";s:29:"barber-shop-footer/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:260;a:22:{s:2:"id";s:3:"269";s:5:"title";s:12:"Fitness Club";s:5:"alias";s:21:"fitness-club-template";s:3:"zip";s:25:"fitness-club-template.zip";s:3:"uid";s:32:"14ea10d68d6aad1df62b3becf71df754";s:3:"img";s:32:"fitness-club-template/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/fitness-club-header-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:223:"<span class="ttm_content">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:261;a:22:{s:2:"id";s:3:"270";s:5:"title";s:13:"Soccer School";s:5:"alias";s:13:"soccer-school";s:3:"zip";s:17:"soccer-school.zip";s:3:"uid";s:32:"9906b48812aff67097f990eeee42dd41";s:3:"img";s:24:"soccer-school/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:228:"<span class="ttm_content">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</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:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:262;a:22:{s:2:"id";s:3:"271";s:5:"title";s:10:"Music Band";s:5:"alias";s:19:"music-band-template";s:3:"zip";s:23:"music-band-template.zip";s:3:"uid";s:32:"91e79657bf1b1812f8114a00ab8e0eb4";s:3:"img";s:30:"music-band-template/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/music-band-template-for-wordpress/";s:7:"version";s:5:"1.0.1";s:8:"required";s:7:"5.4.8.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</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:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:263;a:22:{s:2:"id";s:3:"272";s:5:"title";s:15:"Restaurant Menu";s:5:"alias";s:15:"restaurant-menu";s:3:"zip";s:19:"restaurant-menu.zip";s:3:"uid";s:32:"078809cffb21b6c4d3f5aaa2daeb193d";s:3:"img";s:26:"restaurant-menu/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:208:"<span class="ttm_content">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:264;a:22:{s:2:"id";s:3:"273";s:5:"title";s:16:"Cinematic Slider";s:5:"alias";s:16:"cinematic-slider";s:3:"zip";s:20:"cinematic-slider.zip";s:3:"uid";s:32:"c53e7dcbb6b656ae7b4c91d333589838";s:3:"img";s:27:"cinematic-slider/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/cinematic-slider-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:138:"<span class="ttm_content">Bold texts and a cinematic transition effect make this slider stand out!</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:265;a:22:{s:2:"id";s:3:"274";s:5:"title";s:17:"3D Parallax Cubes";s:5:"alias";s:17:"3d-parallax-cubes";s:3:"zip";s:21:"3d-parallax-cubes.zip";s:3:"uid";s:32:"c5b809a1829f8f809c9a768cd3d6b3cb";s:3:"img";s:28:"3d-parallax-cubes/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:149:"<span class="ttm_content">This amazing 3D cubes parallax effect can be an eye-opening 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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:266;a:25:{s:2:"id";s:3:"275";s:5:"title";s:33:"Medicare Medical Services Website";s:5:"alias";s:33:"medicare-medical-services-website";s:3:"zip";s:0:"";s:3:"uid";s:41:"medicare-medical-services-website-package";s:3:"img";s:29:"packages/medicare_package.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:267;a:25:{s:2:"id";s:3:"276";s:5:"title";s:13:"Medicare Menu";s:5:"alias";s:13:"medicare-menu";s:3:"zip";s:23:"packs/medicare-menu.zip";s:3:"uid";s:32:"0e4ca8fc281e20251b3fffa19d470fed";s:3:"img";s:24:"medicare-menu/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:268;a:25:{s:2:"id";s:3:"277";s:5:"title";s:15:"Medicare Header";s:5:"alias";s:15:"medicare-header";s:3:"zip";s:25:"packs/medicare-header.zip";s:3:"uid";s:32:"03e8ade247d8c96f548bc0515f34043f";s:3:"img";s:26:"medicare-header/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:269;a:25:{s:2:"id";s:3:"278";s:5:"title";s:14:"Medicare About";s:5:"alias";s:14:"medicare-about";s:3:"zip";s:24:"packs/medicare-about.zip";s:3:"uid";s:32:"a3ab9e89155ef2542820343f30b29f72";s:3:"img";s:25:"medicare-about/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:270;a:25:{s:2:"id";s:3:"279";s:5:"title";s:18:"Medicare Highlight";s:5:"alias";s:18:"medicare-highlight";s:3:"zip";s:28:"packs/medicare-highlight.zip";s:3:"uid";s:32:"c3c8a74e5402489f1a85a0c83890ef1f";s:3:"img";s:29:"medicare-highlight/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:271;a:25:{s:2:"id";s:3:"280";s:5:"title";s:17:"Medicare Services";s:5:"alias";s:17:"medicare-services";s:3:"zip";s:27:"packs/medicare-services.zip";s:3:"uid";s:32:"8869b0834d4649dcc3221bed65980806";s:3:"img";s:28:"medicare-services/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:272;a:25:{s:2:"id";s:3:"281";s:5:"title";s:16:"Medicare Doctors";s:5:"alias";s:16:"medicare-doctors";s:3:"zip";s:26:"packs/medicare-doctors.zip";s:3:"uid";s:32:"2c9d57afd64244b5f7e30b0d87c842f9";s:3:"img";s:27:"medicare-doctors/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:273;a:25:{s:2:"id";s:3:"282";s:5:"title";s:17:"Medicare Research";s:5:"alias";s:17:"medicare-research";s:3:"zip";s:27:"packs/medicare-research.zip";s:3:"uid";s:32:"31e84a91fc8b8d5296e715e539a076d0";s:3:"img";s:28:"medicare-research/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:274;a:25:{s:2:"id";s:3:"283";s:5:"title";s:19:"Medicare Why Choose";s:5:"alias";s:18:"medicare-whychoose";s:3:"zip";s:28:"packs/medicare-whychoose.zip";s:3:"uid";s:32:"6dad61c672127de9e35884caa45d49a0";s:3:"img";s:29:"medicare-whychoose/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:275;a:25:{s:2:"id";s:3:"284";s:5:"title";s:16:"Medicare Contact";s:5:"alias";s:16:"medicare-contact";s:3:"zip";s:26:"packs/medicare-contact.zip";s:3:"uid";s:32:"89bc35ad8beb62a149c42262ae49a270";s:3:"img";s:27:"medicare-contact/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:276;a:25:{s:2:"id";s:3:"285";s:5:"title";s:15:"Medicare Footer";s:5:"alias";s:15:"medicare-footer";s:3:"zip";s:25:"packs/medicare-footer.zip";s:3:"uid";s:32:"ccf63e5233b3d63009e5ee90db51b37b";s:3:"img";s:26:"medicare-footer/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/medicare-medical-services-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:163:"<span class="ttm_content">The Medicare Medical Services template is a great solution for your medical practice or hospital.</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:25:"Medicare Medical Services";s:13:"package_order";s:2:"10";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"17";s:9:"installed";b:0;}i:277;a:25:{s:2:"id";s:3:"286";s:5:"title";s:20:"Coffee Joint Website";s:5:"alias";s:20:"coffee-joint-website";s:3:"zip";s:0:"";s:3:"uid";s:28:"coffee-joint-website-package";s:3:"img";s:27:"packages/coffee_package.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:278;a:25:{s:2:"id";s:3:"287";s:5:"title";s:11:"Coffee Menu";s:5:"alias";s:11:"coffee-menu";s:3:"zip";s:21:"packs/coffee-menu.zip";s:3:"uid";s:32:"81195cad7be3f5180a267b34ce8cf966";s:3:"img";s:22:"coffee-menu/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:279;a:25:{s:2:"id";s:3:"288";s:5:"title";s:13:"Coffee Header";s:5:"alias";s:13:"coffee-header";s:3:"zip";s:23:"packs/coffee-header.zip";s:3:"uid";s:32:"5eed8adb9d3ae12168ad4735ac63eb20";s:3:"img";s:24:"coffee-header/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:280;a:25:{s:2:"id";s:3:"289";s:5:"title";s:17:"Coffee Philosophy";s:5:"alias";s:17:"coffee-philosophy";s:3:"zip";s:27:"packs/coffee-philosophy.zip";s:3:"uid";s:32:"76b5ccae3fa87fd0f991b87e7ae71c27";s:3:"img";s:28:"coffee-philosophy/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:281;a:25:{s:2:"id";s:3:"290";s:5:"title";s:12:"Coffee Carte";s:5:"alias";s:12:"coffee-carte";s:3:"zip";s:22:"packs/coffee-carte.zip";s:3:"uid";s:32:"470214ddd2cec585629fb79a0fd908d6";s:3:"img";s:23:"coffee-carte/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:282;a:25:{s:2:"id";s:3:"291";s:5:"title";s:13:"Coffee Teaser";s:5:"alias";s:13:"coffee-teaser";s:3:"zip";s:23:"packs/coffee-teaser.zip";s:3:"uid";s:32:"2ed868896c92a7bfb6431803c79e8486";s:3:"img";s:24:"coffee-teaser/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:283;a:25:{s:2:"id";s:3:"292";s:5:"title";s:14:"Coffee Find Us";s:5:"alias";s:13:"coffee-findus";s:3:"zip";s:23:"packs/coffee-findus.zip";s:3:"uid";s:32:"96d3784473dfa64bce9e1e4101919927";s:3:"img";s:24:"coffee-findus/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:284;a:25:{s:2:"id";s:3:"293";s:5:"title";s:13:"Coffee Footer";s:5:"alias";s:13:"coffee-footer";s:3:"zip";s:23:"packs/coffee-footer.zip";s:3:"uid";s:32:"6027c25e87a5fe7fd8727a51c0967915";s:3:"img";s:24:"coffee-footer/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:144:"<span class="ttm_content">The Coffee Joint website template is a great solution for your cafe or bistro.</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:12:"Coffee Joint";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"18";s:9:"installed";b:0;}i:285;a:25:{s:2:"id";s:3:"294";s:5:"title";s:17:"Minimal Portfolio";s:5:"alias";s:25:"minimal-portfolio-website";s:3:"zip";s:0:"";s:3:"uid";s:25:"minimal-portfolio-package";s:3:"img";s:38:"packages/minimal_portfolio_package.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/minimal-portfolio-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:157:"<span class="ttm_content">The Minimal Portfolio template is a slide based website with additional modal detail pages.</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:17:"Minimal Portfolio";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"19";s:9:"installed";b:0;}i:286;a:25:{s:2:"id";s:3:"295";s:5:"title";s:17:"Minimal Portfolio";s:5:"alias";s:17:"minimal-portfolio";s:3:"zip";s:27:"packs/minimal-portfolio.zip";s:3:"uid";s:32:"183b97b301d5ff0b171c067a87c8a3f5";s:3:"img";s:28:"minimal-portfolio/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/minimal-portfolio-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:157:"<span class="ttm_content">The Minimal Portfolio template is a slide based website with additional modal detail pages.</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:17:"Minimal Portfolio";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"19";s:9:"installed";b:0;}i:287;a:25:{s:2:"id";s:3:"296";s:5:"title";s:23:"Minimal Portfolio Modal";s:5:"alias";s:23:"minimal-portfolio-modal";s:3:"zip";s:33:"packs/minimal-portfolio-modal.zip";s:3:"uid";s:32:"6874e6cec3663670f209a8d8a4f26b16";s:3:"img";s:34:"minimal-portfolio-modal/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/minimal-portfolio-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:157:"<span class="ttm_content">The Minimal Portfolio template is a slide based website with additional modal detail pages.</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:17:"Minimal Portfolio";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"19";s:9:"installed";b:0;}i:288;a:25:{s:2:"id";s:3:"297";s:5:"title";s:23:"Angled Business Website";s:5:"alias";s:23:"angled-business-website";s:3:"zip";s:0:"";s:3:"uid";s:31:"angled-business-website-package";s:3:"img";s:27:"packages/angled_package.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:15:"Angled Business";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:289;a:25:{s:2:"id";s:3:"298";s:5:"title";s:11:"Angled Menu";s:5:"alias";s:11:"angled-menu";s:3:"zip";s:21:"packs/angled-menu.zip";s:3:"uid";s:32:"2fe0c4682d1231ee3918be9e4fcb1837";s:3:"img";s:22:"angled-menu/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:290;a:25:{s:2:"id";s:3:"299";s:5:"title";s:13:"Angled Header";s:5:"alias";s:13:"angled-header";s:3:"zip";s:23:"packs/angled-header.zip";s:3:"uid";s:32:"09462601d4edca8dff899de6f666dc47";s:3:"img";s:24:"angled-header/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:291;a:25:{s:2:"id";s:3:"300";s:5:"title";s:11:"Angled News";s:5:"alias";s:11:"angled-news";s:3:"zip";s:21:"packs/angled-news.zip";s:3:"uid";s:32:"b315105763ed91214cb2f0ac12615729";s:3:"img";s:22:"angled-news/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:292;a:25:{s:2:"id";s:3:"301";s:5:"title";s:15:"Angled Services";s:5:"alias";s:15:"angled-services";s:3:"zip";s:25:"packs/angled-services.zip";s:3:"uid";s:32:"7605651c1487e1a6c32edc70017be8ad";s:3:"img";s:26:"angled-services/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:293;a:25:{s:2:"id";s:3:"302";s:5:"title";s:14:"Angled Success";s:5:"alias";s:14:"angled-success";s:3:"zip";s:24:"packs/angled-success.zip";s:3:"uid";s:32:"9e3fa974a42ecf80e1ec6ff991fca430";s:3:"img";s:25:"angled-success/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:294;a:25:{s:2:"id";s:3:"303";s:5:"title";s:13:"Angled Footer";s:5:"alias";s:13:"angled-footer";s:3:"zip";s:23:"packs/angled-footer.zip";s:3:"uid";s:32:"aed4eaa2f7883351ba9c9947feef153e";s:3:"img";s:24:"angled-footer/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:295;a:25:{s:2:"id";s:3:"304";s:5:"title";s:20:"Angled Content Modal";s:5:"alias";s:20:"angled-content-modal";s:3:"zip";s:30:"packs/angled-content-modal.zip";s:3:"uid";s:32:"4ddc74515fdf84f974217e4ed47a7c66";s:3:"img";s:31:"angled-content-modal/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/angled-business-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</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:"Angled Business";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"20";s:9:"installed";b:0;}i:296;a:22:{s:2:"id";s:3:"312";s:5:"title";s:24:"Retouch Before and After";s:5:"alias";s:7:"Retouch";s:3:"zip";s:11:"Retouch.zip";s:3:"uid";s:32:"58894991f1abd8b448c8d353b1b5fe76";s:3:"img";s:18:"Retouch/slide1.jpg";s:7:"preview";s:61:"http://revolution.themepunch.com/retouch-before-after-slider/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:155:"<span class="ttm_content">The Retouch Slider is the perfect way to compare your photos before and after retouching.</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:175:"[{"path":"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php","name":"Before After 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:297;a:22:{s:2:"id";s:3:"313";s:5:"title";s:11:"Tech Slider";s:5:"alias";s:11:"tech-slider";s:3:"zip";s:15:"tech-slider.zip";s:3:"uid";s:32:"a98e2b264f00a1116d21808c6a543162";s:3:"img";s:22:"tech-slider/slide1.jpg";s:7:"preview";s:63:"http://revolution.themepunch.com/tech-showcase-slider-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:153:"<span class="ttm_content">This classic slider module with sleek device mockups features a smooth parallax effect.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:298;a:25:{s:2:"id";s:3:"314";s:5:"title";s:19:"Peak Agency Website";s:5:"alias";s:19:"peak-agency-website";s:3:"zip";s:0:"";s:3:"uid";s:27:"peak-agency-website-package";s:3:"img";s:25:"packages/peak_package.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/peak-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:129:"<span class="ttm_content">The Peak Agency Website template is a minimal, light one-pager.</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:11:"Peak Agency";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"22";s:9:"installed";b:0;}i:299;a:25:{s:2:"id";s:3:"315";s:5:"title";s:11:"Peak Header";s:5:"alias";s:11:"peak-header";s:3:"zip";s:21:"packs/peak-header.zip";s:3:"uid";s:32:"b721bd612e9fbc5182418ad3fd7d0808";s:3:"img";s:22:"peak-header/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/peak-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:129:"<span class="ttm_content">The Peak Agency Website template is a minimal, light one-pager.</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:11:"Peak Agency";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"22";s:9:"installed";b:0;}i:300;a:25:{s:2:"id";s:3:"316";s:5:"title";s:10:"Peak About";s:5:"alias";s:10:"peak-about";s:3:"zip";s:20:"packs/peak-about.zip";s:3:"uid";s:32:"7e68b1012fb03490d45c7f79e8cb1b19";s:3:"img";s:21:"peak-about/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/peak-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:129:"<span class="ttm_content">The Peak Agency Website template is a minimal, light one-pager.</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:11:"Peak Agency";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"22";s:9:"installed";b:0;}i:301;a:25:{s:2:"id";s:3:"317";s:5:"title";s:14:"Peak Portfolio";s:5:"alias";s:14:"peak-portfolio";s:3:"zip";s:24:"packs/peak-portfolio.zip";s:3:"uid";s:32:"6198d1885ba9e95221c33e404f21bdbc";s:3:"img";s:25:"peak-portfolio/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/peak-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:129:"<span class="ttm_content">The Peak Agency Website template is a minimal, light one-pager.</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:11:"Peak Agency";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"22";s:9:"installed";b:0;}i:302;a:25:{s:2:"id";s:3:"318";s:5:"title";s:11:"Peak Footer";s:5:"alias";s:11:"peak-footer";s:3:"zip";s:21:"packs/peak-footer.zip";s:3:"uid";s:32:"2dead6897ad3b3a709b380d81242f76b";s:3:"img";s:22:"peak-footer/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/peak-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:129:"<span class="ttm_content">The Peak Agency Website template is a minimal, light one-pager.</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:11:"Peak Agency";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"22";s:9:"installed";b:0;}i:303;a:25:{s:2:"id";s:3:"319";s:5:"title";s:24:"Modern Portfolio Website";s:5:"alias";s:24:"modern-portfolio-website";s:3:"zip";s:0:"";s:3:"uid";s:32:"modern-portfolio-website-package";s:3:"img";s:30:"packages/portfolio-package.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/modern-portfolio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:145:"<span class="ttm_content">A modern portfolio template with fancy scroll animations and a colorful design.</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:16:"Modern Portfolio";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"23";s:9:"installed";b:0;}i:304;a:25:{s:2:"id";s:3:"320";s:5:"title";s:17:"Portfolio Welcome";s:5:"alias";s:17:"portfolio-welcome";s:3:"zip";s:27:"packs/portfolio-welcome.zip";s:3:"uid";s:32:"97336b8785e4a7b27facaf1547e0464d";s:3:"img";s:28:"portfolio-welcome/slide1.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/modern-portfolio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:145:"<span class="ttm_content">A modern portfolio template with fancy scroll animations and a colorful design.</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:16:"Modern Portfolio";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"23";s:9:"installed";b:0;}i:305;a:25:{s:2:"id";s:3:"321";s:5:"title";s:15:"Portfolio About";s:5:"alias";s:15:"portfolio-about";s:3:"zip";s:25:"packs/portfolio-about.zip";s:3:"uid";s:32:"5d3a4724fd453de5313ceb6696c1db62";s:3:"img";s:26:"portfolio-about/slide1.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/modern-portfolio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:145:"<span class="ttm_content">A modern portfolio template with fancy scroll animations and a colorful design.</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:16:"Modern Portfolio";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"23";s:9:"installed";b:0;}i:306;a:25:{s:2:"id";s:3:"322";s:5:"title";s:21:"Portfolio Works Title";s:5:"alias";s:21:"portfolio-works-title";s:3:"zip";s:31:"packs/portfolio-works-title.zip";s:3:"uid";s:32:"cbb5c6e875cc1f25b463fdf89cabef28";s:3:"img";s:32:"portfolio-works-title/slide1.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/modern-portfolio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:145:"<span class="ttm_content">A modern portfolio template with fancy scroll animations and a colorful design.</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:16:"Modern Portfolio";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"23";s:9:"installed";b:0;}i:307;a:25:{s:2:"id";s:3:"323";s:5:"title";s:23:"Portfolio Works Content";s:5:"alias";s:23:"portfolio-works-content";s:3:"zip";s:33:"packs/portfolio-works-content.zip";s:3:"uid";s:32:"5c87311128c7794ffa6ee07ea0648082";s:3:"img";s:34:"portfolio-works-content/slide1.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/modern-portfolio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:145:"<span class="ttm_content">A modern portfolio template with fancy scroll animations and a colorful design.</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:16:"Modern Portfolio";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"23";s:9:"installed";b:0;}i:308;a:25:{s:2:"id";s:3:"324";s:5:"title";s:18:"Portfolio Contacts";s:5:"alias";s:18:"portfolio-contacts";s:3:"zip";s:28:"packs/portfolio-contacts.zip";s:3:"uid";s:32:"bd81feffad83b69218f7e837478038e5";s:3:"img";s:29:"portfolio-contacts/slide1.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/modern-portfolio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:145:"<span class="ttm_content">A modern portfolio template with fancy scroll animations and a colorful design.</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:16:"Modern Portfolio";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"23";s:9:"installed";b:0;}i:309;a:25:{s:2:"id";s:3:"325";s:5:"title";s:18:"App Studio Website";s:5:"alias";s:18:"app-studio-website";s:3:"zip";s:0:"";s:3:"uid";s:26:"app-studio-website-package";s:3:"img";s:31:"packages/App_Studio_package.jpg";s:7:"preview";s:53:"https://revolution.themepunch.com/app-studio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:149:"<span class="ttm_content">A modern one-page presentation website to present your mobile app development team.</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:10:"App Studio";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"24";s:9:"installed";b:0;}i:310;a:25:{s:2:"id";s:3:"326";s:5:"title";s:18:"App Studio Welcome";s:5:"alias";s:18:"App-Studio-Welcome";s:3:"zip";s:28:"packs/App-Studio-Welcome.zip";s:3:"uid";s:32:"2ce0f3c54214b04e6c3a9becfd59730c";s:3:"img";s:29:"App-Studio-Welcome/slide1.jpg";s:7:"preview";s:53:"https://revolution.themepunch.com/app-studio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:149:"<span class="ttm_content">A modern one-page presentation website to present your mobile app development team.</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:10:"App Studio";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"24";s:9:"installed";b:0;}i:311;a:25:{s:2:"id";s:3:"327";s:5:"title";s:19:"App Studio Services";s:5:"alias";s:19:"App-Studio-Services";s:3:"zip";s:29:"packs/App-Studio-Services.zip";s:3:"uid";s:32:"5df7776271ec69d2f9edaa6b842715a9";s:3:"img";s:30:"App-Studio-Services/slide1.jpg";s:7:"preview";s:53:"https://revolution.themepunch.com/app-studio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:149:"<span class="ttm_content">A modern one-page presentation website to present your mobile app development team.</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:10:"App Studio";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"24";s:9:"installed";b:0;}i:312;a:25:{s:2:"id";s:3:"328";s:5:"title";s:16:"App Studio About";s:5:"alias";s:16:"App-Studio-About";s:3:"zip";s:26:"packs/App-Studio-About.zip";s:3:"uid";s:32:"af8b84dc116c629df7bd89fc69271a2e";s:3:"img";s:27:"App-Studio-About/slide1.jpg";s:7:"preview";s:53:"https://revolution.themepunch.com/app-studio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:149:"<span class="ttm_content">A modern one-page presentation website to present your mobile app development team.</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:10:"App Studio";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"24";s:9:"installed";b:0;}i:313;a:25:{s:2:"id";s:3:"329";s:5:"title";s:19:"App Studio Contacts";s:5:"alias";s:19:"App-Studio-Contacts";s:3:"zip";s:29:"packs/App-Studio-Contacts.zip";s:3:"uid";s:32:"afbbd2214c983d314f3215a00db9198d";s:3:"img";s:30:"App-Studio-Contacts/slide1.jpg";s:7:"preview";s:53:"https://revolution.themepunch.com/app-studio-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:149:"<span class="ttm_content">A modern one-page presentation website to present your mobile app development team.</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:10:"App Studio";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"24";s:9:"installed";b:0;}i:314;a:22:{s:2:"id";s:3:"330";s:5:"title";s:14:"Cube Animation";s:5:"alias";s:14:"cube-animation";s:3:"zip";s:18:"cube-animation.zip";s:3:"uid";s:32:"c03dd3cfc60479dfc6d79ddb64fa0ec5";s:3:"img";s:25:"cube-animation/slide1.jpg";s:7:"preview";s:65:"https://revolution.themepunch.com/cube-animation-slider-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:155:"<span class="ttm_content">A modern slider with text elements, cube animations and a striking call to action 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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:315;a:25:{s:2:"id";s:3:"331";s:5:"title";s:13:"Basic Website";s:5:"alias";s:13:"basic-website";s:3:"zip";s:0:"";s:3:"uid";s:21:"basic-website-package";s:3:"img";s:26:"packages/basic_package.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:"Basic Website";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:316;a:25:{s:2:"id";s:3:"332";s:5:"title";s:10:"Basic Menu";s:5:"alias";s:10:"basic-menu";s:3:"zip";s:20:"packs/basic-menu.zip";s:3:"uid";s:32:"39277f53b2cb5ac644a1649b47c37270";s:3:"img";s:21:"basic-menu/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:317;a:25:{s:2:"id";s:3:"333";s:5:"title";s:12:"Basic Header";s:5:"alias";s:12:"basic-header";s:3:"zip";s:22:"packs/basic-header.zip";s:3:"uid";s:32:"ad7a32dbccb0bdf9de64cf2adfa950a2";s:3:"img";s:23:"basic-header/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:318;a:25:{s:2:"id";s:3:"334";s:5:"title";s:13:"Basic Content";s:5:"alias";s:13:"basic-content";s:3:"zip";s:23:"packs/basic-content.zip";s:3:"uid";s:32:"0b12f3b183a3c8206e3a7b28d2d93108";s:3:"img";s:24:"basic-content/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:319;a:25:{s:2:"id";s:3:"335";s:5:"title";s:14:"Basic Carousel";s:5:"alias";s:14:"basic-carousel";s:3:"zip";s:24:"packs/basic-carousel.zip";s:3:"uid";s:32:"e4abb5c6d5cf914530575a982d3dfc14";s:3:"img";s:25:"basic-carousel/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:8:"carousel";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:13:"Basic Website";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:320;a:25:{s:2:"id";s:3:"336";s:5:"title";s:13:"Basic Callout";s:5:"alias";s:13:"basic-callout";s:3:"zip";s:23:"packs/basic-callout.zip";s:3:"uid";s:32:"2ccc208b9322f5435d0f4ff64c6d9dab";s:3:"img";s:24:"basic-callout/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:321;a:25:{s:2:"id";s:3:"337";s:5:"title";s:10:"Basic Grid";s:5:"alias";s:10:"basic-grid";s:3:"zip";s:20:"packs/basic-grid.zip";s:3:"uid";s:32:"3cb4b41d2992eba012921b8fb7c96daa";s:3:"img";s:21:"basic-grid/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:322;a:25:{s:2:"id";s:3:"338";s:5:"title";s:17:"Basic Video Block";s:5:"alias";s:17:"basic-video-block";s:3:"zip";s:27:"packs/basic-video-block.zip";s:3:"uid";s:32:"e7c1d42b21819741f3e72c1325dae5ed";s:3:"img";s:28:"basic-video-block/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:323;a:25:{s:2:"id";s:3:"339";s:5:"title";s:12:"Basic Footer";s:5:"alias";s:12:"basic-footer";s:3:"zip";s:22:"packs/basic-footer.zip";s:3:"uid";s:32:"ed8f6a554775ebace558af2f4f2dcbac";s:3:"img";s:23:"basic-footer/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:324;a:25:{s:2:"id";s:3:"340";s:5:"title";s:14:"Basic Lightbox";s:5:"alias";s:14:"basic-lightbox";s:3:"zip";s:24:"packs/basic-lightbox.zip";s:3:"uid";s:32:"e4b025b300b1a8f417d04eb80113fac2";s:3:"img";s:25:"basic-lightbox/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/basic-website/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</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:13:"Basic Website";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"25";s:9:"installed";b:0;}i:325;a:22:{s:2:"id";s:3:"341";s:5:"title";s:13:"Nature Slider";s:5:"alias";s:13:"nature-slider";s:3:"zip";s:17:"nature-slider.zip";s:3:"uid";s:32:"eef1a4584ec1c3b8c26c305cca44e805";s:3:"img";s:24:"nature-slider/slide1.jpg";s:7:"preview";s:56:"http://revolution.themepunch.com/nature-explorer-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:151:"<span class="ttm_content">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</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:356:"[{"path":"revslider-particles-addon\\/revslider-particles-addon.php","name":"Particles Effect AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"},{"path":"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php","name":"Distortion 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:326;a:22:{s:2:"id";s:3:"342";s:5:"title";s:11:"Art Gallery";s:5:"alias";s:11:"art-gallery";s:3:"zip";s:15:"art-gallery.zip";s:3:"uid";s:32:"b8c5095ae3407337e6e5b2a8515e7d6e";s:3:"img";s:22:"art-gallery/slide1.jpg";s:7:"preview";s:62:"https://revolution.themepunch.com/art-gallery-slider-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:145:"<span class="ttm_content">A modern slider with large, geometric elements and interesting mask animations.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:327;a:25:{s:2:"id";s:3:"343";s:5:"title";s:20:"Construction Company";s:5:"alias";s:28:"construction-company-website";s:3:"zip";s:0:"";s:3:"uid";s:36:"construction-company-website-package";s:3:"img";s:33:"packages/construction_package.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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";s:163:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:20:"Construction Company";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:328;a:25:{s:2:"id";s:3:"344";s:5:"title";s:19:"Construction Header";s:5:"alias";s:19:"Construction-Header";s:3:"zip";s:29:"packs/Construction-Header.zip";s:3:"uid";s:32:"5c77de774b8f5487c1276c4a7b3dc80c";s:3:"img";s:30:"Construction-Header/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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:20:"Construction Company";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:329;a:25:{s:2:"id";s:3:"345";s:5:"title";s:17:"Construction Home";s:5:"alias";s:17:"Construction-Home";s:3:"zip";s:27:"packs/Construction-Home.zip";s:3:"uid";s:32:"fcb277f0c07dad270d2a7cef4431bef8";s:3:"img";s:28:"Construction-Home/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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:20:"Construction Company";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:330;a:25:{s:2:"id";s:3:"346";s:5:"title";s:21:"Construction Projects";s:5:"alias";s:21:"Construction-Projects";s:3:"zip";s:31:"packs/Construction-Projects.zip";s:3:"uid";s:32:"0c847173c3739f79778dc2c0fc9704e4";s:3:"img";s:32:"Construction-Projects/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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:20:"Construction Company";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:331;a:25:{s:2:"id";s:3:"347";s:5:"title";s:20:"Construction History";s:5:"alias";s:20:"Construction-History";s:3:"zip";s:30:"packs/Construction-History.zip";s:3:"uid";s:32:"758da120c4b6c5606692faf0aa43aac6";s:3:"img";s:31:"Construction-History/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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:20:"Construction Company";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:332;a:25:{s:2:"id";s:3:"348";s:5:"title";s:21:"Construction Services";s:5:"alias";s:21:"Construction-Services";s:3:"zip";s:31:"packs/Construction-Services.zip";s:3:"uid";s:32:"5ad5b841c1d89e97ddbf972c8b11abd4";s:3:"img";s:32:"Construction-Services/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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:20:"Construction Company";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:333;a:25:{s:2:"id";s:3:"349";s:5:"title";s:21:"Construction Contacts";s:5:"alias";s:21:"Construction-Contacts";s:3:"zip";s:31:"packs/Construction-Contacts.zip";s:3:"uid";s:32:"b8c3c34046bb91ebb243e4da64745d37";s:3:"img";s:32:"Construction-Contacts/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/construction-company-website/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:244:"<span class="ttm_content">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</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:20:"Construction Company";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"26";s:9:"installed";b:0;}i:334;a:22:{s:2:"id";s:3:"350";s:5:"title";s:22:"Classic Cars Evolution";s:5:"alias";s:22:"Classic-Cars-Evolution";s:3:"zip";s:26:"Classic-Cars-Evolution.zip";s:3:"uid";s:32:"7061757f128fd624b0227715dab73b74";s:3:"img";s:33:"Classic-Cars-Evolution/slide1.jpg";s:7:"preview";s:65:"https://revolution.themepunch.com/classic-cars-before-after-hero/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:156:"<span class="ttm_content">The Classic Cars Evolution Slider is a great example of our popular before & after 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:175:"[{"path":"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php","name":"Before After 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:335;a:22:{s:2:"id";s:3:"351";s:5:"title";s:21:"404 Error Space Theme";s:5:"alias";s:21:"404-Error-Space-Theme";s:3:"zip";s:25:"404-Error-Space-Theme.zip";s:3:"uid";s:32:"6412adc7ec025826328e40e552a14e1e";s:3:"img";s:32:"404-Error-Space-Theme/slide1.jpg";s:7:"preview";s:49:"https://revolution.themepunch.com/404-error-page/";s:7:"version";s:5:"1.0.2";s:8:"required";s:5:"6.0.0";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:158:"<span class="ttm_content">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:336;a:25:{s:2:"id";s:3:"352";s:5:"title";s:12:"Landing Page";s:5:"alias";s:20:"landing-page-website";s:3:"zip";s:0:"";s:3:"uid";s:28:"landing-page-website-package";s:3:"img";s:23:"packages/lp_package.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:12:"Landing Page";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:337;a:25:{s:2:"id";s:3:"353";s:5:"title";s:17:"Landing Page Hero";s:5:"alias";s:17:"landing-page-hero";s:3:"zip";s:27:"packs/landing-page-hero.zip";s:3:"uid";s:32:"d328635caa20da7ee8a3ab687f8656ff";s:3:"img";s:28:"landing-page-hero/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:338;a:25:{s:2:"id";s:3:"354";s:5:"title";s:21:"Landing Page Features";s:5:"alias";s:21:"landing-page-features";s:3:"zip";s:31:"packs/landing-page-features.zip";s:3:"uid";s:32:"6552bc72abace10918a64866d9bb79c1";s:3:"img";s:32:"landing-page-features/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:339;a:25:{s:2:"id";s:3:"355";s:5:"title";s:20:"Landing Page Callout";s:5:"alias";s:20:"landing-page-callout";s:3:"zip";s:30:"packs/landing-page-callout.zip";s:3:"uid";s:32:"c5b101ea5471e7409ae7effa8d45fbcf";s:3:"img";s:31:"landing-page-callout/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:340;a:25:{s:2:"id";s:3:"356";s:5:"title";s:20:"Landing Page Content";s:5:"alias";s:20:"landing-page-content";s:3:"zip";s:30:"packs/landing-page-content.zip";s:3:"uid";s:32:"34da8057a6bb3677c9adf9f18ffc6cf0";s:3:"img";s:31:"landing-page-content/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:341;a:25:{s:2:"id";s:3:"357";s:5:"title";s:25:"Landing Page Testimonials";s:5:"alias";s:25:"landing-page-testimonials";s:3:"zip";s:35:"packs/landing-page-testimonials.zip";s:3:"uid";s:32:"a83606e311cd5115422d86f04890cbf1";s:3:"img";s:36:"landing-page-testimonials/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:342;a:25:{s:2:"id";s:3:"358";s:5:"title";s:27:"Landing Page Call to Action";s:5:"alias";s:27:"landing-page-call-to-action";s:3:"zip";s:37:"packs/landing-page-call-to-action.zip";s:3:"uid";s:32:"adfb456b27fa7eb6b1415d8f80836f05";s:3:"img";s:38:"landing-page-call-to-action/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:343;a:25:{s:2:"id";s:3:"359";s:5:"title";s:17:"Landing Page Help";s:5:"alias";s:17:"landing-page-help";s:3:"zip";s:27:"packs/landing-page-help.zip";s:3:"uid";s:32:"ca502431f9b7f6249d99b02464de2dd7";s:3:"img";s:28:"landing-page-help/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:344;a:25:{s:2:"id";s:3:"360";s:5:"title";s:19:"Landing Page Footer";s:5:"alias";s:19:"landing-page-footer";s:3:"zip";s:29:"packs/landing-page-footer.zip";s:3:"uid";s:32:"2a6afc371dbd60cb117f8a0f5d09eac9";s:3:"img";s:30:"landing-page-footer/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:345;a:25:{s:2:"id";s:3:"361";s:5:"title";s:24:"Landing Page Price Modal";s:5:"alias";s:24:"landing-page-price-modal";s:3:"zip";s:34:"packs/landing-page-price-modal.zip";s:3:"uid";s:32:"a6c5c0430b46dd4e6e68416964a8c54d";s:3:"img";s:35:"landing-page-price-modal/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/landing-page-builder/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.0.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:193:"<span class="ttm_content">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:624:"<span class="ttm_content">After installing this template package, please remove the "price modal" module shortcode from the automatically created page. Also, a small modification is needed in these templates: "Landing Page Hero", "Landing page Call to Action" and "Landing Page Footer". Click the buttons in these template and then go to "layer -> actions" and set the target of the "Open Slider Modal" action to the "Landing Page Price Modal".</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:12:"Landing Page";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"27";s:9:"installed";b:0;}i:346;a:25:{s:2:"id";s:3:"371";s:5:"title";s:17:"Corporate Website";s:5:"alias";s:17:"corporate-website";s:3:"zip";s:0:"";s:3:"uid";s:25:"corporate-website-package";s:3:"img";s:30:"packages/corporate-website.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:7:"website";}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:7:"package";s:17:"Corporate Website";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:347;a:25:{s:2:"id";s:3:"372";s:5:"title";s:16:"Corporate Header";s:5:"alias";s:16:"Corporate-Header";s:3:"zip";s:26:"packs/Corporate-Header.zip";s:3:"uid";s:32:"04f868e3812a1681f00ab89580e5d1f8";s:3:"img";s:27:"Corporate-Header/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:348;a:25:{s:2:"id";s:3:"373";s:5:"title";s:24:"Corporate Welcome Screen";s:5:"alias";s:24:"Corporate-Welcome-Screen";s:3:"zip";s:34:"packs/Corporate-Welcome-Screen.zip";s:3:"uid";s:32:"052afe98ef819f7ace041dbbdb749639";s:3:"img";s:35:"Corporate-Welcome-Screen/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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";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:7:"package";s:17:"Corporate Website";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:349;a:25:{s:2:"id";s:3:"374";s:5:"title";s:15:"Corporate About";s:5:"alias";s:15:"Corporate-About";s:3:"zip";s:25:"packs/Corporate-About.zip";s:3:"uid";s:32:"7bf5f8f6d4cc3016cea86289cb46e5b6";s:3:"img";s:26:"Corporate-About/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:350;a:25:{s:2:"id";s:3:"375";s:5:"title";s:19:"Corporate Portfolio";s:5:"alias";s:19:"Corporate-Portfolio";s:3:"zip";s:29:"packs/Corporate-Portfolio.zip";s:3:"uid";s:32:"612c2bd784fea81392dda1644a3c3cf3";s:3:"img";s:30:"Corporate-Portfolio/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:351;a:25:{s:2:"id";s:3:"376";s:5:"title";s:15:"Corporate Chart";s:5:"alias";s:15:"Corporate-Chart";s:3:"zip";s:25:"packs/Corporate-Chart.zip";s:3:"uid";s:32:"4d27d9b3b2cfcce750e526aafb322a9f";s:3:"img";s:26:"Corporate-Chart/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:352;a:25:{s:2:"id";s:3:"377";s:5:"title";s:14:"Corporate News";s:5:"alias";s:14:"Corporate-News";s:3:"zip";s:24:"packs/Corporate-News.zip";s:3:"uid";s:32:"bb65ed57a0d4db795d8b738f0a92f2d7";s:3:"img";s:25:"Corporate-News/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:353;a:25:{s:2:"id";s:3:"378";s:5:"title";s:16:"Corporate Hiring";s:5:"alias";s:16:"Corporate-Hiring";s:3:"zip";s:26:"packs/Corporate-Hiring.zip";s:3:"uid";s:32:"136cf1a91604e819089eb3573a6e100a";s:3:"img";s:27:"Corporate-Hiring/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:354;a:25:{s:2:"id";s:3:"379";s:5:"title";s:22:"Corporate Testimonials";s:5:"alias";s:22:"Corporate-Testimonials";s:3:"zip";s:32:"packs/Corporate-Testimonials.zip";s:3:"uid";s:32:"b17aec0afdc31e37359cfa406164463c";s:3:"img";s:33:"Corporate-Testimonials/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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: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:17:"Corporate Website";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:355;a:25:{s:2:"id";s:3:"380";s:5:"title";s:15:"Corporate Store";s:5:"alias";s:15:"Corporate-Store";s:3:"zip";s:25:"packs/Corporate-Store.zip";s:3:"uid";s:32:"6240b14620ddc634736716e0cdfdeb31";s:3:"img";s:26:"Corporate-Store/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:356;a:25:{s:2:"id";s:3:"381";s:5:"title";s:17:"Corporate Support";s:5:"alias";s:17:"Corporate-Support";s:3:"zip";s:27:"packs/Corporate-Support.zip";s:3:"uid";s:32:"9424292a78076ce68c2faf587b26cdad";s:3:"img";s:28:"Corporate-Support/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"10";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:357;a:25:{s:2:"id";s:3:"382";s:5:"title";s:14:"Corporate Team";s:5:"alias";s:14:"Corporate-Team";s:3:"zip";s:24:"packs/Corporate-Team.zip";s:3:"uid";s:32:"4fafe469b5a0a2545625c3f6d7ff3b9e";s:3:"img";s:25:"Corporate-Team/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"11";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:358;a:25:{s:2:"id";s:3:"383";s:5:"title";s:33:"Corporate Selected Projects Title";s:5:"alias";s:33:"Corporate-Selected-Projects-Title";s:3:"zip";s:43:"packs/Corporate-Selected-Projects-Title.zip";s:3:"uid";s:32:"0ed3c41f51e6bf404c2fe179fa8d8ceb";s:3:"img";s:44:"Corporate-Selected-Projects-Title/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"12";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:359;a:25:{s:2:"id";s:3:"384";s:5:"title";s:27:"Corporate Selected Projects";s:5:"alias";s:27:"Corporate-Selected-Projects";s:3:"zip";s:37:"packs/Corporate-Selected-Projects.zip";s:3:"uid";s:32:"1096c78d5f007f3900228a4092515e2e";s:3:"img";s:38:"Corporate-Selected-Projects/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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: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:17:"Corporate Website";s:13:"package_order";s:2:"13";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:360;a:25:{s:2:"id";s:3:"385";s:5:"title";s:17:"Corporate Clients";s:5:"alias";s:17:"Corporate-Clients";s:3:"zip";s:27:"packs/Corporate-Clients.zip";s:3:"uid";s:32:"60fe3a311195bf4dba3e50bd1ab98574";s:3:"img";s:28:"Corporate-Clients/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"14";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:361;a:25:{s:2:"id";s:3:"386";s:5:"title";s:20:"Corporate Text Block";s:5:"alias";s:20:"Corporate-Text-Block";s:3:"zip";s:30:"packs/Corporate-Text-Block.zip";s:3:"uid";s:32:"93b68bb23d65fd1028b6b5f6d19b85b5";s:3:"img";s:31:"Corporate-Text-Block/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"15";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:362;a:25:{s:2:"id";s:3:"387";s:5:"title";s:20:"Corporate Mobile App";s:5:"alias";s:20:"Corporate-Mobile-App";s:3:"zip";s:30:"packs/Corporate-Mobile-App.zip";s:3:"uid";s:32:"e592369d233bea673403daa15c6e498a";s:3:"img";s:31:"Corporate-Mobile-App/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"16";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:363;a:25:{s:2:"id";s:3:"388";s:5:"title";s:18:"Corporate Contacts";s:5:"alias";s:18:"Corporate-Contacts";s:3:"zip";s:28:"packs/Corporate-Contacts.zip";s:3:"uid";s:32:"91ae9488b54b7020f8ae9dfbfd6c563a";s:3:"img";s:29:"Corporate-Contacts/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"17";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:364;a:25:{s:2:"id";s:3:"389";s:5:"title";s:16:"Corporate Footer";s:5:"alias";s:16:"Corporate-Footer";s:3:"zip";s:26:"packs/Corporate-Footer.zip";s:3:"uid";s:32:"a01df90af203f06194c1a18745d79861";s:3:"img";s:27:"Corporate-Footer/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"18";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:365;a:25:{s:2:"id";s:3:"390";s:5:"title";s:23:"Corporate Scroll To Top";s:5:"alias";s:23:"Corporate-Scroll-To-Top";s:3:"zip";s:33:"packs/Corporate-Scroll-To-Top.zip";s:3:"uid";s:32:"2d68f6e4590a9a445e6eb055dfee88ba";s:3:"img";s:34:"Corporate-Scroll-To-Top/slide1.jpg";s:7:"preview";s:61:"https://revolution.themepunch.com/corporate-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:248:"<span class="ttm_content">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:206:"<span class="ttm_content"></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:17:"Corporate Website";s:13:"package_order";s:2:"19";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"29";s:9:"installed";b:0;}i:366;a:25:{s:2:"id";s:3:"402";s:5:"title";s:23:"Brutal Website Template";s:5:"alias";s:23:"brutal-website-template";s:3:"zip";s:0:"";s:3:"uid";s:31:"brutal-website-template-package";s:3:"img";s:36:"packages/brutal-website-template.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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:7:"website";}s:14:"plugin_require";s:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:23:"Brutal Website Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:367;a:25:{s:2:"id";s:3:"403";s:5:"title";s:11:"Brutal Menu";s:5:"alias";s:11:"brutal-menu";s:3:"zip";s:21:"packs/brutal-menu.zip";s:3:"uid";s:32:"04b21c7aee2479793336e964230d6e3f";s:3:"img";s:22:"brutal-menu/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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: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:23:"Brutal Website Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:368;a:25:{s:2:"id";s:3:"404";s:5:"title";s:11:"Brutal Hero";s:5:"alias";s:11:"brutal-hero";s:3:"zip";s:21:"packs/brutal-hero.zip";s:3:"uid";s:32:"a342ad01054b97bac7980fdf9e275b34";s:3:"img";s:22:"brutal-hero/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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:2:{i:0;s:4:"hero";i:1;s:7:"website";}s:14:"plugin_require";s:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:23:"Brutal Website Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:369;a:25:{s:2:"id";s:3:"405";s:5:"title";s:12:"Brutal About";s:5:"alias";s:12:"brutal-about";s:3:"zip";s:22:"packs/brutal-about.zip";s:3:"uid";s:32:"a3e1cd2e36c9a783c1932fdafe2e4434";s:3:"img";s:23:"brutal-about/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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:2:{i:0;s:4:"hero";i:1;s:7:"website";}s:14:"plugin_require";s:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:23:"Brutal Website Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:370;a:25:{s:2:"id";s:3:"406";s:5:"title";s:16:"Brutal Highlight";s:5:"alias";s:16:"brutal-highlight";s:3:"zip";s:26:"packs/brutal-highlight.zip";s:3:"uid";s:32:"b7f8522dcb4636467633bd3b14f4e3e9";s:3:"img";s:27:"brutal-highlight/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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: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:23:"Brutal Website Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:371;a:25:{s:2:"id";s:3:"407";s:5:"title";s:15:"Brutal Projects";s:5:"alias";s:15:"brutal-projects";s:3:"zip";s:25:"packs/brutal-projects.zip";s:3:"uid";s:32:"1a462e91373042193ca5d623dd8e8a47";s:3:"img";s:26:"brutal-projects/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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: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:23:"Brutal Website Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:372;a:25:{s:2:"id";s:3:"408";s:5:"title";s:15:"Brutal Services";s:5:"alias";s:15:"brutal-services";s:3:"zip";s:25:"packs/brutal-services.zip";s:3:"uid";s:32:"cbeeb1e7a5c2842b155fe13acb7c165d";s:3:"img";s:26:"brutal-services/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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:2:{i:0;s:6:"slider";i:1;s:7:"website";}s:14:"plugin_require";s:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:23:"Brutal Website Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:373;a:25:{s:2:"id";s:3:"409";s:5:"title";s:14:"Brutal Callout";s:5:"alias";s:14:"brutal-callout";s:3:"zip";s:24:"packs/brutal-callout.zip";s:3:"uid";s:32:"31b6dafdb2dfb548152653e60df5a3bc";s:3:"img";s:25:"brutal-callout/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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:2:{i:0;s:6:"slider";i:1;s:7:"website";}s:14:"plugin_require";s:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:23:"Brutal Website Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:374;a:25:{s:2:"id";s:3:"410";s:5:"title";s:13:"Brutal Footer";s:5:"alias";s:13:"brutal-footer";s:3:"zip";s:23:"packs/brutal-footer.zip";s:3:"uid";s:32:"07559f0c574e3dd95b2d40d72cbb01bc";s:3:"img";s:24:"brutal-footer/slide1.jpg";s:7:"preview";s:58:"https://revolution.themepunch.com/brutal-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:232:"<span class="ttm_content">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</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: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:23:"Brutal Website Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"31";s:9:"installed";b:0;}i:375;a:25:{s:2:"id";s:3:"411";s:5:"title";s:23:"Church Website Template";s:5:"alias";s:23:"church-website-template";s:3:"zip";s:0:"";s:3:"uid";s:31:"church-website-template-package";s:3:"img";s:36:"packages/church-website-template.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:23:"Church Website Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:376;a:25:{s:2:"id";s:3:"412";s:5:"title";s:13:"Church Header";s:5:"alias";s:13:"Church-Header";s:3:"zip";s:23:"packs/Church-Header.zip";s:3:"uid";s:32:"c14289117e1e2b9ee716fb99146b2e03";s:3:"img";s:24:"Church-Header/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:377;a:25:{s:2:"id";s:3:"413";s:5:"title";s:22:"Church Upcoming Events";s:5:"alias";s:22:"Church-Upcoming-Events";s:3:"zip";s:32:"packs/Church-Upcoming-Events.zip";s:3:"uid";s:32:"056a26efddae92973fee4ee5cfa75f10";s:3:"img";s:33:"Church-Upcoming-Events/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:378;a:25:{s:2:"id";s:3:"414";s:5:"title";s:12:"Church About";s:5:"alias";s:12:"Church-About";s:3:"zip";s:22:"packs/Church-About.zip";s:3:"uid";s:32:"8ef133f3f669f06380334a83e27eedbb";s:3:"img";s:23:"Church-About/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:379;a:25:{s:2:"id";s:3:"415";s:5:"title";s:14:"Church Pastors";s:5:"alias";s:14:"Church-Pastors";s:3:"zip";s:24:"packs/Church-Pastors.zip";s:3:"uid";s:32:"715edc0833a753b72350b8c974f86f94";s:3:"img";s:25:"Church-Pastors/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:380;a:25:{s:2:"id";s:3:"416";s:5:"title";s:20:"Church Photo Gallery";s:5:"alias";s:20:"Church-Photo-Gallery";s:3:"zip";s:30:"packs/Church-Photo-Gallery.zip";s:3:"uid";s:32:"d94808a97149cd5d3b3354a28409ffd7";s:3:"img";s:31:"Church-Photo-Gallery/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:381;a:25:{s:2:"id";s:3:"417";s:5:"title";s:16:"Church Community";s:5:"alias";s:16:"Church-Community";s:3:"zip";s:26:"packs/Church-Community.zip";s:3:"uid";s:32:"2244e6a6d7a691653eae2d70765130a7";s:3:"img";s:27:"Church-Community/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:382;a:25:{s:2:"id";s:3:"418";s:5:"title";s:13:"Church Sermon";s:5:"alias";s:13:"Church-Sermon";s:3:"zip";s:23:"packs/Church-Sermon.zip";s:3:"uid";s:32:"8fedf983bd55fff0f7a16d9f0a7e5408";s:3:"img";s:24:"Church-Sermon/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:383;a:25:{s:2:"id";s:3:"419";s:5:"title";s:15:"Church Contacts";s:5:"alias";s:15:"Church-Contacts";s:3:"zip";s:25:"packs/Church-Contacts.zip";s:3:"uid";s:32:"0b1a6968e75868548fd98e435625c090";s:3:"img";s:26:"Church-Contacts/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:384;a:25:{s:2:"id";s:3:"420";s:5:"title";s:13:"Church Footer";s:5:"alias";s:13:"Church-Footer";s:3:"zip";s:23:"packs/Church-Footer.zip";s:3:"uid";s:32:"29756685d3dc49e42edada43e6393b7b";s:3:"img";s:24:"Church-Footer/slide1.jpg";s:7:"preview";s:63:"https://revolution.themepunch.com/church-website-template-dark/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:23:"Church Website Template";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"32";s:9:"installed";b:0;}i:385;a:25:{s:2:"id";s:3:"421";s:5:"title";s:29:"Church Light Website Template";s:5:"alias";s:29:"church-light-website-template";s:3:"zip";s:0:"";s:3:"uid";s:37:"church-light-website-template-package";s:3:"img";s:42:"packages/church-light-website-template.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:29:"Church Light Website Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:386;a:25:{s:2:"id";s:3:"422";s:5:"title";s:19:"Church Light Header";s:5:"alias";s:19:"Church-Light-Header";s:3:"zip";s:29:"packs/Church-Light-Header.zip";s:3:"uid";s:32:"81c00f4b52cf55214de919e3f13121fc";s:3:"img";s:30:"Church-Light-Header/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:387;a:25:{s:2:"id";s:3:"423";s:5:"title";s:28:"Church Light Upcoming Events";s:5:"alias";s:28:"Church-Light-Upcoming-Events";s:3:"zip";s:38:"packs/Church-Light-Upcoming-Events.zip";s:3:"uid";s:32:"963a49f4be0557ac5f3ee61d256f5bda";s:3:"img";s:39:"Church-Light-Upcoming-Events/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:29:"Church Light Website Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:388;a:25:{s:2:"id";s:3:"424";s:5:"title";s:18:"Church Light About";s:5:"alias";s:18:"Church-Light-About";s:3:"zip";s:28:"packs/Church-Light-About.zip";s:3:"uid";s:32:"d46c8e8e6f80e6bfedb54f1cdc49e7e6";s:3:"img";s:29:"Church-Light-About/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:389;a:25:{s:2:"id";s:3:"425";s:5:"title";s:20:"Church Light Pastors";s:5:"alias";s:20:"Church-Light-Pastors";s:3:"zip";s:30:"packs/Church-Light-Pastors.zip";s:3:"uid";s:32:"7cc3dec61556e2291d6f38c1ea5e983f";s:3:"img";s:31:"Church-Light-Pastors/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:390;a:25:{s:2:"id";s:3:"426";s:5:"title";s:26:"Church Light Photo Gallery";s:5:"alias";s:26:"Church-Light-Photo-Gallery";s:3:"zip";s:36:"packs/Church-Light-Photo-Gallery.zip";s:3:"uid";s:32:"9e13100179b9b700b005693eeca57902";s:3:"img";s:37:"Church-Light-Photo-Gallery/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:391;a:25:{s:2:"id";s:3:"427";s:5:"title";s:22:"Church Light Community";s:5:"alias";s:22:"Church-Light-Community";s:3:"zip";s:32:"packs/Church-Light-Community.zip";s:3:"uid";s:32:"14fcc0d43d899fd96116bdbc57c7c5ea";s:3:"img";s:33:"Church-Light-Community/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:392;a:25:{s:2:"id";s:3:"428";s:5:"title";s:19:"Church Light Sermon";s:5:"alias";s:19:"Church-Light-Sermon";s:3:"zip";s:29:"packs/Church-Light-Sermon.zip";s:3:"uid";s:32:"fc30be7e703bc7b235665c36baa80e4e";s:3:"img";s:30:"Church-Light-Sermon/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:393;a:25:{s:2:"id";s:3:"429";s:5:"title";s:21:"Church Light Contacts";s:5:"alias";s:21:"Church-Light-Contacts";s:3:"zip";s:31:"packs/Church-Light-Contacts.zip";s:3:"uid";s:32:"ed83d8fa63ecb59cf42656068ecf8d25";s:3:"img";s:32:"Church-Light-Contacts/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:394;a:25:{s:2:"id";s:3:"430";s:5:"title";s:19:"Church Light Footer";s:5:"alias";s:19:"Church-Light-Footer";s:3:"zip";s:29:"packs/Church-Light-Footer.zip";s:3:"uid";s:32:"a168772865fd5dcf6229c9c6a49dff73";s:3:"img";s:30:"Church-Light-Footer/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/church-website-template-light/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:202:"<span class="ttm_content">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</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: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:"Church Light Website Template";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"33";s:9:"installed";b:0;}i:395;a:25:{s:2:"id";s:3:"431";s:5:"title";s:25:"Rockable Website Template";s:5:"alias";s:25:"rockable-website-template";s:3:"zip";s:0:"";s:3:"uid";s:33:"rockable-website-template-package";s:3:"img";s:38:"packages/rockable-website-template.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:25:"Rockable Website Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:396;a:25:{s:2:"id";s:3:"432";s:5:"title";s:13:"Rockable Menu";s:5:"alias";s:13:"rockable-menu";s:3:"zip";s:23:"packs/rockable-menu.zip";s:3:"uid";s:32:"92d18f7ff38f22ff411a4ef4d9f54934";s:3:"img";s:24:"rockable-menu/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:397;a:25:{s:2:"id";s:3:"433";s:5:"title";s:13:"Rockable Hero";s:5:"alias";s:13:"rockable-hero";s:3:"zip";s:23:"packs/rockable-hero.zip";s:3:"uid";s:32:"ba16b28d6bde95910cbce572bb251208";s:3:"img";s:24:"rockable-hero/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:398;a:25:{s:2:"id";s:3:"434";s:5:"title";s:15:"Rockable Lineup";s:5:"alias";s:15:"rockable-lineup";s:3:"zip";s:25:"packs/rockable-lineup.zip";s:3:"uid";s:32:"6631980112805533a0d328c37e56adbd";s:3:"img";s:26:"rockable-lineup/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:399;a:25:{s:2:"id";s:3:"435";s:5:"title";s:17:"Rockable Lineup 2";s:5:"alias";s:17:"rockable-lineup-2";s:3:"zip";s:27:"packs/rockable-lineup-2.zip";s:3:"uid";s:32:"98bc41d982dc478edabff4aa99461dbc";s:3:"img";s:28:"rockable-lineup-2/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:400;a:25:{s:2:"id";s:3:"436";s:5:"title";s:22:"Rockable Gallery Title";s:5:"alias";s:22:"rockable-gallery-title";s:3:"zip";s:32:"packs/rockable-gallery-title.zip";s:3:"uid";s:32:"da43a76f5bc77aa6efe158b00ab7cf0d";s:3:"img";s:33:"rockable-gallery-title/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:401;a:25:{s:2:"id";s:3:"437";s:5:"title";s:16:"Rockable Gallery";s:5:"alias";s:16:"rockable-gallery";s:3:"zip";s:26:"packs/rockable-gallery.zip";s:3:"uid";s:32:"c12a144d6860bcf24e91d5b980ac22f1";s:3:"img";s:27:"rockable-gallery/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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:2:{i:0;s:8:"carousel";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:25:"Rockable Website Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:402;a:25:{s:2:"id";s:3:"438";s:5:"title";s:17:"Rockable Sponsors";s:5:"alias";s:17:"rockable-sponsors";s:3:"zip";s:27:"packs/rockable-sponsors.zip";s:3:"uid";s:32:"1e40d4a810c23f8d5fe5cd5ca31ee20d";s:3:"img";s:28:"rockable-sponsors/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:403;a:25:{s:2:"id";s:3:"439";s:5:"title";s:15:"Rockable Footer";s:5:"alias";s:15:"rockable-footer";s:3:"zip";s:25:"packs/rockable-footer.zip";s:3:"uid";s:32:"a4a9952d5e56fc14366155e8ebfa432a";s:3:"img";s:26:"rockable-footer/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:404;a:25:{s:2:"id";s:3:"440";s:5:"title";s:21:"Rockable Detail Modal";s:5:"alias";s:21:"rockable-detail-modal";s:3:"zip";s:31:"packs/rockable-detail-modal.zip";s:3:"uid";s:32:"b51d918203ff7975a144a9f1be09f31b";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:405;a:25:{s:2:"id";s:3:"441";s:5:"title";s:23:"Rockable Detail Modal 2";s:5:"alias";s:23:"rockable-detail-modal-2";s:3:"zip";s:33:"packs/rockable-detail-modal-2.zip";s:3:"uid";s:32:"dcf51ebb3d4a1dec94748a1e016c5ef7";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";s:7:"preview";s:60:"https://revolution.themepunch.com/rockable-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</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: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:25:"Rockable Website Template";s:13:"package_order";s:2:"10";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"34";s:9:"installed";b:0;}i:406;a:22:{s:2:"id";s:3:"442";s:5:"title";s:27:"Real Estate Showcase Slider";s:5:"alias";s:27:"Real-Estate-Showcase-Slider";s:3:"zip";s:31:"Real-Estate-Showcase-Slider.zip";s:3:"uid";s:32:"4b0ddbe1928115f4b040f6ad4a01a583";s:3:"img";s:38:"Real-Estate-Showcase-Slider/slide1.jpg";s:7:"preview";s:62:"https://revolution.themepunch.com/real-estate-showcase-slider/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.3";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:152:"<span class="ttm_content">An elegant showcase for your real estate & realtor website. Flexible and customizable.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:407;a:22:{s:2:"id";s:3:"443";s:5:"title";s:16:"Isometric Slider";s:5:"alias";s:16:"isometric-slider";s:3:"zip";s:20:"isometric-slider.zip";s:3:"uid";s:32:"fb06051fcf6649a44f2292044e414a36";s:3:"img";s:27:"isometric-slider/slide1.jpg";s:7:"preview";s:51:"https://revolution.themepunch.com/isometric-slider/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:154:"<span class="ttm_content">A colorful, isometric slider template with fully customizable colors and screen content.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:408;a:25:{s:2:"id";s:3:"444";s:5:"title";s:26:"Woo Commerce Slider Static";s:5:"alias";s:26:"woo-commerce-slider-static";s:3:"zip";s:0:"";s:3:"uid";s:26:"woo-commerce-slider-static";s:3:"img";s:39:"packages/woo-commerce-slider-static.jpg";s:7:"preview";s:54:"https://revolution.themepunch.com/woo-commerce-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:178:"<span class="ttm_content">A uniquely animated Woo Commerce Slider template - this is the static version that doesn''t use Woo Commerce data</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:26:"Woo Commerce Slider Static";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"35";s:9:"installed";b:0;}i:409;a:25:{s:2:"id";s:3:"445";s:5:"title";s:17:"E-Commerce Slider";s:5:"alias";s:17:"E-Commerce-Slider";s:3:"zip";s:27:"packs/E-Commerce-Slider.zip";s:3:"uid";s:32:"1533cfd83c2ae122f23074e1ed77f256";s:3:"img";s:28:"E-Commerce-Slider/slide1.jpg";s:7:"preview";s:54:"https://revolution.themepunch.com/woo-commerce-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:178:"<span class="ttm_content">A uniquely animated Woo Commerce Slider template - this is the static version that doesn''t use Woo Commerce data</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: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:26:"Woo Commerce Slider Static";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"35";s:9:"installed";b:0;}i:410;a:25:{s:2:"id";s:3:"446";s:5:"title";s:23:"E-Commerce Slider Modal";s:5:"alias";s:23:"E-Commerce-Slider-Modal";s:3:"zip";s:33:"packs/E-Commerce-Slider-Modal.zip";s:3:"uid";s:32:"825e05c3967515b92a75da017c68a863";s:3:"img";s:34:"E-Commerce-Slider-Modal/slide1.jpg";s:7:"preview";s:54:"https://revolution.themepunch.com/woo-commerce-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:178:"<span class="ttm_content">A uniquely animated Woo Commerce Slider template - this is the static version that doesn''t use Woo Commerce data</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: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:26:"Woo Commerce Slider Static";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"35";s:9:"installed";b:0;}i:411;a:22:{s:2:"id";s:3:"447";s:5:"title";s:27:"Woo Commerce Slider Dynamic";s:5:"alias";s:27:"Woo-Commerce-Slider-Dynamic";s:3:"zip";s:31:"Woo-Commerce-Slider-Dynamic.zip";s:3:"uid";s:32:"b8e2c64f3739e552c563c48c59f20fe7";s:3:"img";s:38:"Woo-Commerce-Slider-Dynamic/slide1.jpg";s:7:"preview";s:54:"https://revolution.themepunch.com/woo-commerce-slider/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:172:"<span class="ttm_content">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:412;a:25:{s:2:"id";s:3:"448";s:5:"title";s:31:"Blooming Event Florist Template";s:5:"alias";s:31:"blooming-event-florist-template";s:3:"zip";s:0:"";s:3:"uid";s:39:"blooming-event-florist-template-package";s:3:"img";s:52:"packages/blooming-event-florist-template-package.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:413;a:25:{s:2:"id";s:3:"449";s:5:"title";s:15:"Blooming Header";s:5:"alias";s:15:"blooming-header";s:3:"zip";s:25:"packs/blooming-header.zip";s:3:"uid";s:32:"aa2ee34fd8ed018945ba64e6913810e4";s:3:"img";s:26:"blooming-header/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:414;a:25:{s:2:"id";s:3:"450";s:5:"title";s:14:"Blooming About";s:5:"alias";s:14:"blooming-about";s:3:"zip";s:24:"packs/blooming-about.zip";s:3:"uid";s:32:"dd7095e46fab2eb475d00480fd17a6ec";s:3:"img";s:25:"blooming-about/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:415;a:25:{s:2:"id";s:3:"451";s:5:"title";s:18:"Blooming Portfolio";s:5:"alias";s:18:"blooming-portfolio";s:3:"zip";s:28:"packs/blooming-portfolio.zip";s:3:"uid";s:32:"c72ddcbb07b62982b8c21328a6383e22";s:3:"img";s:29:"blooming-portfolio/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:416;a:25:{s:2:"id";s:3:"452";s:5:"title";s:22:"Blooming Wedding Title";s:5:"alias";s:22:"blooming-wedding-title";s:3:"zip";s:32:"packs/blooming-wedding-title.zip";s:3:"uid";s:32:"4fcfb0b99289c12d014c67306bb7687b";s:3:"img";s:33:"blooming-wedding-title/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:417;a:25:{s:2:"id";s:3:"453";s:5:"title";s:25:"Blooming Wedding Carousel";s:5:"alias";s:25:"blooming-wedding-carousel";s:3:"zip";s:35:"packs/blooming-wedding-carousel.zip";s:3:"uid";s:32:"1d1bb979dbfca8ba9d43da1c0f665339";s:3:"img";s:36:"blooming-wedding-carousel/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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:2:{i:0;s:8:"carousel";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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:418;a:25:{s:2:"id";s:3:"454";s:5:"title";s:21:"Blooming Wedding Text";s:5:"alias";s:21:"blooming-wedding-text";s:3:"zip";s:31:"packs/blooming-wedding-text.zip";s:3:"uid";s:32:"326f2793294a739dd3aac3cc45332df8";s:3:"img";s:32:"blooming-wedding-text/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:419;a:25:{s:2:"id";s:3:"455";s:5:"title";s:22:"Blooming Parties Title";s:5:"alias";s:22:"blooming-parties-title";s:3:"zip";s:32:"packs/blooming-parties-title.zip";s:3:"uid";s:32:"b47aae1b368d3c3d9017f260e6c6a547";s:3:"img";s:33:"blooming-parties-title/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:420;a:25:{s:2:"id";s:3:"456";s:5:"title";s:25:"Blooming Parties Carousel";s:5:"alias";s:25:"blooming-parties-carousel";s:3:"zip";s:35:"packs/blooming-parties-carousel.zip";s:3:"uid";s:32:"9f90a9da7b017aeee7f3b608cda066e6";s:3:"img";s:36:"blooming-parties-carousel/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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:2:{i:0;s:8:"carousel";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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:421;a:25:{s:2:"id";s:3:"457";s:5:"title";s:21:"Blooming Parties Text";s:5:"alias";s:21:"blooming-parties-text";s:3:"zip";s:31:"packs/blooming-parties-text.zip";s:3:"uid";s:32:"66a47346cc639b8b9b9b5dfa1521b6ef";s:3:"img";s:32:"blooming-parties-text/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:422;a:25:{s:2:"id";s:3:"458";s:5:"title";s:22:"Blooming Funeral Title";s:5:"alias";s:22:"blooming-funeral-title";s:3:"zip";s:32:"packs/blooming-funeral-title.zip";s:3:"uid";s:32:"e9e77134472c33c56be442073f29d1fd";s:3:"img";s:33:"blooming-funeral-title/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:2:"10";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:423;a:25:{s:2:"id";s:3:"459";s:5:"title";s:23:"Blooming Funeral Slider";s:5:"alias";s:23:"blooming-funeral-slider";s:3:"zip";s:33:"packs/blooming-funeral-slider.zip";s:3:"uid";s:32:"d15090841c25c7c8f0e1b0987c0c0887";s:3:"img";s:34:"blooming-funeral-slider/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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:7:"package";s:31:"Blooming Event Florist Template";s:13:"package_order";s:2:"11";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:424;a:25:{s:2:"id";s:3:"460";s:5:"title";s:21:"Blooming Funeral Text";s:5:"alias";s:21:"blooming-funeral-text";s:3:"zip";s:31:"packs/blooming-funeral-text.zip";s:3:"uid";s:32:"d7c80e246f31e3d2f4e5dc1656f133cc";s:3:"img";s:32:"blooming-funeral-text/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:2:"12";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:425;a:25:{s:2:"id";s:3:"461";s:5:"title";s:16:"Blooming Contact";s:5:"alias";s:16:"blooming-contact";s:3:"zip";s:26:"packs/blooming-contact.zip";s:3:"uid";s:32:"54280182bca86443e2648b3146f41e47";s:3:"img";s:27:"blooming-contact/slide1.jpg";s:7:"preview";s:57:"https://revolution.themepunch.com/event-florist-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:175:"<span class="ttm_content">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</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: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:31:"Blooming Event Florist Template";s:13:"package_order";s:2:"13";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"36";s:9:"installed";b:0;}i:426;a:22:{s:2:"id";s:3:"462";s:5:"title";s:13:"Particle Hero";s:5:"alias";s:13:"particle-hero";s:3:"zip";s:17:"particle-hero.zip";s:3:"uid";s:32:"3f422f4807bf9ef4cb15dade515dad00";s:3:"img";s:24:"particle-hero/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:120:"<span class="ttm_content">A Hero header module using the Particle Effect 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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:427;a:22:{s:2:"id";s:3:"463";s:5:"title";s:17:"Bubble Morph Hero";s:5:"alias";s:17:"bubble-morph-hero";s:3:"zip";s:21:"bubble-morph-hero.zip";s:3:"uid";s:32:"b47e6bcc1ae80393ff3f7388ed3b9f8f";s:3:"img";s:28:"bubble-morph-hero/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:117:"<span class="ttm_content">A Hero header module using the Bubble Morph 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:174:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:428;a:22:{s:2:"id";s:3:"464";s:5:"title";s:13:"Parallax Hero";s:5:"alias";s:13:"parallax-hero";s:3:"zip";s:17:"parallax-hero.zip";s:3:"uid";s:32:"290e86534326ee118e96ae7ce0538fa2";s:3:"img";s:24:"parallax-hero/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:117:"<span class="ttm_content">A parallax hero module with mouse move interaction.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:429;a:22:{s:2:"id";s:3:"465";s:5:"title";s:10:"Video Hero";s:5:"alias";s:10:"video-hero";s:3:"zip";s:14:"video-hero.zip";s:3:"uid";s:32:"f9e280015d3408bb0482e13fe753da8f";s:3:"img";s:21:"video-hero/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:111:"<span class="ttm_content">A simple Hero header module with HTML5 video.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:430;a:22:{s:2:"id";s:3:"466";s:5:"title";s:14:"Ken Burns Hero";s:5:"alias";s:14:"ken-burns-hero";s:3:"zip";s:18:"ken-burns-hero.zip";s:3:"uid";s:32:"d5f89e5f5b3991b995e2bfeb50cfe9f8";s:3:"img";s:25:"ken-burns-hero/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:142:"<span class="ttm_content">A simple image background hero header module with a subtle Ken Burns effect.</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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:431;a:22:{s:2:"id";s:3:"467";s:5:"title";s:21:"Basic Hero Collection";s:5:"alias";s:21:"basic-hero-collection";s:3:"zip";s:25:"basic-hero-collection.zip";s:3:"uid";s:32:"ff625c65e8aab4689fa56d5652279d51";s:3:"img";s:32:"basic-hero-collection/slide1.jpg";s:7:"preview";s:62:"https://revolution.themepunch.com/wordpress-hero-image-header/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.5";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:153:"<span class="ttm_content">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</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:348:"[{"path":"revslider-particles-addon\\/revslider-particles-addon.php","name":"Particles Effect AddOn","url":"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/"},{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph 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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:432;a:22:{s:2:"id";s:3:"468";s:5:"title";s:19:"Launching Very Soon";s:5:"alias";s:19:"launching-very-soon";s:3:"zip";s:23:"launching-very-soon.zip";s:3:"uid";s:32:"2da45cf2d9bec07e7183b3f7777986b9";s:3:"img";s:30:"launching-very-soon/slide1.jpg";s:7:"preview";s:59:"https://revolution.themepunch.com/launching-soon-countdown/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:166:"<span class="ttm_content">Rocket BOOST! A beautifully animated launching soon countdown module using our "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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:433;a:22:{s:2:"id";s:3:"469";s:5:"title";s:18:"Under Construction";s:5:"alias";s:18:"Under-Construction";s:3:"zip";s:22:"Under-Construction.zip";s:3:"uid";s:32:"4b12f9a82a5b48d45a707df93406eb5b";s:3:"img";s:29:"Under-Construction/slide1.jpg";s:7:"preview";s:53:"https://revolution.themepunch.com/under-construction/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:157:"<span class="ttm_content">You will love this animated under construction landing page using our "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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:434;a:22:{s:2:"id";s:3:"470";s:5:"title";s:15:"Particle Effect";s:5:"alias";s:15:"Particle-Effect";s:3:"zip";s:19:"Particle-Effect.zip";s:3:"uid";s:32:"66cf4e514e83a6984903694fd587edb6";s:3:"img";s:26:"Particle-Effect/slide1.jpg";s:7:"preview";s:54:"https://revolution.themepunch.com/snow-particle-scene/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:140:"<span class="ttm_content">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:435;a:22:{s:2:"id";s:3:"471";s:5:"title";s:17:"Particle Effect 2";s:5:"alias";s:17:"Particle-Effect-2";s:3:"zip";s:21:"Particle-Effect-2.zip";s:3:"uid";s:32:"303337c29a97a816ccecca7e5f0b5e20";s:3:"img";s:28:"Particle-Effect-2/slide1.jpg";s:7:"preview";s:56:"https://revolution.themepunch.com/cyber-particle-effect/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:147:"<span class="ttm_content">Amaze your website visitors with the cyber particle effect for Slider Revolution!</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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:436;a:25:{s:2:"id";s:3:"472";s:5:"title";s:22:"Stark Website Template";s:5:"alias";s:22:"stark-website-template";s:3:"zip";s:0:"";s:3:"uid";s:30:"stark-website-template-package";s:3:"img";s:43:"packages/stark-website-template-package.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:22:"Stark Website Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:437;a:25:{s:2:"id";s:3:"473";s:5:"title";s:10:"Stark Menu";s:5:"alias";s:10:"stark-menu";s:3:"zip";s:20:"packs/stark-menu.zip";s:3:"uid";s:32:"bb31150df180e784d76a1f5ea306bf05";s:3:"img";s:21:"stark-menu/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:87:"offset="t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:438;a:25:{s:2:"id";s:3:"474";s:5:"title";s:12:"Stark Header";s:5:"alias";s:12:"stark-header";s:3:"zip";s:22:"packs/stark-header.zip";s:3:"uid";s:32:"62bfca01bf6e33cfad81d8df06498299";s:3:"img";s:23:"stark-header/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:93:"offset="t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:439;a:25:{s:2:"id";s:3:"475";s:5:"title";s:13:"Stark Content";s:5:"alias";s:13:"stark-content";s:3:"zip";s:23:"packs/stark-content.zip";s:3:"uid";s:32:"4577ca760133eb5d894c46f212f6eefb";s:3:"img";s:24:"stark-content/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:110:"offset="t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;" zindex="6"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:440;a:25:{s:2:"id";s:3:"476";s:5:"title";s:14:"Stark Carousel";s:5:"alias";s:14:"stark-carousel";s:3:"zip";s:24:"packs/stark-carousel.zip";s:3:"uid";s:32:"de63336d333eeff10eccfd5d9741e6c9";s:3:"img";s:25:"stark-carousel/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:22:"Stark Website Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:108:"offset="t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;" zindex="1"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:441;a:25:{s:2:"id";s:3:"477";s:5:"title";s:15:"Stark Portfolio";s:5:"alias";s:15:"stark-portfolio";s:3:"zip";s:25:"packs/stark-portfolio.zip";s:3:"uid";s:32:"99fcf3df65f8471fe30bec1bf0c2350d";s:3:"img";s:26:"stark-portfolio/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:110:"offset="t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;" zindex="5"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:442;a:25:{s:2:"id";s:3:"478";s:5:"title";s:22:"Stark Portfolio Detail";s:5:"alias";s:22:"stark-portfolio-detail";s:3:"zip";s:32:"packs/stark-portfolio-detail.zip";s:3:"uid";s:32:"7484fc54f81daec07c93e992216310ce";s:3:"img";s:33:"stark-portfolio-detail/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:443;a:25:{s:2:"id";s:3:"479";s:5:"title";s:13:"Stark Contact";s:5:"alias";s:13:"stark-contact";s:3:"zip";s:23:"packs/stark-contact.zip";s:3:"uid";s:32:"8d704226b7093123a9d9faf424da6c35";s:3:"img";s:24:"stark-contact/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:108:"offset="t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;" zindex="2"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:444;a:25:{s:2:"id";s:3:"480";s:5:"title";s:12:"Stark Footer";s:5:"alias";s:12:"stark-footer";s:3:"zip";s:22:"packs/stark-footer.zip";s:3:"uid";s:32:"e7132dc158e7dcdb4ef5b3a1aa00208a";s:3:"img";s:23:"stark-footer/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:114:"offset="t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;" zindex="3"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:445;a:25:{s:2:"id";s:3:"481";s:5:"title";s:16:"Stark Newsletter";s:5:"alias";s:16:"stark-newsletter";s:3:"zip";s:26:"packs/stark-newsletter.zip";s:3:"uid";s:32:"bb76ddd68dbe6bda5ece7e4227a51413";s:3:"img";s:27:"stark-newsletter/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/stark-agency-website-template/";s:7:"version";s:5:"1.0.1";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Stark Agency website template is a collection of modules using our new Gutenberg Block "margin & padding" feature. Create unique, customizable layouts!</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: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:22:"Stark Website Template";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"1";s:9:"additions";s:33:"usage="modal" modal="s:#contact;"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"37";s:9:"installed";b:0;}i:446;a:22:{s:2:"id";s:3:"482";s:5:"title";s:15:"Big Summer Sale";s:5:"alias";s:15:"big-summer-sale";s:3:"zip";s:19:"big-summer-sale.zip";s:3:"uid";s:32:"a6779fa7109763209d234f9cf2e766c6";s:3:"img";s:26:"big-summer-sale/slide1.jpg";s:7:"preview";s:62:"https://revolution.themepunch.com/big-summer-sale-shop-slider/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:153:"<span class="ttm_content">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce 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: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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:447;a:22:{s:2:"id";s:3:"483";s:5:"title";s:18:"Traveller Carousel";s:5:"alias";s:18:"traveller-carousel";s:3:"zip";s:22:"traveller-carousel.zip";s:3:"uid";s:32:"185344ed6236bea2906a79035d1d5702";s:3:"img";s:29:"traveller-carousel/slide1.jpg";s:7:"preview";s:55:"https://revolution.themepunch.com/travel-blog-carousel/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:137:"<span class="ttm_content">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:263:"<span class="ttm_content">Note that the content visible on all slides can be edited on the "global layers" slide.<br/>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";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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:448;a:22:{s:2:"id";s:3:"484";s:5:"title";s:16:"Project Carousel";s:5:"alias";s:16:"project-carousel";s:3:"zip";s:20:"project-carousel.zip";s:3:"uid";s:32:"49c85ad406da943bdd25f08fd6496748";s:3:"img";s:27:"project-carousel/slide1.jpg";s:7:"preview";s:51:"https://revolution.themepunch.com/project-carousel/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:137:"<span class="ttm_content">A project carousel with images and texts that can be customized easily!</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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:449;a:22:{s:2:"id";s:3:"485";s:5:"title";s:13:"News Carousel";s:5:"alias";s:13:"news-carousel";s:3:"zip";s:17:"news-carousel.zip";s:3:"uid";s:32:"76f5b939150092a30038f161084140ae";s:3:"img";s:24:"news-carousel/slide1.jpg";s:7:"preview";s:48:"https://revolution.themepunch.com/news-carousel/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:134:"<span class="ttm_content">A news carousel with images and texts that can be customized easily!</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:9:"additions";s:0:"";s:6:"active";s:1:"1";s:9:"installed";b:0;}i:450;a:25:{s:2:"id";s:3:"486";s:5:"title";s:29:"Story Blocks Website Template";s:5:"alias";s:29:"story-blocks-website-template";s:3:"zip";s:0:"";s:3:"uid";s:37:"story-blocks-website-template-package";s:3:"img";s:50:"packages/story-blocks-website-template-package.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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:7:"website";}s:14:"plugin_require";N;s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:29:"Story Blocks Website Template";s:13:"package_order";s:1:"0";s:14:"package_parent";s:4:"true";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:451;a:25:{s:2:"id";s:3:"487";s:5:"title";s:10:"Story Menu";s:5:"alias";s:10:"story-menu";s:3:"zip";s:20:"packs/story-menu.zip";s:3:"uid";s:32:"1f2f7cd91480f15cff8e7100f788c650";s:3:"img";s:21:"story-menu/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:452;a:25:{s:2:"id";s:3:"488";s:5:"title";s:12:"Story Header";s:5:"alias";s:12:"story-header";s:3:"zip";s:22:"packs/story-header.zip";s:3:"uid";s:32:"e1a5ad5018a24ccdc71c2863edfe775e";s:3:"img";s:23:"story-header/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:453;a:25:{s:2:"id";s:3:"489";s:5:"title";s:13:"Story Block 1";s:5:"alias";s:13:"story-block-1";s:3:"zip";s:23:"packs/story-block-1.zip";s:3:"uid";s:32:"2a9fee97dcf477e36d048af8a902f47a";s:3:"img";s:24:"story-block-1/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:454;a:25:{s:2:"id";s:3:"490";s:5:"title";s:15:"Story Content 1";s:5:"alias";s:15:"story-content-1";s:3:"zip";s:25:"packs/story-content-1.zip";s:3:"uid";s:32:"6773614bbce543b83a0d2b2ad8facc96";s:3:"img";s:26:"story-content-1/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:455;a:25:{s:2:"id";s:3:"491";s:5:"title";s:13:"Story Block 2";s:5:"alias";s:13:"story-block-2";s:3:"zip";s:23:"packs/story-block-2.zip";s:3:"uid";s:32:"2e708e3cebab57ca20b228ffba426ce7";s:3:"img";s:24:"story-block-2/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:456;a:25:{s:2:"id";s:3:"492";s:5:"title";s:13:"Story Block 3";s:5:"alias";s:13:"story-block-3";s:3:"zip";s:23:"packs/story-block-3.zip";s:3:"uid";s:32:"7156cf069f65644faf90122dab451231";s:3:"img";s:24:"story-block-3/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:457;a:25:{s:2:"id";s:3:"493";s:5:"title";s:15:"Story Content 2";s:5:"alias";s:15:"story-content-2";s:3:"zip";s:25:"packs/story-content-2.zip";s:3:"uid";s:32:"1223cd77d1f36d69e69ce50223e16ea7";s:3:"img";s:26:"story-content-2/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:458;a:25:{s:2:"id";s:3:"494";s:5:"title";s:13:"Story Block 4";s:5:"alias";s:13:"story-block-4";s:3:"zip";s:23:"packs/story-block-4.zip";s:3:"uid";s:32:"85ac48e8e8231d2c38206cba4e7ebb68";s:3:"img";s:24:"story-block-4/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}i:459;a:25:{s:2:"id";s:3:"495";s:5:"title";s:15:"Story Content 3";s:5:"alias";s:15:"story-content-3";s:3:"zip";s:25:"packs/story-content-3.zip";s:3:"uid";s:32:"82cac52f3ba79c0559fe0ad0cdf9d3b2";s:3:"img";s:26:"story-content-3/slide1.jpg";s:7:"preview";s:47:"https://revolution.themepunch.com/story-blocks/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"6.1.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:229:"<span class="ttm_content">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</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: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:"Story Blocks Website Template";s:13:"package_order";s:1:"9";s:14:"package_parent";s:0:"";s:5:"modal";s:1:"0";s:9:"additions";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"38";s:9:"installed";b:0;}}s:6:"slides";a:448:{s:16:"classic-carousel";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"classic-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"classic-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"classic-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:27:"classic-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:27:"classic-carousel/slide5.jpg";}}s:13:"classicslider";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"classicslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"classicslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"classicslider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:24:"classicslider/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:24:"classicslider/slide5.jpg";}}s:11:"contenttabs";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"contenttabs/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"contenttabs/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"contenttabs/slide3.jpg";}}s:13:"facebook-feed";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"facebook-feed/slide1.jpg";}}s:7:"fashion";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"fashion/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"fashion/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"fashion/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:18:"fashion/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:18:"fashion/slide5.jpg";}}s:14:"flickr-gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"flickr-gallery/slide1.jpg";}}s:3:"gym";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:14:"gym/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:14:"gym/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:14:"gym/slide3.jpg";}}s:18:"highlight-carousel";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"highlight-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"highlight-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"highlight-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"highlight-carousel/slide4.jpg";}}s:18:"highlight-showcase";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"highlight-showcase/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"highlight-showcase/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"highlight-showcase/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"highlight-showcase/slide4.jpg";}}s:10:"image-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"imagehero/slide1.jpg";}}s:13:"insta-gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"insta-gallery/slide1.jpg";}}s:19:"levanorestaurantbar";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"levanorestaurantbar/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"levanorestaurantbar/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"levanorestaurantbar/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:30:"levanorestaurantbar/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:30:"levanorestaurantbar/slide5.jpg";}}s:11:"mainfeature";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"mainfeature/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"mainfeature/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"mainfeature/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:22:"mainfeature/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:22:"mainfeature/slide7.jpg";}}s:17:"media-gallery-two";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"media-gallery-two/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"media-gallery-two/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"media-gallery-two/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:28:"media-gallery-two/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:28:"media-gallery-two/slide6.jpg";}}s:23:"media-carousel-autoplay";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"media-carousel-autoplay/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:34:"media-carousel-autoplay/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:34:"media-carousel-autoplay/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:34:"media-carousel-autoplay/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:34:"media-carousel-autoplay/slide6.jpg";}}s:21:"news-background-video";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"news-bg-video/slide1.jpg";}}s:12:"news-gallery";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"news-gallery/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"news-gallery/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"news-gallery/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:23:"news-gallery/slide4.jpg";}}s:23:"news-gallery-post-based";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"news-gallery-post-based/slide1.jpg";}}s:9:"news-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"news-hero/slide1.jpg";}}s:10:"news-video";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"news-video/slide1.jpg";}}s:15:"newsletter-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"newsletter-hero/slide1.jpg";}}s:10:"notgeneric";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"notgeneric/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:21:"notgeneric/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:21:"notgeneric/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:21:"notgeneric/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:21:"notgeneric/slide5.jpg";}}s:11:"photography";a:10:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"photography/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"photography/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"photography/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:22:"photography/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:22:"photography/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:22:"photography/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:22:"photography/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:22:"photography/slide8.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:22:"photography/slide9.jpg";}i:9;a:2:{s:5:"title";s:8:"Slide 10";s:3:"img";s:23:"photography/slide10.jpg";}}s:20:"photography-carousel";a:10:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"photography-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"photography-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:31:"photography-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:31:"photography-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:31:"photography-carousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:31:"photography-carousel/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:31:"photography-carousel/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:31:"photography-carousel/slide8.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:31:"photography-carousel/slide9.jpg";}i:9;a:2:{s:5:"title";s:8:"Slide 10";s:3:"img";s:32:"photography-carousel/slide10.jpg";}}s:16:"search-form-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"search-form-hero/slide1.jpg";}}s:16:"showcasecarousel";a:9:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"showcasecarousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"showcasecarousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"showcasecarousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:27:"showcasecarousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:27:"showcasecarousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:27:"showcasecarousel/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:27:"showcasecarousel/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:27:"showcasecarousel/slide8.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:27:"showcasecarousel/slide9.jpg";}}s:11:"sports-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"sportshero/slide1.jpg";}}s:12:"twitter-feed";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"twitter-feed/slide1.jpg";}}s:13:"vimeo-gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"vimeo-gallery/slide1.jpg";}}s:9:"vimeohero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"vimeohero/slide1.jpg";}}s:16:"web-product-dark";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"web-product-dark/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"web-product-dark/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"web-product-dark/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:27:"web-product-dark/slide4.jpg";}}s:21:"web-product-dark-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"web-product-dark-hero/slide1.jpg";}}s:22:"web-product-light-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"web-product-light-hero/slide1.jpg";}}s:15:"webproductlight";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"webproductlight/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"webproductlight/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"webproductlight/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"webproductlight/slide4.jpg";}}s:15:"youtube-gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"youtube-gallery/slide1.jpg";}}s:11:"youtubehero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"youtubehero/slide1.jpg";}}s:13:"scroll-effect";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"scrolleffect/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"scrolleffect/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"scrolleffect/slide3.jpg";}}s:12:"content-zoom";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"contentzoom/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"contentzoom/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"contentzoom/slide3.jpg";}}s:13:"food-carousel";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"foodcarousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"foodcarousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"foodcarousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:23:"foodcarousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:23:"foodcarousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:23:"foodcarousel/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:23:"foodcarousel/slide7.jpg";}}s:14:"rotating-words";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"rotatingwords/slide1.jpg";}}s:22:"travel-static-captions";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"travel-static-captions/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"travel-static-captions/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"travel-static-captions/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:33:"travel-static-captions/slide4.jpg";}}s:7:"concept";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"concept/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"concept/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"concept/slide3.jpg";}}s:17:"fullscreen-button";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"fullscreen-button/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"fullscreen-button/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"fullscreen-button/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:28:"fullscreen-button/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:28:"fullscreen-button/slide5.jpg";}}s:15:"creativefreedom";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"creativefreedom/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"creativefreedom/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"creativefreedom/slide3.jpg";}}s:13:"parallaxscene";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"parallaxscene/slide1.jpg";}}s:15:"slidingoverlays";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"slidingoverlays/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"slidingoverlays/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"slidingoverlays/slide3.jpg";}}s:25:"web-product-light-hero-3d";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"web-product-light-hero-3d/slide1.jpg";}}s:6:"woobig";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:17:"woobig/slide1.jpg";}}s:16:"woocommercesmall";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"woocommercesmall/slide1.jpg";}}s:10:"finedining";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"finedining/slide1.jpg";}}s:12:"agency-intro";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"agency-intro/slide1.jpg";}}s:7:"ourteam";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"ourteam/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"ourteam/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"ourteam/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:18:"ourteam/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:18:"ourteam/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:18:"ourteam/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:18:"ourteam/slide7.jpg";}}s:17:"our-team-carousel";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"ourteamcarousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"ourteamcarousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"ourteamcarousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"ourteamcarousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:26:"ourteamcarousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:26:"ourteamcarousel/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:26:"ourteamcarousel/slide7.jpg";}}s:13:"betteryoutube";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"betteryoutube/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"betteryoutube/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"betteryoutube/slide3.jpg";}}s:19:"agencywebsiteheader";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"agencywebsiteheader/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"agencywebsiteheader/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"agencywebsiteheader/slide3.jpg";}}s:10:"comingsoon";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"comingsoon/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:21:"comingsoon/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:21:"comingsoon/slide3.jpg";}}s:9:"snowscene";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"snowscene/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:20:"snowscene/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:20:"snowscene/slide3.jpg";}}s:8:"rockband";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:19:"rockband/slide1.jpg";}}s:16:"sleeklandingpage";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"sleeklandingpage/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"sleeklandingpage/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"sleeklandingpage/slide3.jpg";}}s:14:"applandingpage";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"applandingpage/slide1.jpg";}}s:9:"deskscene";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"deskscene/slide1.jpg";}}s:15:"cleannewsslider";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"cleannewsslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"cleannewsslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"cleannewsslider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"cleannewsslider/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:26:"cleannewsslider/slide5.jpg";}}s:12:"imagegallery";a:8:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"imagegallery/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"imagegallery/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"imagegallery/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:23:"imagegallery/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:23:"imagegallery/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:23:"imagegallery/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:23:"imagegallery/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:23:"imagegallery/slide8.jpg";}}s:19:"standard-wp-gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"standard-wp-gallery/slide1.jpg";}}s:21:"clean-news-post-based";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"clean-news-post-based/slide1.jpg";}}s:21:"interactivewhiteboard";a:8:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"interactivewhiteboard/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"interactivewhiteboard/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"interactivewhiteboard/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"interactivewhiteboard/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:32:"interactivewhiteboard/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:32:"interactivewhiteboard/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:32:"interactivewhiteboard/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:32:"interactivewhiteboard/slide8.jpg";}}s:10:"innovation";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"innovation/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:21:"innovation/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:21:"innovation/slide3.jpg";}}s:24:"dark-fullsite-block-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"dark-fullsite-block-menu/slide1.jpg";}}s:21:"dark-fullsite-block-1";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"dark-fullsite-block-1/slide1.jpg";}}s:27:"dark-fullsite-block-2-about";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"dark-fullsite-block-2-about/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"dark-fullsite-block-2-about/slide2.jpg";}}s:30:"dark-fullsite-block-3-services";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:41:"dark-fullsite-block-3-services/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:41:"dark-fullsite-block-3-services/slide2.jpg";}}s:30:"dark-fullsite-block-4-products";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:41:"dark-fullsite-block-4-products/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:41:"dark-fullsite-block-4-products/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:41:"dark-fullsite-block-4-products/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:41:"dark-fullsite-block-4-products/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:41:"dark-fullsite-block-4-products/slide5.jpg";}}s:34:"dark-fullsite-block-5-testimonials";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:45:"dark-fullsite-block-5-testimonials/slide1.jpg";}}s:29:"dark-fullsite-block-6-callout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:40:"dark-fullsite-block-6-callout/slide1.jpg";}}s:28:"dark-fullsite-block-7-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:39:"dark-fullsite-block-7-footer/slide1.jpg";}}s:19:"fullsite-block-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"fullsite-block-menu/slide1.jpg";}}s:15:"fullsite-block1";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"fullsite-block1/slide1.jpg";}}s:22:"fullsite-block-2-about";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"fullsite-block-2-about/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"fullsite-block-2-about/slide2.jpg";}}s:25:"fullsite-block-3-services";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"fullsite-block-3-services/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:36:"fullsite-block-3-services/slide2.jpg";}}s:25:"fullsite-block-4-products";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"fullsite-block-4-products/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:36:"fullsite-block-4-products/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:36:"fullsite-block-4-products/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:36:"fullsite-block-4-products/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:36:"fullsite-block-4-products/slide5.jpg";}}s:29:"fullsite-block-5-testimonials";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:40:"fullsite-block-5-testimonials/slide1.jpg";}}s:24:"fullsite-block-6-callout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"fullsite-block-6-callout/slide1.jpg";}}s:23:"fullsite-block-7-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"fullsite-block-7-footer/slide1.jpg";}}s:11:"techjournal";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"techjournal/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"techjournal/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"techjournal/slide3.jpg";}}s:13:"cardealership";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"cardealership/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"cardealership/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"cardealership/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:24:"cardealership/slide4.jpg";}}s:14:"fullscreenmenu";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"fullscreenmenu/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"fullscreenmenu/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"fullscreenmenu/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:25:"fullscreenmenu/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:25:"fullscreenmenu/slide5.jpg";}}s:17:"creativefrontpage";a:8:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"creativefrontpage/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"creativefrontpage/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"creativefrontpage/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:28:"creativefrontpage/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:28:"creativefrontpage/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:28:"creativefrontpage/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:28:"creativefrontpage/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:28:"creativefrontpage/slide8.jpg";}}s:19:"websitebuilder-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"websitebuilder-menu/slide1.jpg";}}s:19:"websitebuilder-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"websitebuilder-hero/slide1.jpg";}}s:22:"websitebuilder-clients";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"websitebuilder-clients/slide1.jpg";}}s:23:"websitebuilder-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"websitebuilder-services/slide1.jpg";}}s:23:"websitebuilder-discover";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"websitebuilder-discover/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:34:"websitebuilder-discover/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:34:"websitebuilder-discover/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:34:"websitebuilder-discover/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:34:"websitebuilder-discover/slide5.jpg";}}s:21:"websitebuilder-slider";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"websitebuilder-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"websitebuilder-slider/slide2.jpg";}}s:27:"websitebuilder-calltoaction";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"websitebuilder-calltoaction/slide1.jpg";}}s:21:"websitebuilder-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"websitebuilder-footer/slide1.jpg";}}s:13:"focusparallax";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"focusparallax/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"focusparallax/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"focusparallax/slide3.jpg";}}s:7:"duotone";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"duotone/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"duotone/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"duotone/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:18:"duotone/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:18:"duotone/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:18:"duotone/slide6.jpg";}}s:6:"r_menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:17:"r_menu/slide1.jpg";}}s:5:"rhero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:17:"r_hero/slide1.jpg";}}s:7:"r_about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"r_about/slide1.jpg";}}s:10:"r_products";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"r_products/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:21:"r_products/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:21:"r_products/slide3.jpg";}}s:6:"r_info";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:17:"r_info/slide1.jpg";}}s:17:"inspirationheader";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"inspirationheader/slide1.jpg";}}s:13:"magazineposts";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"magazineposts/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"magazineposts/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"magazineposts/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:24:"magazineposts/slide4.jpg";}}s:17:"explorationheader";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"explorationheader/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"explorationheader/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"explorationheader/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:28:"explorationheader/slide4.jpg";}}s:16:"typewritereffect";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"typewritereffect/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"typewritereffect/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"typewritereffect/slide3.jpg";}}s:15:"blendmodeheader";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"blendmodeheader/slide1.jpg";}}s:17:"themeplicity_menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"themeplicity_menu/slide1.jpg";}}s:19:"themeplicity_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"themeplicity_header/slide1.jpg";}}s:18:"themeplicity_offer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"themeplicity_offer/slide1.jpg";}}s:21:"themeplicity_whatwedo";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"themeplicity_whatwedo/slide1.jpg";}}s:21:"themeplicity_projects";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"themeplicity_projects/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"themeplicity_projects/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"themeplicity_projects/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"themeplicity_projects/slide4.jpg";}i:4;a:2:{s:5:"title";s:32:"themeplicity_projects/slide5.jpg";s:3:"img";s:7:"Slide 5";}}s:23:"themeplicity_whatsgreat";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"themeplicity_whatsgreat/slide1.jpg";}}s:19:"themeplicity_tables";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"themeplicity_tables/slide1.jpg";}}s:24:"themeplicity_contactform";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"themeplicity_contactform/slide1.jpg";}}s:19:"themeplicity_footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"themeplicity_footer/slide1.jpg";}}s:17:"NiceAndClean_Menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"NiceAndClean_Menu/slide1.jpg";}}s:19:"NiceAndClean_Header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"NiceAndClean_Header/slide1.jpg";}}s:21:"NiceAndClean_Services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"NiceAndClean_Services/slide1.jpg";}}s:18:"NiceAndClean_About";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"NiceAndClean_About/slide1.jpg";}}s:18:"niceandclean_video";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"niceandclean_video/slide1.jpg";}}s:23:"niceandclean_highlights";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"niceandclean_highlights/slide1.jpg";}}s:21:"NiceAndClean_Projects";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"NiceAndClean_Projects/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"NiceAndClean_Projects/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"NiceAndClean_Projects/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"NiceAndClean_Projects/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:32:"NiceAndClean_Projects/slide5.jpg";}}s:23:"niceandclean_textblocks";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"niceandclean_textblocks/slide1.jpg";}}s:20:"niceandclean_callout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"niceandclean_callout/slide1.jpg";}}s:19:"niceandclean_footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"niceandclean_footer/slide1.jpg";}}s:3:"80s";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:14:"80s/slide1.jpg";}}s:10:"blurslider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"blurslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:21:"blurslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:21:"blurslider/slide3.jpg";}}s:15:"ComingSoonAddon";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"ComingSoonAddon/slide1.jpg";}}s:9:"snowaddon";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"snowaddon/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:20:"snowaddon/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:20:"snowaddon/slide3.jpg";}}s:19:"particle-effect-one";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"particle-effect-one/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"particle-effect-one/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"particle-effect-one/slide3.jpg";}}s:19:"particle-effect-two";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"particle-effect-two/slide1.jpg";}}s:21:"particle-effect-three";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"particle-effect-three/slide1.jpg";}}s:15:"portfolioviewer";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"portfolioviewer/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"portfolioviewer/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"portfolioviewer/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"portfolioviewer/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:26:"portfolioviewer/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:26:"portfolioviewer/slide6.jpg";}}s:11:"appshowcase";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"appshowcase/slide1.jpg";}}s:13:"gravitydesign";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"gravitydesign/slide1.jpg";}}s:12:"404errorpage";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"404errorpage/slide1.jpg";}}s:15:"carouselgallery";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"carouselgallery/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"carouselgallery/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"carouselgallery/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"carouselgallery/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:26:"carouselgallery/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:26:"carouselgallery/slide6.jpg";}}s:9:"filmstrip";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"filmstrip/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:20:"filmstrip/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:20:"filmstrip/slide3.jpg";}}s:10:"spaceopera";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"spaceopera/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:21:"spaceopera/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:21:"spaceopera/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:21:"spaceopera/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:21:"spaceopera/slide5.jpg";}}s:12:"websiteintro";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"websiteintro/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"websiteintro/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"websiteintro/slide3.jpg";}}s:12:"maskshowcase";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"maskshowcase/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"maskshowcase/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"maskshowcase/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:23:"maskshowcase/slide4.jpg";}}s:18:"parallaxzoomslices";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"parallaxzoomslices/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"parallaxzoomslices/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"parallaxzoomslices/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"parallaxzoomslices/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:29:"parallaxzoomslices/slide5.jpg";}}s:20:"doubleexposureeffect";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"doubleexposureeffect/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"doubleexposureeffect/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:31:"doubleexposureeffect/slide3.jpg";}}s:22:"mountainparallaxheader";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"mountainparallaxheader/slide1.jpg";}}s:12:"goodnewsmenu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"goodnewsmenu/slide1.jpg";}}s:14:"goodnewsheader";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"goodnewsheader/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"goodnewsheader/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"goodnewsheader/slide3.jpg";}}s:16:"goodnewswhatshot";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"goodnewswhatshot/slide1.jpg";}}s:16:"goodnewsfeatured";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"goodnewsfeatured/slide1.jpg";}}s:17:"goodnewsspotlight";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"goodnewsspotlight/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"goodnewsspotlight/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"goodnewsspotlight/slide3.jpg";}}s:16:"goodnewscarousel";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"goodnewscarousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"goodnewscarousel/slide2.jpg";}}s:15:"goodnewscallout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"goodnewscallout/slide1.jpg";}}s:14:"goodnewsfooter";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"goodnewsfooter/slide1.jpg";}}s:16:"goodnewsmenuback";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"goodnewsmenuback/slide1.jpg";}}s:18:"goodnewsblogheader";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"goodnewsblogheader/slide1.jpg";}}s:19:"goodnewsblogcontent";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"goodnewsblogcontent/slide1.jpg";}}s:20:"goodnewstestimonials";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"goodnewstestimonials/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"goodnewstestimonials/slide2.jpg";}}s:18:"goodnewsblogfooter";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"goodnewsblogfooter/slide1.jpg";}}s:17:"beforeafterslider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"beforeafterslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"beforeafterslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"beforeafterslider/slide3.jpg";}}s:15:"productshowcase";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"productshowcase/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"productshowcase/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"productshowcase/slide3.jpg";}}s:22:"overexposuretransition";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"overexposuretransition/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"overexposuretransition/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"overexposuretransition/slide3.jpg";}}s:14:"parallaxscroll";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"parallaxscroll/slide1.jpg";}}s:11:"techco-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"techco-menu/slide1.jpg";}}s:13:"techco-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"techco-header/slide1.jpg";}}s:12:"techco-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"techco-about/slide1.jpg";}}s:15:"techco-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"techco-services/slide1.jpg";}}s:12:"techco-video";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"techco-video/slide1.jpg";}}s:13:"techco-prices";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"techco-prices/slide1.jpg";}}s:19:"techco-testimonials";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"techco-testimonials/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"techco-testimonials/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"techco-testimonials/slide3.jpg";}}s:13:"techco-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"techco-footer/slide1.jpg";}}s:7:"weather";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"weather/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"weather/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"weather/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:18:"weather/slide4.jpg";}}s:11:"360panorama";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"360panorama/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"360panorama/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"360panorama/slide3.jpg";}}s:14:"duotone-add-on";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"duotone-add-on/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"duotone-add-on/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"duotone-add-on/slide3.jpg";}}s:13:"reveal-add-on";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"reveal-add-on/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"reveal-add-on/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"reveal-add-on/slide3.jpg";}}s:16:"band-tour-poster";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:40:"smartcontent/band-tour-poster/slide1.png";}}s:14:"brewery-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"smartcontent/brewery-slider/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"smartcontent/brewery-slider/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:38:"smartcontent/brewery-slider/slide3.png";}}s:9:"burgerbar";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"smartcontent/burgerbar/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"smartcontent/burgerbar/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"smartcontent/burgerbar/slide3.png";}}s:19:"burger-bar-portrait";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:43:"smartcontent/burger-bar-portrait/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:43:"smartcontent/burger-bar-portrait/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:43:"smartcontent/burger-bar-portrait/slide3.png";}}s:8:"car-rent";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"smartcontent/car-rent/slide1.png";}}s:6:"coffee";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"smartcontent/coffee/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"smartcontent/coffee/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"smartcontent/coffee/slide3.png";}}s:14:"holiday-advert";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"smartcontent/holiday-advert/slide1.png";}}s:18:"iphone-cases-light";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:42:"smartcontent/iphone-cases-light/slide1.png";}}s:7:"medical";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"smartcontent/medical/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"smartcontent/medical/slide2.png";}}s:13:"mexican-grill";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:37:"smartcontent/mexican-grill/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:37:"smartcontent/mexican-grill/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:37:"smartcontent/mexican-grill/slide3.png";}}s:20:"mobile-retail-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:44:"smartcontent/mobile-retail-slider/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:44:"smartcontent/mobile-retail-slider/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:44:"smartcontent/mobile-retail-slider/slide3.png";}}s:14:"money-exchange";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"smartcontent/money-exchange/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"smartcontent/money-exchange/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:38:"smartcontent/money-exchange/slide3.png";}}s:28:"restaurant-menu-first-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:52:"smartcontent/restaurant-menu-first-screen/slide1.png";}}s:29:"restaurant-menu-second-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:53:"smartcontent/restaurant-menu-second-screen/slide1.png";}}s:28:"restaurant-menu-third-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:52:"smartcontent/restaurant-menu-third-screen/slide1.png";}}s:11:"shoes-store";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"smartcontent/shoes-store/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:35:"smartcontent/shoes-store/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:35:"smartcontent/shoes-store/slide3.png";}}s:20:"supermarket-products";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:44:"smartcontent/supermarket-products/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:44:"smartcontent/supermarket-products/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:44:"smartcontent/supermarket-products/slide3.png";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:44:"smartcontent/supermarket-products/slide4.png";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:44:"smartcontent/supermarket-products/slide5.png";}}s:16:"travel-insurance";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:40:"smartcontent/travel-insurance/slide1.png";}}s:12:"cryptoslider";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"cryptoslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"cryptoslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"cryptoslider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:23:"cryptoslider/slide4.jpg";}}s:16:"immersion_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"immersion_header/slide1.jpg";}}s:19:"immersion-mountains";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"immersion-mountains/slide1.jpg";}}s:17:"immersion-product";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"immersion-product/slide1.jpg";}}s:16:"immersion-design";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"immersion-design/slide1.jpg";}}s:21:"immersion-photography";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"immersion-photography/slide1.jpg";}}s:14:"immersion-grid";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"immersion-grid/slide1.jpg";}}s:11:"funkyslider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"funkyslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"funkyslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"funkyslider/slide3.jpg";}}s:14:"clearview_menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"clearview_menu/slide1.jpg";}}s:16:"clearview_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"clearview_header/slide1.jpg";}}s:17:"clearview_mission";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"clearview_mission/slide1.jpg";}}s:17:"clear-view-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"clear-view-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"clear-view-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"clear-view-slider/slide3.jpg";}}s:15:"clear-view-news";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"clear-view-news/slide1.jpg";}}s:18:"clear-view-clients";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"clear-view-clients/slide1.jpg";}}s:18:"clear-view-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"clear-view-contact/slide1.jpg";}}s:22:"clear-view-single-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"clear-view-single-menu/slide1.jpg";}}s:24:"clear-view-single-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"clear-view-single-header/slide1.jpg";}}s:23:"clear-view-single-media";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"clear-view-single-media/slide1.jpg";}}s:22:"clear-view-single-more";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"clear-view-single-more/slide1.jpg";}}s:25:"clear-view-single-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"clear-view-single-contact/slide1.jpg";}}s:16:"cleanlandingpage";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"cleanlandingpage/slide1.jpg";}}s:8:"clearcut";a:10:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:19:"clearcut/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:19:"clearcut/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:19:"clearcut/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:19:"clearcut/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:19:"clearcut/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:19:"clearcut/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:19:"clearcut/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:19:"clearcut/slide8.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:19:"clearcut/slide9.jpg";}i:9;a:2:{s:5:"title";s:8:"Slide 10";s:3:"img";s:20:"clearcut/slide10.jpg";}}s:17:"wonderstruck_menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"wonderstruck_menu/slide1.jpg";}}s:19:"wonderstruck_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"wonderstruck_header/slide1.jpg";}}s:18:"wonderstruck_about";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"wonderstruck_about/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"wonderstruck_about/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"wonderstruck_about/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"wonderstruck_about/slide4.jpg";}}s:18:"wonderstruck-works";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"wonderstruck-works/slide1.jpg";}}s:20:"wonderstruck-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"wonderstruck-contact/slide1.jpg";}}s:11:"bubblemorph";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"bubblemorph/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"bubblemorph/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"bubblemorph/slide3.jpg";}}s:15:"distortionaddon";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"distortionaddon/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"distortionaddon/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"distortionaddon/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"distortionaddon/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:26:"distortionaddon/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:26:"distortionaddon/slide6.jpg";}}s:9:"clubflyer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"clubflyer/slide1.jpg";}}s:15:"paintbrushaddon";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"paintbrushaddon/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"paintbrushaddon/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"paintbrushaddon/slide3.jpg";}}s:15:"parallax_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"parallax_header/slide1.jpg";}}s:16:"parallax_content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"parallax_content/slide1.jpg";}}s:15:"parallax_footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"parallax_footer/slide1.jpg";}}s:12:"le-chef-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"le-chef-menu/slide1.jpg";}}s:14:"le-chef-header";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"le-chef-header/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"le-chef-header/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"le-chef-header/slide3.jpg";}}s:18:"le-chef-philosophy";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"le-chef-philosophy/slide1.jpg";}}s:12:"le-chef-food";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"le-chef-food/slide1.jpg";}}s:16:"le-chef-la-carte";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"le-chef-la-carte/slide1.jpg";}}s:14:"le-chef-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"le-chef-footer/slide1.jpg";}}s:20:"news-magazine-slider";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"news-magazine-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"news-magazine-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:31:"news-magazine-slider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:31:"news-magazine-slider/slide4.jpg";}}s:18:"real-estate-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"real-estate-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"real-estate-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"real-estate-slider/slide3.jpg";}}s:14:"fashion-header";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"fashion-header/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"fashion-header/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"fashion-header/slide3.jpg";}}s:13:"seasonaloffer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"seasonaloffer/slide1.jpg";}}s:18:"barber-shop-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"barber-shop-header/slide1.jpg";}}s:23:"barber-shop-mobile-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"barber-shop-mobile-menu/slide1.jpg";}}s:24:"barber-shop-first-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"barber-shop-first-screen/slide1.jpg";}}s:17:"barber-shop-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"barber-shop-about/slide1.jpg";}}s:20:"barber-shop-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"barber-shop-services/slide1.jpg";}}s:19:"barber-shop-barbers";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"barber-shop-barbers/slide1.jpg";}}s:20:"barber-shop-contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"barber-shop-contacts/slide1.jpg";}}s:18:"barber-shop-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"barber-shop-footer/slide1.jpg";}}s:21:"fitness-club-template";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"fitness-club-template/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"fitness-club-template/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"fitness-club-template/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"fitness-club-template/slide4.jpg";}}s:13:"soccer-school";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"soccer-school/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"soccer-school/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"soccer-school/slide3.jpg";}}s:19:"music-band-template";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"music-band-template/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"music-band-template/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"music-band-template/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:30:"music-band-template/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:30:"music-band-template/slide5.jpg";}}s:15:"restaurant-menu";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"restaurant-menu/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"restaurant-menu/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"restaurant-menu/slide3.jpg";}}s:16:"cinematic-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"cinematic-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"cinematic-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"cinematic-slider/slide3.jpg";}}s:17:"3d-parallax-cubes";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"3d-parallax-cubes/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"3d-parallax-cubes/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"3d-parallax-cubes/slide3.jpg";}}s:13:"medicare-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"medicare-menu/slide1.jpg";}}s:15:"medicare-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"medicare-header/slide1.jpg";}}s:14:"medicare-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"medicare-about/slide1.jpg";}}s:18:"medicare-highlight";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"medicare-highlight/slide1.jpg";}}s:17:"medicare-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"medicare-services/slide1.jpg";}}s:16:"medicare-doctors";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"medicare-doctors/slide1.jpg";}}s:17:"medicare-research";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"medicare-research/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"medicare-research/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"medicare-research/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:28:"medicare-research/slide4.jpg";}}s:18:"medicare-whychoose";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"medicare-whychoose/slide1.jpg";}}s:16:"medicare-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"medicare-contact/slide1.jpg";}}s:15:"medicare-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"medicare-footer/slide1.jpg";}}s:11:"coffee-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"coffee-menu/slide1.jpg";}}s:13:"coffee-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"coffee-header/slide1.jpg";}}s:17:"coffee-philosophy";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"coffee-philosophy/slide1.jpg";}}s:12:"coffee-carte";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"coffee-carte/slide1.jpg";}}s:13:"coffee-teaser";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"coffee-teaser/slide1.jpg";}}s:13:"coffee-findus";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"coffee-findus/slide1.jpg";}}s:13:"coffee-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"coffee-footer/slide1.jpg";}}s:17:"minimal-portfolio";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"minimal-portfolio/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"minimal-portfolio/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"minimal-portfolio/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:28:"minimal-portfolio/slide4.jpg";}}s:23:"minimal-portfolio-modal";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"minimal-portfolio-modal/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:34:"minimal-portfolio-modal/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:34:"minimal-portfolio-modal/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:34:"minimal-portfolio-modal/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:34:"minimal-portfolio-modal/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:34:"minimal-portfolio-modal/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:34:"minimal-portfolio-modal/slide7.jpg";}}s:11:"angled-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"angled-menu/slide1.jpg";}}s:13:"angled-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"angled-header/slide1.jpg";}}s:11:"angled-news";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"angled-news/slide1.jpg";}}s:15:"angled-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"angled-services/slide1.jpg";}}s:14:"angled-success";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"angled-success/slide1.jpg";}}s:13:"angled-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"angled-footer/slide1.jpg";}}s:20:"angled-content-modal";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"angled-content-modal/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"angled-content-modal/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:31:"angled-content-modal/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:31:"angled-content-modal/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:31:"angled-content-modal/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:31:"angled-content-modal/slide6.jpg";}}s:13:"big-bold-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"big-bold-menu/slide1.jpg";}}s:15:"big-bold-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"big-bold-header/slide1.jpg";}}s:16:"big-bold-content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"big-bold-content/slide1.jpg";}}s:13:"big-bold-blog";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"big-bold-blog/slide1.jpg";}}s:18:"big-bold-highlight";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"big-bold-highlight/slide1.jpg";}}s:15:"big-bold-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"big-bold-footer/slide1.jpg";}}s:7:"Retouch";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"Retouch/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"Retouch/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"Retouch/slide3.jpg";}}s:11:"tech-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"tech-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"tech-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"tech-slider/slide3.jpg";}}s:11:"peak-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"peak-header/slide1.jpg";}}s:10:"peak-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"peak-about/slide1.jpg";}}s:14:"peak-portfolio";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"peak-portfolio/slide1.jpg";}}s:11:"peak-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"peak-footer/slide1.jpg";}}s:17:"portfolio-welcome";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"portfolio-welcome/slide1.jpg";}}s:15:"portfolio-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"portfolio-about/slide1.jpg";}}s:21:"portfolio-works-title";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"portfolio-works-title/slide1.jpg";}}s:23:"portfolio-works-content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"portfolio-works-content/slide1.jpg";}}s:18:"portfolio-contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"portfolio-contacts/slide1.jpg";}}s:18:"App-Studio-Welcome";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"App-Studio-Welcome/slide1.jpg";}}s:19:"App-Studio-Services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"App-Studio-Services/slide1.jpg";}}s:16:"App-Studio-About";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"App-Studio-About/slide1.jpg";}}s:19:"App-Studio-Contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"App-Studio-Contacts/slide1.jpg";}}s:14:"cube-animation";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"cube-animation/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"cube-animation/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"cube-animation/slide3.jpg";}}s:10:"basic-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"basic-menu/slide1.jpg";}}s:12:"basic-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"basic-header/slide1.jpg";}}s:13:"basic-content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"basic-content/slide1.jpg";}}s:14:"basic-carousel";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"basic-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"basic-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"basic-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:25:"basic-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:25:"basic-carousel/slide5.jpg";}}s:13:"basic-callout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"basic-callout/slide1.jpg";}}s:10:"basic-grid";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"basic-grid/slide1.jpg";}}s:17:"basic-video-block";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"basic-video-block/slide1.jpg";}}s:12:"basic-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"basic-footer/slide1.jpg";}}s:14:"basic-lightbox";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"basic-lightbox/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"basic-lightbox/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"basic-lightbox/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:25:"basic-lightbox/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:25:"basic-lightbox/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:25:"basic-lightbox/slide6.jpg";}}s:13:"nature-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"nature-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"nature-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"nature-slider/slide3.jpg";}}s:11:"art-gallery";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"art-gallery/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"art-gallery/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"art-gallery/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:22:"art-gallery/slide4.jpg";}}s:19:"Construction-Header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"Construction-Header/slide1.jpg";}}s:17:"Construction-Home";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"Construction-Home/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"Construction-Home/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"Construction-Home/slide3.jpg";}}s:21:"Construction-Projects";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"Construction-Projects/slide1.jpg";}}s:20:"Construction-History";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"Construction-History/slide1.jpg";}}s:21:"Construction-Services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"Construction-Services/slide1.jpg";}}s:21:"Construction-Contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"Construction-Contacts/slide1.jpg";}}s:21:"404-Error-Space-Theme";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"404-Error-Space-Theme/slide1.jpg";}}s:17:"landing-page-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"landing-page-hero/slide1.jpg";}}s:21:"landing-page-features";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"landing-page-features/slide1.jpg";}}s:20:"landing-page-callout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"landing-page-callout/slide1.jpg";}}s:20:"landing-page-content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"landing-page-content/slide1.jpg";}}s:25:"landing-page-testimonials";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"landing-page-testimonials/slide1.jpg";}}s:27:"landing-page-call-to-action";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"landing-page-call-to-action/slide1.jpg";}}s:17:"landing-page-help";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"landing-page-help/slide1.jpg";}}s:19:"landing-page-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"landing-page-footer/slide1.jpg";}}s:24:"landing-page-price-modal";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"landing-page-price-modal/slide1.jpg";}}s:18:"energy-drinks-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"energy-drinks-hero/slide1.jpg";}}s:19:"energy-drinks-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"energy-drinks-about/slide1.jpg";}}s:21:"energy-drinks-product";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"energy-drinks-product/slide1.jpg";}}s:23:"energy-drinks-product-2";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"energy-drinks-product-2/slide1.jpg";}}s:23:"energy-drinks-product-3";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"energy-drinks-product-3/slide1.jpg";}}s:19:"energy-drinks-order";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"energy-drinks-order/slide1.jpg";}}s:20:"energy-drinks-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"energy-drinks-footer/slide1.jpg";}}s:19:"energy-drinks-modal";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"energy-drinks-modal/slide1.jpg";}}s:16:"Corporate-Header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"Corporate-Header/slide1.jpg";}}s:24:"Corporate-Welcome-Screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"Corporate-Welcome-Screen/slide1.jpg";}}s:15:"Corporate-About";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"Corporate-About/slide1.jpg";}}s:19:"Corporate-Portfolio";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"Corporate-Portfolio/slide1.jpg";}}s:15:"Corporate-Chart";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"Corporate-Chart/slide1.jpg";}}s:14:"Corporate-News";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"Corporate-News/slide1.jpg";}}s:16:"Corporate-Hiring";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"Corporate-News/slide1.jpg";}}s:22:"Corporate-Testimonials";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"Corporate-Testimonials/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"Corporate-Testimonials/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"Corporate-Testimonials/slide3.jpg";}}s:15:"Corporate-Store";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"Corporate-Store/slide1.jpg";}}s:17:"Corporate-Support";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"Corporate-Support/slide1.jpg";}}s:14:"Corporate-Team";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"Corporate-Team/slide1.jpg";}}s:33:"Corporate-Selected-Projects-Title";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:44:"Corporate-Selected-Projects-Title/slide1.jpg";}}s:27:"Corporate-Selected-Projects";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"Corporate-Selected-Projects/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"Corporate-Selected-Projects/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:38:"Corporate-Selected-Projects/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:38:"Corporate-Selected-Projects/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:38:"Corporate-Selected-Projects/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:38:"Corporate-Selected-Projects/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:38:"Corporate-Selected-Projects/slide7.jpg";}}s:17:"Corporate-Clients";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"Corporate-Clients/slide1.jpg";}}s:20:"Corporate-Text-Block";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"Corporate-Text-Block/slide1.jpg";}}s:20:"Corporate-Mobile-App";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"Corporate-Mobile-App/slide1.jpg";}}s:18:"Corporate-Contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"Corporate-Contacts/slide1.jpg";}}s:16:"Corporate-Footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"Corporate-Footer/slide1.jpg";}}s:23:"Corporate-Scroll-To-Top";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"Corporate-Scroll-To-Top/slide1.jpg";}}s:14:"geometric-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"geometric-menu/slide1.jpg";}}s:14:"geometric-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"geometric-hero/slide1.jpg";}}s:14:"geometric-grid";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"geometric-grid/slide1.jpg";}}s:15:"geometric-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"geometric-about/slide1.jpg";}}s:15:"geometric-texts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"geometric-texts/slide1.jpg";}}s:18:"geometric-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"geometric-services/slide1.jpg";}}s:17:"geometric-texts-2";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"geometric-texts-2/slide1.jpg";}}s:22:"geometric-testimonials";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"geometric-testimonials/slide1.jpg";}}s:16:"geometric-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"geometric-footer/slide1.jpg";}}s:18:"geometric-lightbox";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"geometric-lightbox/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"geometric-lightbox/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"geometric-lightbox/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"geometric-lightbox/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:29:"geometric-lightbox/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:29:"geometric-lightbox/slide6.jpg";}}s:11:"brutal-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"brutal-menu/slide1.jpg";}}s:11:"brutal-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"brutal-hero/slide1.jpg";}}s:12:"brutal-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"brutal-about/slide1.jpg";}}s:16:"brutal-highlight";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"brutal-highlight/slide1.jpg";}}s:15:"brutal-projects";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"brutal-projects/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"brutal-projects/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"brutal-projects/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"brutal-projects/slide4.jpg";}}s:15:"brutal-services";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"brutal-services/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"brutal-services/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"brutal-services/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"brutal-services/slide4.jpg";}}s:14:"brutal-callout";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"brutal-callout/slide1.jpg";}}s:13:"brutal-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"brutal-footer/slide1.jpg";}}s:13:"Church-Header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"Church-Header/slide1.jpg";}}s:22:"Church-Upcoming-Events";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"Church-Upcoming-Events/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"Church-Upcoming-Events/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"Church-Upcoming-Events/slide3.jpg";}}s:12:"Church-About";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"Church-About/slide1.jpg";}}s:14:"Church-Pastors";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"Church-Pastors/slide1.jpg";}}s:20:"Church-Photo-Gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"Church-Photo-Gallery/slide1.jpg";}}s:16:"Church-Community";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"Church-Community/slide1.jpg";}}s:13:"Church-Sermon";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"Church-Sermon/slide1.jpg";}}s:15:"Church-Contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"Church-Contacts/slide1.jpg";}}s:13:"Church-Footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"Church-Footer/slide1.jpg";}}s:19:"Church-Light-Header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"Church-Light-Header/slide1.jpg";}}s:28:"Church-Light-Upcoming-Events";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:39:"Church-Light-Upcoming-Events/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:39:"Church-Light-Upcoming-Events/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:39:"Church-Light-Upcoming-Events/slide3.jpg";}}s:18:"Church-Light-About";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"Church-Light-About/slide1.jpg";}}s:20:"Church-Light-Pastors";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"Church-Light-Pastors/slide1.jpg";}}s:26:"Church-Light-Photo-Gallery";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:37:"Church-Light-Photo-Gallery/slide1.jpg";}}s:22:"Church-Light-Community";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"Church-Light-Community/slide1.jpg";}}s:19:"Church-Light-Sermon";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"Church-Light-Sermon/slide1.jpg";}}s:21:"Church-Light-Contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"Church-Light-Contacts/slide1.jpg";}}s:19:"Church-Light-Footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"Church-Light-Footer/slide1.jpg";}}s:13:"rockable-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"rockable-menu/slide1.jpg";}}s:13:"rockable-hero";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"rockable-hero/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"rockable-hero/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"rockable-hero/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:24:"rockable-hero/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:24:"rockable-hero/slide5.jpg";}}s:15:"rockable-lineup";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"rockable-lineup/slide1.jpg";}}s:17:"rockable-lineup-2";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"rockable-lineup-2/slide1.jpg";}}s:22:"rockable-gallery-title";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"rockable-gallery-title/slide1.jpg";}}s:16:"rockable-gallery";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"rockable-gallery/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"rockable-gallery/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"rockable-gallery/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:27:"rockable-gallery/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:27:"rockable-gallery/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:27:"rockable-gallery/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:27:"rockable-gallery/slide7.jpg";}}s:17:"rockable-sponsors";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"rockable-sponsors/slide1.jpg";}}s:15:"rockable-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"rockable-footer/slide1.jpg";}}s:21:"rockable-detail-modal";a:18:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:9;a:2:{s:5:"title";s:8:"Slide 10";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:10;a:2:{s:5:"title";s:8:"Slide 11";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:11;a:2:{s:5:"title";s:8:"Slide 12";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:12;a:2:{s:5:"title";s:8:"Slide 13";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:13;a:2:{s:5:"title";s:8:"Slide 14";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:14;a:2:{s:5:"title";s:8:"Slide 15";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:15;a:2:{s:5:"title";s:8:"Slide 16";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:16;a:2:{s:5:"title";s:8:"Slide 17";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}i:17;a:2:{s:5:"title";s:8:"Slide 18";s:3:"img";s:32:"rockable-detail-modal/slide1.jpg";}}s:23:"rockable-detail-modal-2";a:18:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:9;a:2:{s:5:"title";s:8:"Slide 10";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:10;a:2:{s:5:"title";s:8:"Slide 11";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:11;a:2:{s:5:"title";s:8:"Slide 12";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:12;a:2:{s:5:"title";s:8:"Slide 13";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:13;a:2:{s:5:"title";s:8:"Slide 14";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:14;a:2:{s:5:"title";s:8:"Slide 15";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:15;a:2:{s:5:"title";s:8:"Slide 16";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:16;a:2:{s:5:"title";s:8:"Slide 17";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}i:17;a:2:{s:5:"title";s:8:"Slide 18";s:3:"img";s:34:"rockable-detail-modal-2/slide1.jpg";}}s:27:"Real-Estate-Showcase-Slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"Real-Estate-Showcase-Slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"Real-Estate-Showcase-Slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:38:"Real-Estate-Showcase-Slider/slide3.jpg";}}s:16:"isometric-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"isometric-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"isometric-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"isometric-slider/slide3.jpg";}}s:17:"E-Commerce-Slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"Shoes-Store-Slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"Shoes-Store-Slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"Shoes-Store-Slider/slide3.jpg";}}s:23:"E-Commerce-Slider-Modal";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"Shoes-Store-Slider-Modal/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:35:"Shoes-Store-Slider-Modal/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:35:"Shoes-Store-Slider-Modal/slide3.jpg";}}s:27:"Woo-Commerce-Slider-Dynamic";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:37:"Shoes-Store-Slider-Dynamic/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:37:"Shoes-Store-Slider-Dynamic/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:37:"Shoes-Store-Slider-Dynamic/slide3.jpg";}}s:15:"blooming-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"blooming-header/slide1.jpg";}}s:14:"blooming-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"blooming-about/slide1.jpg";}}s:18:"blooming-portfolio";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"blooming-portfolio/slide1.jpg";}}s:22:"blooming-wedding-title";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"blooming-wedding-title/slide1.jpg";}}s:25:"blooming-wedding-carousel";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"blooming-wedding-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:36:"blooming-wedding-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:36:"blooming-wedding-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:36:"blooming-wedding-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:36:"blooming-wedding-carousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:36:"blooming-wedding-carousel/slide6.jpg";}}s:21:"blooming-wedding-text";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"blooming-wedding-text/slide1.jpg";}}s:22:"blooming-parties-title";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"blooming-parties-title/slide1.jpg";}}s:25:"blooming-parties-carousel";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"blooming-parties-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:36:"blooming-parties-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:36:"blooming-parties-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:36:"blooming-parties-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:36:"blooming-parties-carousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:36:"blooming-parties-carousel/slide6.jpg";}}s:21:"blooming-parties-text";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"blooming-parties-text/slide1.jpg";}}s:22:"blooming-funeral-title";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"blooming-funeral-title/slide1.jpg";}}s:23:"blooming-funeral-slider";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"blooming-funeral-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:34:"blooming-funeral-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:34:"blooming-funeral-slider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:34:"blooming-funeral-slider/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:34:"blooming-funeral-slider/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:34:"blooming-funeral-slider/slide6.jpg";}}s:21:"blooming-funeral-text";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"blooming-funeral-text/slide1.jpg";}}s:16:"blooming-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"blooming-contact/slide1.jpg";}}s:13:"particle-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"particle-hero/slide1.jpg";}}s:17:"bubble-morph-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"bubble-morph-hero/slide1.jpg";}}s:13:"parallax-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"parallax-hero/slide1.jpg";}}s:10:"video-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"video-hero/slide1.jpg";}}s:14:"ken-burns-hero";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"ken-burns-hero/slide1.jpg";}}s:21:"basic-hero-collection";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"basic-hero-collection/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"basic-hero-collection/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"basic-hero-collection/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"basic-hero-collection/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:32:"basic-hero-collection/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:32:"basic-hero-collection/slide6.jpg";}}s:19:"launching-very-soon";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"launching-very-soon/slide1.jpg";}}s:18:"Under-Construction";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"Under-Construction/slide1.jpg";}}s:15:"Particle-Effect";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"Particle-Effect/slide1.jpg";}}s:17:"Particle-Effect-2";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"Particle-Effect-2/slide1.jpg";}}s:10:"stark-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"stark-menu/slide1.jpg";}}s:12:"stark-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"stark-header/slide1.jpg";}}s:13:"stark-content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"stark-content/slide1.jpg";}}s:14:"stark-carousel";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"stark-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"stark-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"stark-carousel/slide3.jpg";}}s:15:"stark-portfolio";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"stark-portfolio/slide1.jpg";}}s:22:"stark-portfolio-detail";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"stark-portfolio-detail/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"stark-portfolio-detail/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"stark-portfolio-detail/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:33:"stark-portfolio-detail/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:33:"stark-portfolio-detail/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:33:"stark-portfolio-detail/slide6.jpg";}}s:13:"stark-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"stark-contact/slide1.jpg";}}s:12:"stark-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"stark-footer/slide1.jpg";}}s:16:"stark-newsletter";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"stark-newsletter/slide1.jpg";}}s:15:"big-summer-sale";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"big-summer-sale/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"big-summer-sale/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"big-summer-sale/slide3.jpg";}}s:18:"traveller-carousel";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"traveller-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"traveller-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"traveller-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"traveller-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:29:"traveller-carousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:29:"traveller-carousel/slide6.jpg";}}s:16:"project-carousel";a:7:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"project-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:27:"project-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:27:"project-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:27:"project-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:27:"project-carousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:27:"project-carousel/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:27:"project-carousel/slide7.jpg";}}s:13:"news-carousel";a:8:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"news-carousel/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"news-carousel/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"news-carousel/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:24:"news-carousel/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:24:"news-carousel/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:24:"news-carousel/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:24:"news-carousel/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:24:"news-carousel/slide8.jpg";}}s:10:"story-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:21:"story-menu/slide1.jpg";}}s:12:"story-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"story-header/slide1.jpg";}}s:13:"story-block-1";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"story-block-1/slide1.jpg";}}s:15:"story-content-1";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"story-content-1/slide1.jpg";}}s:13:"story-block-2";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"story-block-2/slide1.jpg";}}s:13:"story-block-3";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"story-block-3/slide1.jpg";}}s:15:"story-content-2";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"story-content-2/slide1.jpg";}}s:13:"story-block-4";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"story-block-4/slide1.jpg";}}s:15:"story-content-3";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"story-content-3/slide1.jpg";}}}}', 'no');
INSERT INTO `wpfp_options` VALUES
(63351, 'admin_email_lifespan', '0', 'yes'),
(76772, '_transient_timeout__woocommerce_helper_subscriptions', '1591167063', 'no'),
(76773, '_transient__woocommerce_helper_subscriptions', 'a:0:{}', 'no'),
(76639, '_transient_external_ip_address_38.135.200.159', '208.91.198.77', 'no'),
(76624, '_transient_timeout_external_ip_address_131.220.6.152', '1591618789', 'no'),
(76625, '_transient_external_ip_address_131.220.6.152', '208.91.198.77', 'no'),
(76629, '_transient_timeout_external_ip_address_216.173.66.145', '1591626254', 'no'),
(76630, '_transient_external_ip_address_216.173.66.145', '208.91.198.77', 'no'),
(76632, '_transient_timeout_external_ip_address_199.188.118.124', '1591626925', 'no'),
(76633, '_transient_external_ip_address_199.188.118.124', '208.91.198.77', 'no'),
(76635, '_transient_timeout_external_ip_address_38.128.157.43', '1591627475', 'no'),
(76636, '_transient_external_ip_address_38.128.157.43', '208.91.198.77', 'no'),
(76642, '_transient_timeout_external_ip_address_159.203.182.52', '1591631239', 'no'),
(76638, '_transient_timeout_external_ip_address_38.135.200.159', '1591627475', 'no'),
(75898, '_transient_timeout_external_ip_address_97.74.24.206', '1591208382', 'no'),
(75899, '_transient_external_ip_address_97.74.24.206', '208.91.198.77', 'no'),
(75907, '_transient_timeout_external_ip_address_182.50.130.153', '1591218709', 'no'),
(75908, '_transient_external_ip_address_182.50.130.153', '208.91.198.77', 'no'),
(75852, '_transient_timeout_external_ip_address_196.207.128.166', '1591189022', 'no'),
(75853, '_transient_external_ip_address_196.207.128.166', '208.91.198.77', 'no'),
(75945, '_transient_timeout_external_ip_address_192.71.225.127', '1591228774', 'no'),
(75946, '_transient_external_ip_address_192.71.225.127', '208.91.198.77', 'no'),
(72609, '_transient_timeout_wc_term_counts', '1591360583', 'no'),
(72610, '_transient_wc_term_counts', 'a:7:{i:69;s:1:"1";i:68;s:1:"1";i:15;s:1:"0";i:64;s:1:"1";i:65;s:1:"1";i:66;s:1:"1";i:67;s:1:"1";}', 'no'),
(76320, '_transient_timeout_external_ip_address_69.171.251.116', '1591381021', 'no'),
(76321, '_transient_external_ip_address_69.171.251.116', '208.91.198.77', 'no'),
(76323, '_transient_timeout_external_ip_address_35.247.121.198', '1591382164', 'no'),
(76324, '_transient_external_ip_address_35.247.121.198', '208.91.198.77', 'no'),
(76329, '_transient_timeout_external_ip_address_104.245.35.61', '1591388558', 'no'),
(76330, '_transient_external_ip_address_104.245.35.61', '208.91.198.77', 'no'),
(76776, '_transient_timeout__woocommerce_helper_updates', '1591209363', 'no'),
(76777, '_transient__woocommerce_helper_updates', 'a:4:{s:4:"hash";s:32:"d751713988987e9331980363e24189ce";s:7:"updated";i:1591166163;s:8:"products";a:0:{}s:6:"errors";a:1:{i:0;s:10:"http-error";}}', 'no'),
(76548, '_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd', '1591554789', 'no'),
(75182, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1591166164;s:7:"checked";a:2:{s:6:"quezal";s:5:"2.6.0";s:15:"twentyseventeen";s:3:"2.3";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'no'),
(76774, '_site_transient_timeout_theme_roots', '1591167963', 'no'),
(76775, '_site_transient_theme_roots', 'a:2:{s:6:"quezal";s:7:"/themes";s:15:"twentyseventeen";s:7:"/themes";}', 'no'),
(75882, '_transient_timeout_external_ip_address_192.99.36.177', '1591204009', 'no'),
(75883, '_transient_external_ip_address_192.99.36.177', '208.91.198.77', 'no'),
(75826, '_transient_external_ip_address_91.121.183.89', '208.91.198.77', 'no'),
(75893, '_transient_timeout_external_ip_address_46.243.145.134', '1591204235', 'no'),
(75894, '_transient_external_ip_address_46.243.145.134', '208.91.198.77', 'no'),
(75825, '_transient_timeout_external_ip_address_91.121.183.89', '1591171310', 'no'),
(75212, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-5.4.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-5.4.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-5.4.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-5.4.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"5.4.1";s:7:"version";s:5:"5.4.1";s:11:"php_version";s:6:"5.6.20";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"5.3";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1591166162;s:15:"version_checked";s:5:"5.4.1";s:12:"translations";a:0:{}}', 'no'),
(75188, 'can_compress_scripts', '0', 'no'),
(76769, '_transient_timeout_mc4wp_mailchimp_lists', '1591252562', 'no'),
(76770, '_transient_mc4wp_mailchimp_lists', 'a:1:{s:10:"0a0b95ca2d";O:8:"stdClass":4:{s:2:"id";s:10:"0a0b95ca2d";s:6:"web_id";i:95635;s:4:"name";s:14:"Craftech Kenya";s:5:"stats";O:8:"stdClass":16:{s:12:"member_count";i:1;s:17:"unsubscribe_count";i:0;s:13:"cleaned_count";i:0;s:23:"member_count_since_send";i:1;s:28:"unsubscribe_count_since_send";i:0;s:24:"cleaned_count_since_send";i:0;s:14:"campaign_count";i:0;s:18:"campaign_last_sent";s:0:"";s:17:"merge_field_count";i:5;s:12:"avg_sub_rate";i:0;s:14:"avg_unsub_rate";i:0;s:15:"target_sub_rate";i:0;s:9:"open_rate";i:0;s:10:"click_rate";i:0;s:13:"last_sub_date";s:25:"2018-11-19T10:30:21+00:00";s:15:"last_unsub_date";s:0:"";}}}', 'no'),
(75118, '_transient_wc_count_comments', 'O:8:"stdClass":7:{s:14:"total_comments";i:0;s:3:"all";i:0;s:9:"moderated";i:0;s:8:"approved";i:0;s:4:"spam";i:0;s:5:"trash";i:0;s:12:"post-trashed";i:0;}', 'yes'),
(75119, '_transient_as_comment_count', 'O:8:"stdClass":7:{s:14:"total_comments";i:0;s:3:"all";i:0;s:9:"moderated";i:0;s:8:"approved";i:0;s:4:"spam";i:0;s:5:"trash";i:0;s:12:"post-trashed";i:0;}', 'yes'),
(75129, '_transient_timeout_wc_low_stock_count', '1592849675', 'no'),
(75130, '_transient_wc_low_stock_count', '0', 'no'),
(75131, '_transient_timeout_wc_outofstock_count', '1592849675', 'no'),
(75132, '_transient_wc_outofstock_count', '0', 'no'),
(76646, '_transient_external_ip_address_149.100.187.145', '208.91.198.77', 'no'),
(76643, '_transient_external_ip_address_159.203.182.52', '208.91.198.77', 'no'),
(76645, '_transient_timeout_external_ip_address_149.100.187.145', '1591631326', 'no'),
(76619, '_transient_external_ip_address_165.227.189.234', '208.91.198.77', 'no'),
(76621, '_transient_timeout_external_ip_address_38.93.172.119', '1591617552', 'no'),
(76607, '_transient_timeout_external_ip_address_61.222.131.107', '1591610312', 'no'),
(76608, '_transient_external_ip_address_61.222.131.107', '208.91.198.77', 'no'),
(76612, '_transient_timeout_external_ip_address_95.217.214.70', '1591612103', 'no'),
(76613, '_transient_external_ip_address_95.217.214.70', '208.91.198.77', 'no'),
(76618, '_transient_timeout_external_ip_address_165.227.189.234', '1591616805', 'no'),
(75429, '_transient_health-check-site-status-result', '{"good":13,"recommended":2,"critical":2}', 'yes'),
(76622, '_transient_external_ip_address_38.93.172.119', '208.91.198.77', 'no'),
(76648, '_transient_timeout_external_ip_address_199.188.118.68', '1591631327', 'no'),
(76592, '_transient_external_ip_address_107.150.169.50', '208.91.198.77', 'no'),
(76601, '_transient_timeout_external_ip_address_167.114.89.194', '1591607778', 'no'),
(76602, '_transient_external_ip_address_167.114.89.194', '208.91.198.77', 'no'),
(76649, '_transient_external_ip_address_199.188.118.68', '208.91.198.77', 'no'),
(76720, '_transient_timeout_external_ip_address_66.249.93.199', '1591701078', 'no'),
(76721, '_transient_external_ip_address_66.249.93.199', '208.91.198.77', 'no'),
(76726, '_transient_timeout_external_ip_address_41.72.208.154', '1591703235', 'no'),
(76727, '_transient_external_ip_address_41.72.208.154', '208.91.198.77', 'no'),
(76740, '_transient_timeout_external_ip_address_154.122.236.163', '1591720644', 'no'),
(76741, '_transient_external_ip_address_154.122.236.163', '208.91.198.77', 'no'),
(76743, '_transient_timeout_external_ip_address_105.59.139.27', '1591721833', 'no'),
(76711, '_transient_timeout_external_ip_address_66.249.93.197', '1591700849', 'no'),
(76712, '_transient_external_ip_address_66.249.93.197', '208.91.198.77', 'no'),
(76708, '_transient_timeout_external_ip_address_66.249.93.195', '1591700848', 'no'),
(76709, '_transient_external_ip_address_66.249.93.195', '208.91.198.77', 'no'),
(76132, '_transient_timeout_external_ip_address_54.39.77.162', '1591294066', 'no'),
(76133, '_transient_external_ip_address_54.39.77.162', '208.91.198.77', 'no'),
(76147, '_transient_timeout_external_ip_address_163.172.132.65', '1591296451', 'no'),
(76148, '_transient_external_ip_address_163.172.132.65', '208.91.198.77', 'no'),
(76150, '_transient_timeout_external_ip_address_66.102.9.185', '1591296454', 'no'),
(76151, '_transient_external_ip_address_66.102.9.185', '208.91.198.77', 'no'),
(76153, '_site_transient_timeout_browser_3159e548b459a213a1c6a2a1736ee626', '1591297188', 'no'),
(76154, '_site_transient_browser_3159e548b459a213a1c6a2a1736ee626', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:12:"83.0.4103.61";s:8:"platform";s:7:"Windows";s:10:"update_url";s:29:"https://www.google.com/chrome";s:7:"img_src";s:43:"http://s.w.org/images/browsers/chrome.png?1";s:11:"img_src_ssl";s:44:"https://s.w.org/images/browsers/chrome.png?1";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;s:6:"mobile";b:0;}', 'no'),
(76155, '_transient_timeout_external_ip_address_37.120.158.84', '1591297498', 'no'),
(76156, '_transient_external_ip_address_37.120.158.84', '208.91.198.77', 'no'),
(76167, '_transient_timeout_external_ip_address_212.92.105.247', '1591299121', 'no'),
(76168, '_transient_external_ip_address_212.92.105.247', '208.91.198.77', 'no'),
(76197, '_transient_timeout_external_ip_address_37.120.159.24', '1591302399', 'no'),
(76198, '_transient_external_ip_address_37.120.159.24', '208.91.198.77', 'no'),
(76204, '_transient_timeout_external_ip_address_69.171.251.10', '1591303456', 'no'),
(76205, '_transient_external_ip_address_69.171.251.10', '208.91.198.77', 'no'),
(76212, '_transient_timeout_external_ip_address_113.35.251.98', '1591306188', 'no'),
(76213, '_transient_external_ip_address_113.35.251.98', '208.91.198.77', 'no'),
(76220, '_transient_timeout_external_ip_address_54.39.77.174', '1591311492', 'no'),
(76221, '_transient_external_ip_address_54.39.77.174', '208.91.198.77', 'no'),
(76225, '_transient_timeout_external_ip_address_45.76.30.26', '1591315153', 'no'),
(76226, '_transient_external_ip_address_45.76.30.26', '208.91.198.77', 'no'),
(76233, '_transient_timeout_external_ip_address_54.39.77.165', '1591323180', 'no'),
(76234, '_transient_external_ip_address_54.39.77.165', '208.91.198.77', 'no'),
(76716, 'rs-templates-new', '', 'no'),
(76744, '_transient_external_ip_address_105.59.139.27', '208.91.198.77', 'no'),
(76761, '_transient_timeout_external_ip_address_95.80.252.189', '1591752804', 'no'),
(76762, '_transient_external_ip_address_95.80.252.189', '208.91.198.77', 'no'),
(75149, 'jetpack_dismissed_connection_banner', '1', 'yes'),
(76286, '_transient_timeout_external_ip_address_34.83.190.71', '1591357295', 'no'),
(76287, '_transient_external_ip_address_34.83.190.71', '208.91.198.77', 'no'),
(76292, '_transient_timeout_external_ip_address_41.212.117.104', '1591361074', 'no'),
(76293, '_transient_external_ip_address_41.212.117.104', '208.91.198.77', 'no'),
(76332, '_transient_timeout_external_ip_address_173.252.95.2', '1591389520', 'no'),
(76333, '_transient_external_ip_address_173.252.95.2', '208.91.198.77', 'no'),
(76335, '_transient_timeout_external_ip_address_173.252.95.15', '1591389528', 'no'),
(76336, '_transient_external_ip_address_173.252.95.15', '208.91.198.77', 'no'),
(76337, '_transient_timeout_external_ip_address_51.15.231.17', '1591389577', 'no'),
(76338, '_transient_external_ip_address_51.15.231.17', '208.91.198.77', 'no'),
(76262, '_transient_external_ip_address_54.39.77.191', '208.91.198.77', 'no'),
(76053, '_transient_timeout_external_ip_address_34.83.128.192', '1591282522', 'no'),
(76054, '_transient_external_ip_address_34.83.128.192', '208.91.198.77', 'no'),
(76061, '_transient_timeout_external_ip_address_5.100.249.231', '1591286746', 'no'),
(76062, '_transient_external_ip_address_5.100.249.231', '208.91.198.77', 'no'),
(76066, '_transient_timeout_external_ip_address_66.70.225.57', '1591286915', 'no'),
(76067, '_transient_external_ip_address_66.70.225.57', '208.91.198.77', 'no'),
(76072, '_transient_timeout_external_ip_address_170.210.156.91', '1591287406', 'no'),
(76073, '_transient_external_ip_address_170.210.156.91', '208.91.198.77', 'no'),
(76117, '_transient_timeout_external_ip_address_102.167.128.141', '1591294028', 'no'),
(76118, '_transient_external_ip_address_102.167.128.141', '208.91.198.77', 'no'),
(75910, '_transient_timeout_external_ip_address_139.59.99.222', '1591218999', 'no'),
(75911, '_transient_external_ip_address_139.59.99.222', '208.91.198.77', 'no'),
(75914, '_transient_timeout_external_ip_address_212.92.123.182', '1591219696', 'no'),
(75915, '_transient_external_ip_address_212.92.123.182', '208.91.198.77', 'no'),
(75919, '_transient_timeout_external_ip_address_69.39.239.21', '1591223469', 'no'),
(75920, '_transient_external_ip_address_69.39.239.21', '208.91.198.77', 'no'),
(75923, '_transient_timeout_external_ip_address_183.136.225.46', '1591223619', 'no'),
(75924, '_transient_external_ip_address_183.136.225.46', '208.91.198.77', 'no'),
(76261, '_transient_timeout_external_ip_address_54.39.77.191', '1591338798', 'no'),
(75942, '_transient_timeout_external_ip_address_192.71.44.44', '1591228772', 'no'),
(75943, '_transient_external_ip_address_192.71.44.44', '208.91.198.77', 'no'),
(75947, '_transient_timeout_external_ip_address_192.36.248.249', '1591228776', 'no'),
(75948, '_transient_external_ip_address_192.36.248.249', '208.91.198.77', 'no'),
(75949, '_transient_timeout_external_ip_address_192.36.70.176', '1591228777', 'no'),
(75950, '_transient_external_ip_address_192.36.70.176', '208.91.198.77', 'no'),
(75953, '_transient_timeout_external_ip_address_51.38.230.214', '1591229464', 'no'),
(75954, '_transient_external_ip_address_51.38.230.214', '208.91.198.77', 'no'),
(75956, '_transient_timeout_external_ip_address_196.47.64.42', '1591229670', 'no'),
(75957, '_transient_external_ip_address_196.47.64.42', '208.91.198.77', 'no'),
(75962, '_transient_timeout_external_ip_address_128.199.194.131', '1591232481', 'no'),
(75963, '_transient_external_ip_address_128.199.194.131', '208.91.198.77', 'no'),
(75965, '_transient_timeout_external_ip_address_74.208.80.213', '1591232816', 'no'),
(75966, '_transient_external_ip_address_74.208.80.213', '208.91.198.77', 'no'),
(75971, '_transient_timeout_external_ip_address_198.12.156.154', '1591233836', 'no'),
(75972, '_transient_external_ip_address_198.12.156.154', '208.91.198.77', 'no'),
(75981, '_transient_timeout_external_ip_address_72.11.157.71', '1591238099', 'no'),
(75982, '_transient_external_ip_address_72.11.157.71', '208.91.198.77', 'no'),
(75989, '_transient_timeout_external_ip_address_173.252.83.113', '1591241526', 'no'),
(75990, '_transient_external_ip_address_173.252.83.113', '208.91.198.77', 'no'),
(75992, '_transient_timeout_external_ip_address_193.70.64.90', '1591242145', 'no'),
(75993, '_transient_external_ip_address_193.70.64.90', '208.91.198.77', 'no'),
(75995, '_transient_timeout_external_ip_address_163.172.135.204', '1591243396', 'no'),
(75996, '_transient_external_ip_address_163.172.135.204', '208.91.198.77', 'no'),
(75998, '_transient_timeout_external_ip_address_68.183.155.192', '1591244106', 'no'),
(75999, '_transient_external_ip_address_68.183.155.192', '208.91.198.77', 'no'),
(76004, '_transient_timeout_external_ip_address_51.91.252.187', '1591248635', 'no'),
(76005, '_transient_external_ip_address_51.91.252.187', '208.91.198.77', 'no'),
(75227, 'action_scheduler_lock_async-request-runner', '1591096145', 'yes'),
(75228, 'action_scheduler_migration_status', 'complete', 'yes'),
(75219, 'action_scheduler_hybrid_store_demarkation', '3518', 'yes'),
(75220, 'schema-ActionScheduler_StoreSchema', '3.0.1590269501', 'yes'),
(75221, 'schema-ActionScheduler_LoggerSchema', '2.0.1590269501', 'yes'),
(75225, 'mailchimp-woocommerce-store-id-last-verified', '1591096085', 'yes'),
(76778, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1591166169;s:7:"checked";a:13:{s:19:"akismet/akismet.php";s:5:"4.1.5";s:37:"breadcrumb-navxt/breadcrumb-navxt.php";s:5:"6.4.0";s:36:"contact-form-7/wp-contact-form-7.php";s:5:"5.1.9";s:45:"easy-custom-sidebars/easy-custom-sidebars.php";s:6:"1.0.10";s:19:"jetpack/jetpack.php";s:5:"7.7.3";s:51:"mailchimp-for-woocommerce/mailchimp-woocommerce.php";s:5:"2.4.0";s:37:"mailchimp-for-wp/mailchimp-for-wp.php";s:5:"4.7.7";s:47:"one-click-demo-import/one-click-demo-import.php";s:5:"2.5.2";s:23:"revslider/revslider.php";s:5:"5.4.8";s:41:"TCSN-QZ-Shortcodes/tcsn-qz-shortcodes.php";s:5:"1.0.0";s:27:"woocommerce/woocommerce.php";s:5:"3.9.3";s:39:"woocommerce-admin/woocommerce-admin.php";s:5:"1.1.3";s:27:"js_composer/js_composer.php";s:5:"5.5.1";}s:8:"response";a:3:{s:19:"jetpack/jetpack.php";O:8:"stdClass":12:{s:2:"id";s:21:"w.org/plugins/jetpack";s:4:"slug";s:7:"jetpack";s:6:"plugin";s:19:"jetpack/jetpack.php";s:11:"new_version";s:5:"8.6.1";s:3:"url";s:38:"https://wordpress.org/plugins/jetpack/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/jetpack.8.6.1.zip";s:5:"icons";a:3:{s:2:"2x";s:60:"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404";s:2:"1x";s:52:"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404";s:3:"svg";s:52:"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404";}s:7:"banners";a:2:{s:2:"2x";s:63:"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404";s:2:"1x";s:62:"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404";}s:11:"banners_rtl";a:0:{}s:6:"tested";s:5:"5.4.1";s:12:"requires_php";s:3:"5.6";s:13:"compatibility";O:8:"stdClass":0:{}}s:27:"woocommerce/woocommerce.php";O:8:"stdClass":12:{s:2:"id";s:25:"w.org/plugins/woocommerce";s:4:"slug";s:11:"woocommerce";s:6:"plugin";s:27:"woocommerce/woocommerce.php";s:11:"new_version";s:5:"4.2.0";s:3:"url";s:42:"https://wordpress.org/plugins/woocommerce/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035";s:2:"1x";s:64:"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035";s:2:"1x";s:66:"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035";}s:11:"banners_rtl";a:0:{}s:6:"tested";s:5:"5.4.1";s:12:"requires_php";s:3:"7.0";s:13:"compatibility";O:8:"stdClass":0:{}}s:27:"js_composer/js_composer.php";O:8:"stdClass":5:{s:4:"slug";s:11:"js_composer";s:11:"new_version";s:3:"6.2";s:3:"url";s:0:"";s:7:"package";b:1;s:4:"name";s:21:"WPBakery Page Builder";}}s:12:"translations";a:0:{}s:9:"no_update";a:8:{s:19:"akismet/akismet.php";O:8:"stdClass":9:{s:2:"id";s:21:"w.org/plugins/akismet";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"4.1.5";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.4.1.5.zip";s:5:"icons";a:2:{s:2:"2x";s:59:"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272";s:2:"1x";s:59:"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272";}s:7:"banners";a:1:{s:2:"1x";s:61:"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904";}s:11:"banners_rtl";a:0:{}}s:37:"breadcrumb-navxt/breadcrumb-navxt.php";O:8:"stdClass":9:{s:2:"id";s:30:"w.org/plugins/breadcrumb-navxt";s:4:"slug";s:16:"breadcrumb-navxt";s:6:"plugin";s:37:"breadcrumb-navxt/breadcrumb-navxt.php";s:11:"new_version";s:5:"6.4.0";s:3:"url";s:47:"https://wordpress.org/plugins/breadcrumb-navxt/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.4.0.zip";s:5:"icons";a:3:{s:2:"2x";s:68:"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=971477";s:2:"1x";s:61:"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103";s:3:"svg";s:61:"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103";}s:7:"banners";a:2:{s:2:"2x";s:72:"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103";s:2:"1x";s:71:"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103";}s:11:"banners_rtl";a:0:{}}s:36:"contact-form-7/wp-contact-form-7.php";O:8:"stdClass":9:{s:2:"id";s:28:"w.org/plugins/contact-form-7";s:4:"slug";s:14:"contact-form-7";s:6:"plugin";s:36:"contact-form-7/wp-contact-form-7.php";s:11:"new_version";s:5:"5.1.9";s:3:"url";s:45:"https://wordpress.org/plugins/contact-form-7/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/contact-form-7.5.1.9.zip";s:5:"icons";a:2:{s:2:"2x";s:67:"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696";s:2:"1x";s:67:"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=2279696";}s:7:"banners";a:2:{s:2:"2x";s:69:"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901";s:2:"1x";s:68:"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427";}s:11:"banners_rtl";a:0:{}}s:45:"easy-custom-sidebars/easy-custom-sidebars.php";O:8:"stdClass":9:{s:2:"id";s:34:"w.org/plugins/easy-custom-sidebars";s:4:"slug";s:20:"easy-custom-sidebars";s:6:"plugin";s:45:"easy-custom-sidebars/easy-custom-sidebars.php";s:11:"new_version";s:6:"1.0.10";s:3:"url";s:51:"https://wordpress.org/plugins/easy-custom-sidebars/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/easy-custom-sidebars.zip";s:5:"icons";a:2:{s:2:"2x";s:72:"https://ps.w.org/easy-custom-sidebars/assets/icon-256x256.png?rev=991222";s:2:"1x";s:72:"https://ps.w.org/easy-custom-sidebars/assets/icon-128x128.png?rev=991222";}s:7:"banners";a:2:{s:2:"2x";s:75:"https://ps.w.org/easy-custom-sidebars/assets/banner-1544x500.png?rev=987596";s:2:"1x";s:74:"https://ps.w.org/easy-custom-sidebars/assets/banner-772x250.png?rev=987596";}s:11:"banners_rtl";a:0:{}}s:51:"mailchimp-for-woocommerce/mailchimp-woocommerce.php";O:8:"stdClass":9:{s:2:"id";s:39:"w.org/plugins/mailchimp-for-woocommerce";s:4:"slug";s:25:"mailchimp-for-woocommerce";s:6:"plugin";s:51:"mailchimp-for-woocommerce/mailchimp-woocommerce.php";s:11:"new_version";s:5:"2.4.0";s:3:"url";s:56:"https://wordpress.org/plugins/mailchimp-for-woocommerce/";s:7:"package";s:74:"https://downloads.wordpress.org/plugin/mailchimp-for-woocommerce.2.4.0.zip";s:5:"icons";a:2:{s:2:"2x";s:78:"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501";s:2:"1x";s:78:"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501";}s:7:"banners";a:2:{s:2:"2x";s:81:"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-1544x500.png?rev=1950415";s:2:"1x";s:80:"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-772x250.jpg?rev=1950415";}s:11:"banners_rtl";a:0:{}}s:37:"mailchimp-for-wp/mailchimp-for-wp.php";O:8:"stdClass":9:{s:2:"id";s:30:"w.org/plugins/mailchimp-for-wp";s:4:"slug";s:16:"mailchimp-for-wp";s:6:"plugin";s:37:"mailchimp-for-wp/mailchimp-for-wp.php";s:11:"new_version";s:5:"4.7.7";s:3:"url";s:47:"https://wordpress.org/plugins/mailchimp-for-wp/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.7.zip";s:5:"icons";a:2:{s:2:"2x";s:69:"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577";s:2:"1x";s:69:"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577";}s:7:"banners";a:1:{s:2:"1x";s:71:"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706";}s:11:"banners_rtl";a:0:{}}s:47:"one-click-demo-import/one-click-demo-import.php";O:8:"stdClass":9:{s:2:"id";s:35:"w.org/plugins/one-click-demo-import";s:4:"slug";s:21:"one-click-demo-import";s:6:"plugin";s:47:"one-click-demo-import/one-click-demo-import.php";s:11:"new_version";s:5:"2.5.2";s:3:"url";s:52:"https://wordpress.org/plugins/one-click-demo-import/";s:7:"package";s:70:"https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.2.zip";s:5:"icons";a:2:{s:2:"2x";s:74:"https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=1694310";s:2:"1x";s:74:"https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=1694310";}s:7:"banners";a:2:{s:2:"2x";s:77:"https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=1694310";s:2:"1x";s:76:"https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=1694310";}s:11:"banners_rtl";a:0:{}}s:39:"woocommerce-admin/woocommerce-admin.php";O:8:"stdClass":9:{s:2:"id";s:31:"w.org/plugins/woocommerce-admin";s:4:"slug";s:17:"woocommerce-admin";s:6:"plugin";s:39:"woocommerce-admin/woocommerce-admin.php";s:11:"new_version";s:5:"1.1.3";s:3:"url";s:48:"https://wordpress.org/plugins/woocommerce-admin/";s:7:"package";s:66:"https://downloads.wordpress.org/plugin/woocommerce-admin.1.1.3.zip";s:5:"icons";a:2:{s:2:"2x";s:70:"https://ps.w.org/woocommerce-admin/assets/icon-256x256.jpg?rev=2057866";s:2:"1x";s:70:"https://ps.w.org/woocommerce-admin/assets/icon-128x128.jpg?rev=2057866";}s:7:"banners";a:2:{s:2:"2x";s:73:"https://ps.w.org/woocommerce-admin/assets/banner-1544x500.jpg?rev=2057866";s:2:"1x";s:72:"https://ps.w.org/woocommerce-admin/assets/banner-772x250.jpg?rev=2057866";}s:11:"banners_rtl";a:0:{}}}}', 'no'),
(76689, '_transient_external_ip_address_91.132.138.54', '208.91.198.77', 'no'),
(76367, '_transient_timeout_external_ip_address_52.125.140.0', '1591426215', 'no'),
(76368, '_transient_external_ip_address_52.125.140.0', '208.91.198.77', 'no'),
(76372, '_transient_timeout_external_ip_address_34.211.49.197', '1591433724', 'no'),
(76373, '_transient_external_ip_address_34.211.49.197', '208.91.198.77', 'no'),
(76382, '_transient_timeout_external_ip_address_35.243.217.51', '1591436992', 'no'),
(76383, '_transient_external_ip_address_35.243.217.51', '208.91.198.77', 'no'),
(76385, '_transient_timeout_external_ip_address_35.243.222.254', '1591437107', 'no'),
(76386, '_transient_external_ip_address_35.243.222.254', '208.91.198.77', 'no'),
(76379, '_transient_timeout_external_ip_address_3.249.182.15', '1591434264', 'no'),
(76380, '_transient_external_ip_address_3.249.182.15', '208.91.198.77', 'no'),
(76395, '_transient_timeout_external_ip_address_91.241.19.182', '1591456871', 'no'),
(76396, '_transient_external_ip_address_91.241.19.182', '208.91.198.77', 'no'),
(76398, '_transient_timeout_external_ip_address_35.195.237.123', '1591459094', 'no'),
(76399, '_transient_external_ip_address_35.195.237.123', '208.91.198.77', 'no'),
(76417, '_transient_timeout_external_ip_address_77.48.230.245', '1591463567', 'no'),
(76418, '_transient_external_ip_address_77.48.230.245', '208.91.198.77', 'no'),
(76434, '_transient_timeout_external_ip_address_34.200.230.113', '1591468664', 'no'),
(76435, '_transient_external_ip_address_34.200.230.113', '208.91.198.77', 'no'),
(76447, '_transient_timeout_external_ip_address_51.89.201.9', '1591485306', 'no'),
(76448, '_transient_external_ip_address_51.89.201.9', '208.91.198.77', 'no'),
(76458, '_transient_timeout_external_ip_address_50.62.176.23', '1591492698', 'no'),
(76459, '_transient_external_ip_address_50.62.176.23', '208.91.198.77', 'no'),
(76466, '_transient_timeout_external_ip_address_160.153.156.136', '1591499425', 'no'),
(76467, '_transient_external_ip_address_160.153.156.136', '208.91.198.77', 'no'),
(76472, '_transient_timeout_external_ip_address_54.215.140.104', '1591502122', 'no'),
(76473, '_transient_external_ip_address_54.215.140.104', '208.91.198.77', 'no'),
(76477, '_transient_timeout_external_ip_address_138.246.253.15', '1591514820', 'no'),
(76478, '_transient_external_ip_address_138.246.253.15', '208.91.198.77', 'no'),
(76496, '_transient_timeout_external_ip_address_208.91.198.77', '1591519267', 'no'),
(76520, '_transient_timeout_external_ip_address_173.252.111.16', '1591542962', 'no'),
(76521, '_transient_external_ip_address_173.252.111.16', '208.91.198.77', 'no'),
(76591, '_transient_timeout_external_ip_address_107.150.169.50', '1591601736', 'no'),
(76497, '_transient_external_ip_address_208.91.198.77', '208.91.198.77', 'no'),
(76526, '_transient_timeout_external_ip_address_13.52.101.43', '1591550861', 'no'),
(76527, '_transient_external_ip_address_13.52.101.43', '208.91.198.77', 'no'),
(76688, '_transient_timeout_external_ip_address_91.132.138.54', '1591685814', 'no'),
(76529, '_transient_timeout_external_ip_address_52.53.238.230', '1591550861', 'no'),
(76530, '_transient_external_ip_address_52.53.238.230', '208.91.198.77', 'no'),
(76549, '_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd', 'a:5:{s:19:"recommended_version";s:3:"7.3";s:15:"minimum_version";s:6:"5.6.20";s:12:"is_supported";b:0;s:9:"is_secure";b:0;s:13:"is_acceptable";b:1;}', 'no');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_postmeta`
--

CREATE TABLE `wpfp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_postmeta`
--

INSERT INTO `wpfp_postmeta` VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(5, 6, '_form', '<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit "Send"]'),
(6, 6, '_mail', 'a:9:{s:6:"active";b:1;s:7:"subject";s:31:"Craftech Kenya "[your-subject]"";s:6:"sender";s:37:"[your-name] <craftech@craftech.co.ke>";s:9:"recipient";s:23:"craftech@craftech.co.ke";s:4:"body";s:175:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Craftech Kenya (https://craftech.co.ke)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(7, 6, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:31:"Craftech Kenya "[your-subject]"";s:6:"sender";s:40:"Craftech Kenya <craftech@craftech.co.ke>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:117:"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Craftech Kenya (https://craftech.co.ke)";s:18:"additional_headers";s:33:"Reply-To: craftech@craftech.co.ke";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(8, 6, '_messages', 'a:23:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}'),
(9, 6, '_additional_settings', ''),
(10, 6, '_locale', 'en_US'),
(11, 7, '_wp_attached_file', '2018/12/log_file_2018-12-03__05-19-06.txt'),
(12, 32, '_wp_attached_file', '2014/07/color-piece.png'),
(13, 32, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:23:"2014/07/color-piece.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(16, 35, '_wp_attached_file', '2014/07/home-biz-icon1.png'),
(17, 35, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(18, 36, '_wp_attached_file', '2014/07/home-biz-icon2.png'),
(19, 36, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(20, 37, '_wp_attached_file', '2014/07/home-biz-icon3.png'),
(21, 37, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(22, 38, '_wp_attached_file', '2014/07/home-biz-icon4.png'),
(23, 38, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon4.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(24, 39, '_wp_attached_file', '2014/07/home-biz-icon5.png'),
(25, 39, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon5.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(26, 40, '_wp_attached_file', '2014/07/home-biz-icon6.png'),
(27, 40, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon6.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(28, 41, '_wp_attached_file', '2014/07/home-biz-icon7.png'),
(29, 41, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon7.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(30, 42, '_wp_attached_file', '2014/07/home-biz-icon8.png'),
(31, 42, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/07/home-biz-icon8.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(32, 51, '_wp_attached_file', '2014/07/home-biz-bg2.jpg'),
(33, 51, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:24:"2014/07/home-biz-bg2.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg2-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(34, 58, '_wp_attached_file', '2014/07/home-biz-bg1.jpg'),
(35, 58, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:24:"2014/07/home-biz-bg1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg1-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(36, 59, '_wp_attached_file', '2014/07/home-biz-bg3.jpg'),
(37, 59, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:24:"2014/07/home-biz-bg3.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg3-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(38, 60, '_wp_attached_file', '2014/07/geometry2.png'),
(39, 60, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:21:"2014/07/geometry2.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"geometry2-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"geometry2-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(40, 68, '_wp_attached_file', '2014/07/arrow.png'),
(41, 68, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:17:"2014/07/arrow.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(42, 75, '_wp_attached_file', '2014/07/home-biz2-bg1.jpg'),
(43, 75, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:25:"2014/07/home-biz2-bg1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg1-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(44, 77, '_wp_attached_file', '2014/07/home-biz2-spect.png'),
(45, 77, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:282;s:6:"height";i:119;s:4:"file";s:27:"2014/07/home-biz2-spect.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:27:"home-biz2-spect-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(46, 78, '_wp_attached_file', '2014/07/home-biz2-origami.png'),
(47, 78, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:227;s:6:"height";i:242;s:4:"file";s:29:"2014/07/home-biz2-origami.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-origami-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(48, 79, '_wp_attached_file', '2014/07/home-biz2-bg2.jpg'),
(49, 79, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:25:"2014/07/home-biz2-bg2.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg2-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(50, 80, '_wp_attached_file', '2014/07/home-biz2-browserWindow.png'),
(51, 80, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:357;s:6:"height";i:197;s:4:"file";s:35:"2014/07/home-biz2-browserWindow.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:35:"home-biz2-browserWindow-300x197.png";s:5:"width";i:300;s:6:"height";i:197;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:35:"home-biz2-browserWindow-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(52, 81, '_wp_attached_file', '2014/07/home-biz2-iPad.png'),
(53, 81, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:558;s:6:"height";i:451;s:4:"file";s:26:"2014/07/home-biz2-iPad.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"home-biz2-iPad-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"home-biz2-iPad-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(54, 233, '_wp_attached_file', '2014/07/home-biz2-bg3.jpg'),
(55, 233, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:25:"2014/07/home-biz2-bg3.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg3-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(56, 257, '_wp_attached_file', '2014/07/iPad-showcase.png'),
(57, 257, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:650;s:6:"height";i:533;s:4:"file";s:25:"2014/07/iPad-showcase.png";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"iPad-showcase-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"iPad-showcase-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"iPad-showcase-600x492.png";s:5:"width";i:600;s:6:"height";i:492;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(59, 270, '_wp_attached_file', '2014/07/user-1.jpg'),
(60, 270, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:18:"2014/07/user-1.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(62, 277, '_wp_attached_file', '2014/07/user-2.jpg'),
(63, 277, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:18:"2014/07/user-2.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(65, 284, '_wp_attached_file', '2014/07/pat-4.png'),
(66, 284, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3;s:6:"height";i:3;s:4:"file";s:17:"2014/07/pat-4.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(67, 342, '_wp_attached_file', '2014/07/strange_bullseyes.png'),
(68, 342, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:300;s:4:"file";s:29:"2014/07/strange_bullseyes.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"strange_bullseyes-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(70, 425, '_wp_attached_file', '2014/07/bg1.jpg'),
(71, 425, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:700;s:4:"file";s:15:"2014/07/bg1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg1-600x219.jpg";s:5:"width";i:600;s:6:"height";i:219;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(73, 464, '_wp_attached_file', '2014/07/iPhone-mockup.png'),
(74, 464, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:275;s:6:"height";i:470;s:4:"file";s:25:"2014/07/iPhone-mockup.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"iPhone-mockup-275x300.png";s:5:"width";i:275;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"iPhone-mockup-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(76, 571, '_wp_attached_file', '2014/07/sushi-303167_640.png'),
(77, 571, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:590;s:4:"file";s:28:"2014/07/sushi-303167_640.png";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:28:"sushi-303167_640-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:28:"sushi-303167_640-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:18:"woocommerce_single";a:4:{s:4:"file";s:28:"sushi-303167_640-600x553.png";s:5:"width";i:600;s:6:"height";i:553;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(79, 672, '_wp_attached_file', '2014/07/bg3.jpg'),
(80, 672, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1170;s:6:"height";i:570;s:4:"file";s:15:"2014/07/bg3.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg3-600x292.jpg";s:5:"width";i:600;s:6:"height";i:292;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(82, 828, '_wp_attached_file', '2014/07/factsheet.png'),
(83, 828, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:140;s:6:"height";i:167;s:4:"file";s:21:"2014/07/factsheet.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"factsheet-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(85, 830, '_wp_attached_file', '2014/07/thumb-2.png'),
(86, 830, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:19:"2014/07/thumb-2.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-2-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(87, 831, '_wp_attached_file', '2014/07/thumb-3.png'),
(88, 831, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:19:"2014/07/thumb-3.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-3-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(89, 832, '_wp_attached_file', '2014/07/thumb-1.png'),
(90, 832, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:19:"2014/07/thumb-1.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-1-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(91, 842, '_wp_attached_file', '2014/07/process-img1.png'),
(92, 842, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/07/process-img1.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(93, 843, '_wp_attached_file', '2014/07/process-img2.png'),
(94, 843, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/07/process-img2.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img2-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(95, 844, '_wp_attached_file', '2014/07/process-img3.png'),
(96, 844, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/07/process-img3.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img3-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(97, 845, '_wp_attached_file', '2014/07/process-img4.png'),
(98, 845, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/07/process-img4.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img4-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(99, 846, '_wp_attached_file', '2014/07/process-img5.png'),
(100, 846, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/07/process-img5.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img5-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(101, 876, '_wp_attached_file', '2014/07/bg4.jpg'),
(102, 876, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:350;s:4:"file";s:15:"2014/07/bg4.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg4-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg4-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg4-600x109.jpg";s:5:"width";i:600;s:6:"height";i:109;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(104, 1224, '_wp_attached_file', '2014/07/img1-1200x800.jpg'),
(105, 1224, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img1-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img1-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img1-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img1-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(107, 1238, '_wp_attached_file', '2014/07/img3-1200x800.jpg'),
(108, 1238, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img3-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img3-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img3-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img3-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(110, 1240, '_wp_attached_file', '2014/07/img4-1200x800.jpg'),
(111, 1240, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img4-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img4-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img4-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img4-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1702, 3419, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:34:"revslider/home-biz/color-piece.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(113, 1247, '_wp_attached_file', '2014/07/img5-1200x800.jpg'),
(114, 1247, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img5-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img5-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img5-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img5-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(116, 1276, '_wp_attached_file', '2014/07/footer-bg.jpg'),
(117, 1276, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:21:"2014/07/footer-bg.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"footer-bg-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"footer-bg-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"footer-bg-600x125.jpg";s:5:"width";i:600;s:6:"height";i:125;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(118, 1355, '_wp_attached_file', '2014/07/bg6.jpg'),
(119, 1355, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:15:"2014/07/bg6.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg6-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg6-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg6-600x188.jpg";s:5:"width";i:600;s:6:"height";i:188;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1701, 3419, '_wp_attached_file', 'revslider/home-biz/color-piece.png'),
(121, 1366, '_wp_attached_file', '2014/07/bg7.jpg'),
(122, 1366, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:15:"2014/07/bg7.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg7-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg7-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg7-600x188.jpg";s:5:"width";i:600;s:6:"height";i:188;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(124, 1375, '_wp_attached_file', '2014/07/img6-1200x800.jpg'),
(125, 1375, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img6-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img6-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img6-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img6-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(127, 1566, '_wp_attached_file', '2014/07/sig.png'),
(128, 1566, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:166;s:6:"height";i:57;s:4:"file";s:15:"2014/07/sig.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:14:"sig-100x57.png";s:5:"width";i:100;s:6:"height";i:57;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(130, 1607, '_wp_attached_file', '2014/07/member-1.jpg'),
(131, 1607, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:530;s:6:"height";i:370;s:4:"file";s:20:"2014/07/member-1.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"member-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"member-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(133, 1682, '_wp_attached_file', '2014/07/png-icon2.png'),
(134, 1682, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:110;s:6:"height";i:114;s:4:"file";s:21:"2014/07/png-icon2.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"png-icon2-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(136, 1685, '_wp_attached_file', '2014/07/png-icon3.png'),
(137, 1685, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:110;s:6:"height";i:114;s:4:"file";s:21:"2014/07/png-icon3.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"png-icon3-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(139, 1696, '_wp_attached_file', '2014/07/png-icon1.png'),
(140, 1696, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:108;s:6:"height";i:114;s:4:"file";s:21:"2014/07/png-icon1.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"png-icon1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(142, 2438, '_wp_attached_file', '2014/07/img-blog1.jpg'),
(143, 2438, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(145, 2440, '_wp_attached_file', '2014/07/img-blog2.jpg'),
(146, 2440, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog2.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog2-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(147, 2441, '_wp_attached_file', '2014/07/img-blog3.jpg'),
(148, 2441, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog3.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog3-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(150, 2443, '_wp_attached_file', '2014/07/img-blog4.jpg'),
(151, 2443, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog4.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog4-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog4-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog4-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(153, 2444, '_wp_attached_file', '2014/07/img-blog5.jpg'),
(154, 2444, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog5.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog5-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog5-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog5-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(156, 2446, '_wp_attached_file', '2014/07/img-blog7.jpg'),
(157, 2446, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog7.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog7-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog7-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog7-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(159, 2448, '_wp_attached_file', '2014/07/img-blog6.jpg'),
(160, 2448, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog6.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog6-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog6-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog6-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(162, 2450, '_wp_attached_file', '2014/07/img-blog8.jpg'),
(163, 2450, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:500;s:4:"file";s:21:"2014/07/img-blog8.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"img-blog8-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"img-blog8-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"img-blog8-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(165, 2544, '_wp_attached_file', '2014/07/bg9.jpg'),
(166, 2544, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:650;s:4:"file";s:15:"2014/07/bg9.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg9-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg9-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg9-600x203.jpg";s:5:"width";i:600;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}');
INSERT INTO `wpfp_postmeta` VALUES
(168, 2590, '_wp_attached_file', '2014/07/img-500x500.jpg'),
(169, 2590, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:500;s:4:"file";s:23:"2014/07/img-500x500.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:23:"img-500x500-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:23:"img-500x500-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(171, 2605, '_wp_attached_file', '2014/07/img-300x300.jpg'),
(172, 2605, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:300;s:4:"file";s:23:"2014/07/img-300x300.jpg";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:23:"img-300x300-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(174, 2729, '_wp_attached_file', '2014/07/img7-1200x800.jpg'),
(175, 2729, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img7-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img7-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img7-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img7-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(176, 2730, '_wp_attached_file', '2014/07/img8-1200x800.jpg'),
(177, 2730, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img8-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img8-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img8-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img8-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(178, 2731, '_wp_attached_file', '2014/07/img9-1200x800.jpg'),
(179, 2731, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/07/img9-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img9-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img9-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img9-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(180, 2732, '_wp_attached_file', '2014/07/img10-1200x800.jpg'),
(181, 2732, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:26:"2014/07/img10-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"img10-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"img10-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:26:"img10-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(182, 2733, '_wp_attached_file', '2014/07/img11-1200x800.jpg'),
(183, 2733, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:26:"2014/07/img11-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"img11-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"img11-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:26:"img11-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(184, 2734, '_wp_attached_file', '2014/07/img12-1200x800.jpg'),
(185, 2734, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:26:"2014/07/img12-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"img12-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"img12-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:26:"img12-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1898, 3512, '_product_image_gallery', '3513,3514'),
(1890, 3512, '_download_limit', '-1'),
(1891, 3512, '_download_expiry', '-1'),
(1892, 3512, '_stock', '10'),
(1893, 3512, '_stock_status', 'instock'),
(1894, 3512, '_wc_average_rating', '0'),
(1895, 3512, '_wc_review_count', '0'),
(1896, 3512, '_product_version', '3.9.3'),
(1897, 3512, '_price', '8000'),
(195, 2864, '_wp_attached_file', '2014/08/home-biz2-macbook.png'),
(196, 2864, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:560;s:6:"height";i:325;s:4:"file";s:29:"2014/08/home-biz2-macbook.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:29:"home-biz2-macbook-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-macbook-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1873, 3512, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1874, 3513, '_wp_attached_file', '2020/03/1TB-1.jpg'),
(1875, 3513, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2500;s:6:"height";i:2500;s:4:"file";s:17:"2020/03/1TB-1.jpg";s:5:"sizes";a:12:{s:6:"medium";a:4:{s:4:"file";s:17:"1TB-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"1TB-1-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"1TB-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"1TB-1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"1TB-1-1536x1536.jpg";s:5:"width";i:1536;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:19:"1TB-1-2048x2048.jpg";s:5:"width";i:2048;s:6:"height";i:2048;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:17:"1TB-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:0;}s:18:"woocommerce_single";a:4:{s:4:"file";s:17:"1TB-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:17:"1TB-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:17:"1TB-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:17:"1TB-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:17:"1TB-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(217, 2976, '_wp_attached_file', '2014/09/webbook2.jpg'),
(218, 2976, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/webbook2.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"webbook2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"webbook2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(220, 2977, '_wp_attached_file', '2014/09/webcd.jpg'),
(221, 2977, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:17:"2014/09/webcd.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:17:"webcd-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:17:"webcd-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(223, 2978, '_wp_attached_file', '2014/09/anibook1.jpg'),
(224, 2978, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/anibook1.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"anibook1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"anibook1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(226, 2979, '_wp_attached_file', '2014/09/anibook2.jpg'),
(227, 2979, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/anibook2.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"anibook2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"anibook2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1700, 3418, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:30:"revslider/home-biz/thumb-1.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"thumb-1-150x70.png";s:5:"width";i:150;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-1-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:18:"thumb-1-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(229, 2980, '_wp_attached_file', '2014/09/anicd.jpg'),
(230, 2980, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:17:"2014/09/anicd.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:17:"anicd-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:17:"anicd-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(232, 2981, '_wp_attached_file', '2014/09/bizbook1.jpg'),
(233, 2981, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/bizbook1.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"bizbook1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"bizbook1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1699, 3418, '_wp_attached_file', 'revslider/home-biz/thumb-1.png'),
(235, 2982, '_wp_attached_file', '2014/09/bizbook2.jpg'),
(236, 2982, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/bizbook2.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"bizbook2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"bizbook2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(238, 2983, '_wp_attached_file', '2014/09/bizcd.jpg'),
(239, 2983, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:17:"2014/09/bizcd.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:17:"bizcd-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:17:"bizcd-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(241, 2984, '_wp_attached_file', '2014/09/devbook1.jpg'),
(242, 2984, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/devbook1.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"devbook1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"devbook1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(244, 2985, '_wp_attached_file', '2014/09/devbook2.jpg'),
(245, 2985, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/devbook2.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"devbook2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"devbook2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(247, 2986, '_wp_attached_file', '2014/09/devcd.jpg'),
(248, 2986, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:17:"2014/09/devcd.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:17:"devcd-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:17:"devcd-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(250, 2987, '_wp_attached_file', '2014/09/edubook1.jpg'),
(251, 2987, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/edubook1.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"edubook1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"edubook1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(253, 2988, '_wp_attached_file', '2014/09/edubook2.jpg'),
(254, 2988, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/edubook2.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"edubook2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"edubook2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(256, 2989, '_wp_attached_file', '2014/09/educd.jpg'),
(257, 2989, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:17:"2014/09/educd.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:17:"educd-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:17:"educd-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(259, 2990, '_wp_attached_file', '2014/09/webbook1.jpg'),
(260, 2990, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:550;s:4:"file";s:20:"2014/09/webbook1.jpg";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"webbook1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"webbook1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(262, 2992, '_wp_attached_file', '2014/09/home-biz-bg1.jpg'),
(263, 2992, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:24:"2014/09/home-biz-bg1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg1-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(264, 2993, '_wp_attached_file', '2014/09/color-piece.png'),
(265, 2993, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:23:"2014/09/color-piece.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(266, 2994, '_wp_attached_file', '2014/09/quezal-symbol.png'),
(267, 2994, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:146;s:6:"height";i:146;s:4:"file";s:25:"2014/09/quezal-symbol.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"quezal-symbol-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(268, 2995, '_wp_attached_file', '2014/09/home-biz-bg2.jpg'),
(269, 2995, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:24:"2014/09/home-biz-bg2.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg2-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(270, 2996, '_wp_attached_file', '2014/09/home-biz-icon1.png'),
(271, 2996, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(272, 2997, '_wp_attached_file', '2014/09/home-biz-icon2.png'),
(273, 2997, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(274, 2998, '_wp_attached_file', '2014/09/home-biz-icon3.png'),
(275, 2998, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(276, 2999, '_wp_attached_file', '2014/09/home-biz-icon4.png'),
(277, 2999, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon4.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(278, 3000, '_wp_attached_file', '2014/09/home-biz-icon5.png'),
(279, 3000, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon5.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(280, 3001, '_wp_attached_file', '2014/09/home-biz-icon6.png'),
(281, 3001, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon6.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(282, 3002, '_wp_attached_file', '2014/09/home-biz-icon7.png'),
(283, 3002, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon7.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(284, 3003, '_wp_attached_file', '2014/09/home-biz-icon8.png'),
(285, 3003, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:26:"2014/09/home-biz-icon8.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(286, 3004, '_wp_attached_file', '2014/09/home-biz-bg3.jpg'),
(287, 3004, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:24:"2014/09/home-biz-bg3.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg3-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(288, 3005, '_wp_attached_file', '2014/09/home-biz2-bg1.jpg'),
(289, 3005, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:25:"2014/09/home-biz2-bg1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg1-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(290, 3006, '_wp_attached_file', '2014/09/home-biz2-cinema-display.png'),
(291, 3006, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:553;s:6:"height";i:421;s:4:"file";s:36:"2014/09/home-biz2-cinema-display.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:36:"home-biz2-cinema-display-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:36:"home-biz2-cinema-display-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(292, 3007, '_wp_attached_file', '2014/09/home-biz2-spect.png'),
(293, 3007, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:282;s:6:"height";i:119;s:4:"file";s:27:"2014/09/home-biz2-spect.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:27:"home-biz2-spect-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(294, 3008, '_wp_attached_file', '2014/09/home-biz2-bg2.jpg'),
(295, 3008, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:25:"2014/09/home-biz2-bg2.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg2-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(296, 3009, '_wp_attached_file', '2014/09/home-biz2-macbook.png'),
(297, 3009, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:560;s:6:"height";i:325;s:4:"file";s:29:"2014/09/home-biz2-macbook.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:29:"home-biz2-macbook-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-macbook-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(298, 3010, '_wp_attached_file', '2014/09/home-biz2-origami.png'),
(299, 3010, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:227;s:6:"height";i:242;s:4:"file";s:29:"2014/09/home-biz2-origami.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-origami-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(300, 3011, '_wp_attached_file', '2014/09/home-biz2-bg3.jpg'),
(301, 3011, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:25:"2014/09/home-biz2-bg3.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg3-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(302, 3012, '_wp_attached_file', '2014/09/home-biz2-iPad.png'),
(303, 3012, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:558;s:6:"height";i:451;s:4:"file";s:26:"2014/09/home-biz2-iPad.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"home-biz2-iPad-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"home-biz2-iPad-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(304, 3013, '_wp_attached_file', '2014/09/home-biz2-browserWindow.png'),
(305, 3013, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:357;s:6:"height";i:197;s:4:"file";s:35:"2014/09/home-biz2-browserWindow.png";s:5:"sizes";a:2:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:35:"home-biz2-browserWindow-300x197.png";s:5:"width";i:300;s:6:"height";i:197;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:35:"home-biz2-browserWindow-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(306, 3014, '_wp_attached_file', '2014/09/process-img1.png'),
(307, 3014, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/09/process-img1.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(308, 3015, '_wp_attached_file', '2014/09/arrow.png'),
(309, 3015, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:17:"2014/09/arrow.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(310, 3016, '_wp_attached_file', '2014/09/process-img2.png'),
(311, 3016, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/09/process-img2.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img2-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(312, 3017, '_wp_attached_file', '2014/09/process-img3.png'),
(313, 3017, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/09/process-img3.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img3-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(314, 3018, '_wp_attached_file', '2014/09/process-img4.png'),
(315, 3018, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/09/process-img4.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img4-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(316, 3019, '_wp_attached_file', '2014/09/process-img5.png'),
(317, 3019, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:24:"2014/09/process-img5.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img5-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(320, 3021, '_wp_attached_file', '2014/09/img3-1200x800.jpg'),
(321, 3021, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/09/img3-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img3-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img3-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img3-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(322, 3022, '_wp_attached_file', '2014/09/img2-1200x800.jpg'),
(323, 3022, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2014/09/img2-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img2-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img2-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img2-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(325, 3385, '_wp_attached_file', '2016/11/thumb-1.png'),
(326, 3385, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:19:"2016/11/thumb-1.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-1-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(327, 3386, '_wp_attached_file', '2016/11/thumb-2.png'),
(328, 3386, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:19:"2016/11/thumb-2.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-2-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(329, 3387, '_wp_attached_file', '2016/11/thumb-3.png'),
(330, 3387, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:19:"2016/11/thumb-3.png";s:5:"sizes";a:1:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-3-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(331, 3401, '_wp_attached_file', '2017/11/quezal-2.4.2-QE7XQW1Fq1DR2nP.zip'),
(332, 3403, '_wp_attached_file', '2017/12/img2-1200x800.jpg'),
(333, 3403, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2017/12/img2-1200x800.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img2-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img2-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img2-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(334, 3404, '_wp_attached_file', '2017/12/img2-1200x800-1.jpg'),
(335, 3404, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:27:"2017/12/img2-1200x800-1.jpg";s:5:"sizes";a:3:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:27:"img2-1200x800-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:27:"img2-1200x800-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:18:"woocommerce_single";a:4:{s:4:"file";s:27:"img2-1200x800-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(336, 3408, '_wp_attached_file', '2017/12/quezal-2.5.0-qrheKTtJGz9ol9.zip'),
(337, 3410, '_wp_attached_file', '2017/12/quezal-2.5.1-GCqgrMATNVZN7CYNs.zip'),
(338, 3414, '_wp_attached_file', '2018/05/quezal-2.5.1-LyYxGGW6biYam9WUQUd.zip'),
(339, 2870, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(340, 2870, '_menu_item_type', 'custom'),
(341, 2870, '_menu_item_menu_item_parent', '0'),
(342, 2870, '_menu_item_object_id', '2870'),
(343, 2870, '_menu_item_object', 'custom'),
(344, 2870, '_menu_item_target', ''),
(345, 2870, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(346, 2870, '_menu_item_xfn', ''),
(347, 2870, '_menu_item_url', 'https://craftech.co.ke/home-service/'),
(1810, 3464, '_menu_item_url', ''),
(1809, 3464, '_menu_item_xfn', ''),
(1808, 3464, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1807, 3464, '_menu_item_target', ''),
(1806, 3464, '_menu_item_object', 'page'),
(1805, 3464, '_menu_item_object_id', '2451'),
(1804, 3464, '_menu_item_menu_item_parent', '0'),
(1803, 3464, '_menu_item_type', 'post_type'),
(1802, 3464, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1812, 553, '_edit_lock', '1543819790:1'),
(1774, 3456, '_wp_attached_file', '2018/12/apple-touch-icon-57-precomposed.png'),
(1773, 3455, '_wp_attached_file', '2018/12/favicon.ico'),
(1817, 21, '_edit_lock', '1543826969:1'),
(1818, 6, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1956, 3515, '_tax_class', ''),
(1826, 2966, '_edit_lock', '1546441627:1'),
(1801, 3461, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:15:"2018/12/bg3.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"bg3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"bg3-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:15:"bg3-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:16:"bg3-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg3-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:15:"bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:15:"bg3-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:15:"bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:46:"Digital language code from a computer program.";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:8:"Bigstock";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:20:"Digital Program Code";s:11:"orientation";s:1:"1";s:8:"keywords";a:45:{i:0;s:2:"3d";i:1;s:11:"advertising";i:2;s:3:"art";i:3;s:10:"background";i:4;s:6:"binary";i:5;s:3:"bit";i:6;s:8:"business";i:7;s:4:"byte";i:8;s:4:"code";i:9;s:8:"commerce";i:10;s:13:"communication";i:11;s:8:"computer";i:12;s:11:"computering";i:13;s:7:"concept";i:14;s:10:"conceptual";i:15;s:7:"connect";i:16;s:12:"connectivity";i:17;s:5:"crack";i:18;s:10:"cyberspace";i:19;s:4:"data";i:20;s:6:"design";i:21;s:7:"digital";i:22;s:8:"download";i:23;s:9:"ecommerce";i:24;s:10:"electronic";i:25;s:6:"hacker";i:26;s:12:"illustration";i:27;s:8:"internet";i:28;s:3:"lan";i:29;s:8:"language";i:30;s:11:"mathematics";i:31;s:7:"monitor";i:32;s:7:"network";i:33;s:16:"network security";i:34;s:6:"online";i:35;s:7:"program";i:36;s:9:"publicity";i:37;s:8:"security";i:38;s:8:"software";i:39;s:6:"source";i:40;s:6:"system";i:41;s:10:"technology";i:42;s:3:"web";i:43;s:5:"world";i:44;s:3:"www";}}}');
INSERT INTO `wpfp_postmeta` VALUES
(493, 2950, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(494, 2950, '_menu_item_type', 'post_type'),
(495, 2950, '_menu_item_menu_item_parent', '0'),
(496, 2950, '_menu_item_object_id', '837'),
(497, 2950, '_menu_item_object', 'page'),
(498, 2950, '_menu_item_target', ''),
(499, 2950, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(500, 2950, '_menu_item_xfn', ''),
(501, 2950, '_menu_item_url', ''),
(1800, 3461, '_wp_attached_file', '2018/12/bg3.jpg'),
(523, 3115, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(524, 3115, '_mc4wp_settings', 'a:5:{s:3:"css";s:5:"basic";s:12:"double_optin";s:1:"1";s:8:"redirect";s:0:"";s:18:"hide_after_success";s:1:"0";s:5:"lists";a:1:{i:0;s:10:"1aa2be9f82";}}'),
(525, 3115, 'text_subscribed', 'Thank you, your sign-up request was successful! Please check your e-mail inbox.'),
(526, 3115, 'text_error', 'Oops. Something went wrong. Please try again later.'),
(527, 3115, 'text_invalid_email', 'Please provide a valid email address.'),
(528, 3115, 'text_already_subscribed', 'Given email address is already subscribed, thank you!'),
(529, 3115, 'text_required_field_missing', 'Please fill in the required fields.'),
(530, 19, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(531, 19, '_wpb_shortcodes_custom_css', '.vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}.vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454830989293{padding-top: 15px !important;}.vc_custom_1454830995831{padding-bottom: 45px !important;}'),
(532, 19, '_wp_page_template', 'template-full-page-header.php'),
(533, 19, '_wpb_vc_js_status', 'true'),
(534, 19, '_wpb_vc_js_interface_version', '2'),
(535, 19, 'slide_template', 'default'),
(536, 19, '_tcsn_header_bg_image_style', 'repeat'),
(537, 19, '_wpb_shortcodes_custom_css', '.vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}.vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454830989293{padding-top: 15px !important;}.vc_custom_1454830995831{padding-bottom: 45px !important;}'),
(1816, 2431, '_edit_lock', '1543825725:1'),
(538, 19, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1799, 3460, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:15:"2018/12/bg4.png";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"bg4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:15:"bg4-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:15:"bg4-768x432.png";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:16:"bg4-1024x576.png";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:15:"bg4-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:15:"bg4-600x338.png";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:15:"bg4-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:4:{s:4:"file";s:15:"bg4-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:11:"shop_single";a:4:{s:4:"file";s:15:"bg4-600x338.png";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:15:"bg4-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1798, 3460, '_wp_attached_file', '2018/12/bg4.png'),
(1796, 3459, '_menu_item_url', ''),
(640, 2967, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1829, 3488, '_wp_attached_file', 'woocommerce-placeholder.png'),
(1830, 3488, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:1200;s:4:"file";s:27:"woocommerce-placeholder.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"woocommerce-placeholder-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:35:"woocommerce-placeholder-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:35:"woocommerce-placeholder-768x768.png";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(651, 3070, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(652, 3070, '_menu_item_type', 'post_type'),
(653, 3070, '_menu_item_menu_item_parent', '3077'),
(654, 3070, '_menu_item_object_id', '2964'),
(655, 3070, '_menu_item_object', 'page'),
(656, 3070, '_menu_item_target', ''),
(657, 3070, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(658, 3070, '_menu_item_xfn', ''),
(659, 3070, '_menu_item_url', ''),
(661, 3072, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(662, 3072, '_menu_item_type', 'post_type'),
(663, 3072, '_menu_item_menu_item_parent', '3077'),
(664, 3072, '_menu_item_object_id', '2965'),
(665, 3072, '_menu_item_object', 'page'),
(666, 3072, '_menu_item_target', ''),
(667, 3072, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(668, 3072, '_menu_item_xfn', ''),
(669, 3072, '_menu_item_url', ''),
(671, 3076, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(672, 3076, '_menu_item_type', 'post_type'),
(673, 3076, '_menu_item_menu_item_parent', '3077'),
(674, 3076, '_menu_item_object_id', '2963'),
(675, 3076, '_menu_item_object', 'page'),
(676, 3076, '_menu_item_target', ''),
(677, 3076, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(678, 3076, '_menu_item_xfn', ''),
(679, 3076, '_menu_item_url', ''),
(681, 3077, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(682, 3077, '_menu_item_url', '#'),
(683, 3077, '_menu_item_xfn', ''),
(684, 3077, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(685, 3077, '_menu_item_target', ''),
(686, 3077, '_menu_item_object', 'custom'),
(687, 3077, '_menu_item_object_id', '3077'),
(688, 3077, '_menu_item_menu_item_parent', '0'),
(689, 3077, '_menu_item_type', 'custom'),
(1795, 3459, '_menu_item_xfn', ''),
(1794, 3459, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1793, 3459, '_menu_item_target', ''),
(1792, 3459, '_menu_item_object', 'page'),
(1791, 3459, '_menu_item_object_id', '1053'),
(1790, 3459, '_menu_item_menu_item_parent', '0'),
(1789, 3459, '_menu_item_type', 'post_type'),
(1788, 3459, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1786, 3458, '_menu_item_url', ''),
(1785, 3458, '_menu_item_xfn', ''),
(1784, 3458, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1783, 3458, '_menu_item_target', ''),
(1782, 3458, '_menu_item_object', 'page'),
(1781, 3458, '_menu_item_object_id', '19'),
(1780, 3458, '_menu_item_menu_item_parent', '0'),
(1779, 3458, '_menu_item_type', 'post_type'),
(1778, 3458, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(717, 21, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(718, 21, '_wpb_shortcodes_custom_css', '.vc_custom_1454831987411{padding-top: 45px !important;padding-bottom: 15px !important;}.vc_custom_1454832044529{padding-top: 40px !important;}.vc_custom_1454832027357{padding-top: 10px !important;}'),
(719, 21, '_wp_page_template', 'template-full-page-header.php'),
(720, 21, '_wpb_vc_js_status', 'true'),
(721, 21, '_wpb_vc_js_interface_version', '2'),
(722, 21, 'slide_template', 'default'),
(723, 21, '_tcsn_header_bg_image_style', 'repeat'),
(724, 21, '_wpb_shortcodes_custom_css', '.vc_custom_1454831987411{padding-top: 45px !important;padding-bottom: 15px !important;}.vc_custom_1454832044529{padding-top: 40px !important;}.vc_custom_1454832027357{padding-top: 10px !important;}'),
(725, 21, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(726, 290, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(727, 290, '_wpb_shortcodes_custom_css', '.vc_custom_1454825423203{margin-bottom: 0px !important;padding-top: 25px !important;background: #ce0027 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg1.jpg?id=425) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454825475906{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454825534444{background-color: #e8e8e8 !important;}.vc_custom_1454826190008{padding-top: 15px !important;}.vc_custom_1454826195096{padding-bottom: 15px !important;}.vc_custom_1454826267586{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454746772940{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1454746767133{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1454825769835{padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;}.vc_custom_1454825775177{border-top-width: 0px !important;border-right-width: 2px !important;border-bottom-width: 0px !important;border-left-width: 2px !important;padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}.vc_custom_1454825780125{padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;}'),
(728, 290, '_wp_page_template', 'template-full.php'),
(729, 290, '_wpb_vc_js_status', 'true'),
(730, 290, '_wpb_vc_js_interface_version', '2'),
(731, 290, 'slide_template', 'default'),
(732, 290, '_tcsn_header_bg_image_style', 'repeat'),
(733, 290, '_wpb_shortcodes_custom_css', '.vc_custom_1454825423203{margin-bottom: 0px !important;padding-top: 25px !important;background: #ce0027 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg1.jpg?id=425) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454825475906{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454825534444{background-color: #e8e8e8 !important;}.vc_custom_1454826190008{padding-top: 15px !important;}.vc_custom_1454826195096{padding-bottom: 15px !important;}.vc_custom_1454826267586{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454746772940{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1454746767133{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1454825769835{padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;}.vc_custom_1454825775177{border-top-width: 0px !important;border-right-width: 2px !important;border-bottom-width: 0px !important;border-left-width: 2px !important;padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}.vc_custom_1454825780125{padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;}'),
(734, 290, '_tcsn_select_rev_slider', 'home-biz2'),
(735, 290, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(736, 540, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(737, 540, '_wpb_shortcodes_custom_css', '.vc_custom_1454825008650{padding-top: 30px !important;padding-bottom: 20px !important;}.vc_custom_1430127997618{background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg9.jpg?id=2544) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454825136528{padding-top: 20px !important;padding-bottom: 25px !important;}.vc_custom_1454825165205{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454825319088{padding-top: 20px !important;padding-bottom: 55px !important;}.vc_custom_1454825027536{padding-top: 40px !important;}.vc_custom_1406443382468{margin-top: 0px !important;margin-bottom: 100px !important;padding: 40px 30px 80px !important;background-color: rgba(6,6,6,0.95) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;*background-color: rgb(6,6,6) !important;}.vc_custom_1406295088479{padding-top: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1405848299471{margin-bottom: 30px !important;}.vc_custom_1454825089613{padding-top: 30px !important;}'),
(738, 540, '_wp_page_template', 'template-full.php'),
(739, 540, '_wpb_shortcodes_custom_css', '.vc_custom_1454825008650{padding-top: 30px !important;padding-bottom: 20px !important;}.vc_custom_1430127997618{background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg9.jpg?id=2544) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454825136528{padding-top: 20px !important;padding-bottom: 25px !important;}.vc_custom_1454825165205{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454825319088{padding-top: 20px !important;padding-bottom: 55px !important;}.vc_custom_1454825027536{padding-top: 40px !important;}.vc_custom_1406443382468{margin-top: 0px !important;margin-bottom: 100px !important;padding: 40px 30px 80px !important;background-color: rgba(6,6,6,0.95) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;*background-color: rgb(6,6,6) !important;}.vc_custom_1406295088479{padding-top: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1405848299471{margin-bottom: 30px !important;}.vc_custom_1454825089613{padding-top: 30px !important;}'),
(740, 540, '_wpb_vc_js_status', 'true'),
(741, 540, '_wpb_vc_js_interface_version', '2'),
(742, 540, 'slide_template', 'default'),
(743, 540, '_tcsn_header_bg_image_style', 'repeat'),
(744, 540, '_tcsn_select_rev_slider', 'home-biz2'),
(745, 540, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(746, 544, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(747, 544, '_wpb_shortcodes_custom_css', '.vc_custom_1454823233366{padding-top: 40px !important;padding-bottom: 15px !important;}.vc_custom_1454823476207{padding-top: 15px !important;padding-bottom: 15px !important;background-color: #f4f4f4 !important;}.vc_custom_1454745974784{margin-right: 0px !important;margin-left: 0px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg4.jpg?id=876) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454824065897{padding-top: 25px !important;padding-bottom: 30px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/geometry2.png?id=60) !important;}.vc_custom_1454824296421{padding-top: 10px !important;padding-bottom: 45px !important;}.vc_custom_1454824375925{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454744528514{margin-top: 40px !important;}.vc_custom_1454823774564{padding-top: 30px !important;padding-right: 60px !important;padding-bottom: 30px !important;padding-left: 60px !important;background-color: rgba(206,0,39,0.9) !important;*background-color: rgb(206,0,39) !important;}.vc_custom_1454823909777{padding-top: 70px !important;padding-right: 60px !important;padding-bottom: 60px !important;padding-left: 60px !important;}.vc_custom_1454824103640{padding-top: 10px !important;}.vc_custom_1405766977925{margin-top: 60px !important;}'),
(748, 544, '_wp_page_template', 'template-full.php'),
(749, 544, '_wpb_shortcodes_custom_css', '.vc_custom_1454823233366{padding-top: 40px !important;padding-bottom: 15px !important;}.vc_custom_1454823476207{padding-top: 15px !important;padding-bottom: 15px !important;background-color: #f4f4f4 !important;}.vc_custom_1454745974784{margin-right: 0px !important;margin-left: 0px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg4.jpg?id=876) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454824065897{padding-top: 25px !important;padding-bottom: 30px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/geometry2.png?id=60) !important;}.vc_custom_1454824296421{padding-top: 10px !important;padding-bottom: 45px !important;}.vc_custom_1454824375925{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}.vc_custom_1454744528514{margin-top: 40px !important;}.vc_custom_1454823774564{padding-top: 30px !important;padding-right: 60px !important;padding-bottom: 30px !important;padding-left: 60px !important;background-color: rgba(206,0,39,0.9) !important;*background-color: rgb(206,0,39) !important;}.vc_custom_1454823909777{padding-top: 70px !important;padding-right: 60px !important;padding-bottom: 60px !important;padding-left: 60px !important;}.vc_custom_1454824103640{padding-top: 10px !important;}.vc_custom_1405766977925{margin-top: 60px !important;}'),
(750, 544, '_wpb_vc_js_status', 'true'),
(751, 544, '_wpb_vc_js_interface_version', '2'),
(752, 544, 'slide_template', 'default'),
(753, 544, '_tcsn_header_bg_image_style', 'repeat'),
(754, 544, '_tcsn_select_rev_slider', 'home-biz'),
(755, 544, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(756, 553, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(757, 553, '_wpb_shortcodes_custom_css', '.vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}.vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}.vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}.vc_custom_1454758414235{padding-top: 30px !important;}.vc_custom_1543816954128{padding-top: 60px !important;}.vc_custom_1454828937275{padding-top: 20px !important;}'),
(758, 553, '_wp_page_template', 'template-full.php'),
(759, 553, '_wpb_vc_js_status', 'true'),
(760, 553, '_wpb_vc_js_interface_version', '2'),
(761, 553, 'slide_template', 'default'),
(762, 553, '_tcsn_header_bg_image_style', 'repeat'),
(763, 553, '_wpb_shortcodes_custom_css', '.vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}.vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}.vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}.vc_custom_1454758414235{padding-top: 30px !important;}.vc_custom_1543816954128{padding-top: 60px !important;}.vc_custom_1454828937275{padding-top: 20px !important;}'),
(764, 553, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(765, 557, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(766, 557, '_wpb_shortcodes_custom_css', '.vc_custom_1454826404071{padding-top: 30px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg1.jpg?id=58) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454827634064{padding-top: 10px !important;padding-bottom: 45px !important;}.vc_custom_1454827828786{padding-top: 45px !important;padding-bottom: 45px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg?id=1366) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454828139830{padding-top: 20px !important;padding-bottom: 10px !important;background-color: #f4f4f4 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454747131548{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1406449503713{margin-top: 60px !important;margin-bottom: 60px !important;}.vc_custom_1454747137181{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1405756309958{padding-top: 60px !important;padding-bottom: 60px !important;background-color: rgba(0,165,206,0.9) !important;*background-color: rgb(0,165,206) !important;}.vc_custom_1454828047475{padding-top: 60px !important;padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1454828225175{margin-bottom: 0px !important;padding-bottom: 0px !important;}'),
(767, 557, '_wp_page_template', 'template-full.php'),
(768, 557, '_wpb_vc_js_status', 'true'),
(769, 557, '_wpb_vc_js_interface_version', '2'),
(770, 557, 'slide_template', 'default'),
(771, 557, '_tcsn_header_bg_image_style', 'repeat'),
(772, 557, '_wpb_shortcodes_custom_css', '.vc_custom_1454826404071{padding-top: 30px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg1.jpg?id=58) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454827634064{padding-top: 10px !important;padding-bottom: 45px !important;}.vc_custom_1454827828786{padding-top: 45px !important;padding-bottom: 45px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg?id=1366) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454828139830{padding-top: 20px !important;padding-bottom: 10px !important;background-color: #f4f4f4 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454747131548{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1406449503713{margin-top: 60px !important;margin-bottom: 60px !important;}.vc_custom_1454747137181{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1405756309958{padding-top: 60px !important;padding-bottom: 60px !important;background-color: rgba(0,165,206,0.9) !important;*background-color: rgb(0,165,206) !important;}.vc_custom_1454828047475{padding-top: 60px !important;padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1454828225175{margin-bottom: 0px !important;padding-bottom: 0px !important;}'),
(773, 557, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(774, 711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(775, 711, '_wpb_shortcodes_custom_css', '.vc_custom_1454829275007{padding-top: 20px !important;padding-bottom: 20px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg?id=1366);background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454829394748{padding-top: 15px !important;padding-bottom: 45px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/strange_bullseyes.png?id=342) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1454829512410{padding-top: 20px !important;padding-bottom: 25px !important;}.vc_custom_1454829299468{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1454829328329{padding-top: 30px !important;}'),
(776, 711, '_wp_page_template', 'template-full.php'),
(777, 711, '_wpb_vc_js_status', 'true'),
(778, 711, '_wpb_vc_js_interface_version', '2'),
(779, 711, 'slide_template', 'default'),
(780, 711, '_tcsn_header_bg_image_style', 'repeat'),
(781, 711, '_wpb_shortcodes_custom_css', '.vc_custom_1454829275007{padding-top: 20px !important;padding-bottom: 20px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg?id=1366);background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454829394748{padding-top: 15px !important;padding-bottom: 45px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/strange_bullseyes.png?id=342) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1454829512410{padding-top: 20px !important;padding-bottom: 25px !important;}.vc_custom_1454829299468{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1454829328329{padding-top: 30px !important;}'),
(782, 711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(783, 837, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(784, 837, '_wpb_shortcodes_custom_css', '.vc_custom_1478239218869{padding-top: 35px !important;padding-bottom: 10px !important;}.vc_custom_1454829761695{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg2.jpg?id=51) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1459649905526{padding-top: 30px !important;padding-bottom: 30px !important;}.vc_custom_1406307108950{padding: 60px !important;background-color: #ffffff !important;}'),
(785, 837, '_wp_page_template', 'template-full-page-header.php'),
(786, 837, '_wpb_vc_js_status', 'true'),
(787, 837, '_wpb_vc_js_interface_version', '2'),
(788, 837, 'slide_template', 'default'),
(789, 837, '_tcsn_header_bg_image_style', 'repeat'),
(790, 837, '_wpb_shortcodes_custom_css', '.vc_custom_1478239218869{padding-top: 35px !important;padding-bottom: 10px !important;}.vc_custom_1454829761695{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg2.jpg?id=51) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1459649905526{padding-top: 30px !important;padding-bottom: 30px !important;}.vc_custom_1406307108950{padding: 60px !important;background-color: #ffffff !important;}'),
(791, 837, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(793, 1053, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(794, 1053, '_wpb_shortcodes_custom_css', '.vc_custom_1454831500869{padding-top: 60px !important;}.vc_custom_1454831571856{padding-top: 30px !important;padding-bottom: 25px !important;}.vc_custom_1454831408109{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}'),
(795, 1053, '_wp_page_template', 'template-full.php'),
(796, 1053, '_wpb_shortcodes_custom_css', '.vc_custom_1454831500869{padding-top: 60px !important;}.vc_custom_1454831571856{padding-top: 30px !important;padding-bottom: 25px !important;}.vc_custom_1454831408109{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}'),
(797, 1053, '_wpb_vc_js_status', 'true'),
(798, 1053, '_wpb_vc_js_interface_version', '2'),
(799, 1053, 'slide_template', 'default'),
(800, 1053, '_tcsn_header_bg_image_style', 'repeat'),
(801, 1053, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(802, 1055, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(803, 1055, '_wpb_shortcodes_custom_css', '.vc_custom_1454831722628{padding-top: 15px !important;padding-bottom: 60px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-bg2.jpg?id=79) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454831828811{padding-top: 25px !important;padding-bottom: 30px !important;}.vc_custom_1454831834676{padding-bottom: 40px !important;}.vc_custom_1454831885395{padding-top: 25px !important;padding-bottom: 25px !important;background-color: #f4f4f4 !important;}.vc_custom_1454831907929{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #e8e8e8 !important;}'),
(804, 1055, '_wp_page_template', 'template-full.php'),
(805, 1055, '_wpb_shortcodes_custom_css', '.vc_custom_1454831722628{padding-top: 15px !important;padding-bottom: 60px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-bg2.jpg?id=79) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454831828811{padding-top: 25px !important;padding-bottom: 30px !important;}.vc_custom_1454831834676{padding-bottom: 40px !important;}.vc_custom_1454831885395{padding-top: 25px !important;padding-bottom: 25px !important;background-color: #f4f4f4 !important;}.vc_custom_1454831907929{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #e8e8e8 !important;}'),
(806, 1055, '_wpb_vc_js_status', 'true'),
(807, 1055, '_wpb_vc_js_interface_version', '2'),
(808, 1055, 'slide_template', 'default'),
(809, 1055, '_tcsn_header_bg_image_style', 'repeat'),
(810, 1055, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(811, 1443, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(812, 1443, '_wpb_shortcodes_custom_css', '.vc_custom_1454830071403{padding-top: 35px !important;padding-bottom: 10px !important;}.vc_custom_1454830580384{padding-top: 10px !important;padding-bottom: 15px !important;}.vc_custom_1454830435704{padding-bottom: 30px !important;}.vc_custom_1454830444480{padding-bottom: 30px !important;}.vc_custom_1454830449907{padding-bottom: 30px !important;}.vc_custom_1454830545472{padding-bottom: 20px !important;}'),
(813, 1443, '_wp_page_template', 'template-full-page-header.php'),
(814, 1443, '_wpb_vc_js_status', 'true'),
(815, 1443, '_wpb_vc_js_interface_version', '2'),
(816, 1443, 'slide_template', 'default'),
(817, 1443, '_wpb_shortcodes_custom_css', '.vc_custom_1454830071403{padding-top: 35px !important;padding-bottom: 10px !important;}.vc_custom_1454830580384{padding-top: 10px !important;padding-bottom: 15px !important;}.vc_custom_1454830435704{padding-bottom: 30px !important;}.vc_custom_1454830444480{padding-bottom: 30px !important;}.vc_custom_1454830449907{padding-bottom: 30px !important;}.vc_custom_1454830545472{padding-bottom: 20px !important;}'),
(818, 1443, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(819, 1482, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(820, 1482, '_wp_page_template', 'portfolio-3col.php'),
(821, 1482, '_wpb_vc_js_status', 'false'),
(822, 1482, '_wpb_vc_js_interface_version', '2'),
(823, 1482, 'slide_template', 'default'),
(824, 1484, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(825, 1484, '_wp_page_template', 'portfolio-4col.php'),
(826, 1484, '_wpb_vc_js_status', 'false'),
(827, 1484, '_wpb_vc_js_interface_version', '2'),
(828, 1484, 'slide_template', 'default'),
(829, 2431, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(830, 2431, '_wp_page_template', 'default'),
(831, 2431, '_wpb_vc_js_status', 'true'),
(832, 2431, '_wpb_vc_js_interface_version', '2'),
(833, 2431, 'slide_template', 'default'),
(834, 2451, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(835, 2451, '_wpb_shortcodes_custom_css', '.vc_custom_1454832226651{background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg6.jpg?id=1355) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454832188077{border-top-width: 1px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 15px !important;padding-bottom: 45px !important;border-left-color: #e4e4e4 !important;border-left-style: solid !important;border-right-color: #e4e4e4 !important;border-right-style: solid !important;border-top-color: #e4e4e4 !important;border-top-style: solid !important;border-bottom-color: #e4e4e4 !important;border-bottom-style: solid !important;}.vc_custom_1454832264130{padding-top: 55px !important;padding-bottom: 25px !important;}.vc_custom_1454832271268{border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 1px !important;padding-top: 55px !important;padding-bottom: 25px !important;border-left-color: rgba(6,6,6,0.2) !important;border-left-style: solid !important;border-right-color: rgba(6,6,6,0.2) !important;border-right-style: solid !important;border-top-color: rgba(6,6,6,0.2) !important;border-top-style: solid !important;border-bottom-color: rgba(6,6,6,0.2) !important;border-bottom-style: solid !important;}'),
(836, 2451, '_wp_page_template', 'template-full-page-header.php'),
(837, 2451, '_wpb_vc_js_status', 'true'),
(838, 2451, '_wpb_vc_js_interface_version', '2'),
(839, 2451, 'slide_template', 'default'),
(840, 2451, '_wpb_shortcodes_custom_css', '.vc_custom_1454832226651{background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg6.jpg?id=1355) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454832188077{border-top-width: 1px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 15px !important;padding-bottom: 45px !important;border-left-color: #e4e4e4 !important;border-left-style: solid !important;border-right-color: #e4e4e4 !important;border-right-style: solid !important;border-top-color: #e4e4e4 !important;border-top-style: solid !important;border-bottom-color: #e4e4e4 !important;border-bottom-style: solid !important;}.vc_custom_1454832264130{padding-top: 55px !important;padding-bottom: 25px !important;}.vc_custom_1454832271268{border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 1px !important;padding-top: 55px !important;padding-bottom: 25px !important;border-left-color: rgba(6,6,6,0.2) !important;border-left-style: solid !important;border-right-color: rgba(6,6,6,0.2) !important;border-right-style: solid !important;border-top-color: rgba(6,6,6,0.2) !important;border-top-style: solid !important;border-bottom-color: rgba(6,6,6,0.2) !important;border-bottom-style: solid !important;}'),
(841, 2451, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(842, 2809, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(843, 2809, '_wpb_shortcodes_custom_css', '.vc_custom_1454828466458{padding-top: 45px !important;padding-bottom: 40px !important;}.vc_custom_1454828514758{padding-bottom: 15px !important;background-color: #e4e4e4 !important;}.vc_custom_1454828574726{padding-top: 30px !important;padding-bottom: 60px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454828715309{padding-top: 30px !important;padding-bottom: 60px !important;}'),
(844, 2809, '_wp_page_template', 'template-full.php'),
(845, 2809, '_wpb_vc_js_status', 'true'),
(846, 2809, '_wpb_vc_js_interface_version', '2'),
(847, 2809, 'slide_template', 'default'),
(848, 2809, '_wpb_shortcodes_custom_css', '.vc_custom_1454828466458{padding-top: 45px !important;padding-bottom: 40px !important;}.vc_custom_1454828514758{padding-bottom: 15px !important;background-color: #e4e4e4 !important;}.vc_custom_1454828574726{padding-top: 30px !important;padding-bottom: 60px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1454828715309{padding-top: 30px !important;padding-bottom: 60px !important;}'),
(849, 2809, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(850, 2849, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(851, 2849, '_wp_page_template', 'template-sitemap.php'),
(852, 2849, '_wpb_vc_js_status', 'true'),
(853, 2849, '_wpb_vc_js_interface_version', '2'),
(854, 2849, 'slide_template', 'default'),
(855, 2902, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(856, 2902, '_wp_page_template', 'portfolio-2col.php'),
(857, 2902, '_wpb_vc_js_status', 'false'),
(858, 2902, '_wpb_vc_js_interface_version', '2'),
(859, 2902, 'slide_template', 'default'),
(860, 2940, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(861, 2940, '_wpb_shortcodes_custom_css', '.vc_custom_1407054593927{margin-top: 120px !important;padding-top: 120px !important;padding-bottom: 120px !important;background-color: #f4f4f4 !important;}'),
(862, 2940, '_wp_page_template', 'template-blank.php'),
(863, 2940, '_wpb_vc_js_status', 'true'),
(864, 2940, '_wpb_vc_js_interface_version', '2'),
(865, 2940, 'slide_template', 'default'),
(866, 2940, '_wpb_shortcodes_custom_css', '.vc_custom_1407054593927{margin-top: 120px !important;padding-top: 120px !important;padding-bottom: 120px !important;background-color: #f4f4f4 !important;}'),
(867, 2963, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(868, 2963, '_wp_page_template', 'default'),
(869, 2963, '_wpb_vc_js_status', 'true'),
(870, 2963, '_wpb_vc_js_interface_version', '0'),
(871, 2963, 'slide_template', 'default'),
(979, 1833, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(980, 1833, 'rw_select_gallery_rev_slider', '0'),
(981, 1833, 'slide_template', 'default'),
(982, 1833, 'rw_pf_quote_source', 'William W. Purkey'),
(983, 1833, '_wp_old_slug', 'another-standard-post'),
(984, 1833, '_tcsn_pf_quote_source', 'Steve Jobs'),
(985, 1833, '_wpb_vc_js_status', 'true'),
(986, 1833, '_wpb_vc_js_interface_version', '0'),
(987, 1833, '_thumbnail_id', '2443'),
(990, 1834, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(991, 1834, 'rw_select_gallery_rev_slider', '0'),
(992, 1834, 'slide_template', 'default'),
(993, 1834, 'rw_pf_audio_embed', '<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/142741645&auto_play=false&hide_related=false&visual=true"></iframe>'),
(994, 1834, '_wp_old_slug', 'the-audio-post'),
(995, 1834, '_wp_old_slug', 'the-audio-soundcloud'),
(996, 1834, '_tcsn_pf_audio_embed', '<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/152042116&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe>'),
(997, 1834, '_thumbnail_id', '2438'),
(998, 1834, '_wpb_vc_js_status', 'true'),
(999, 1834, '_wpb_vc_js_interface_version', '0'),
(1002, 1835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1003, 1835, 'slide_template', 'default'),
(1004, 1835, 'rw_select_gallery_rev_slider', '0'),
(1005, 1835, 'rw_pf_link_text', 'Resources for web developers.'),
(1006, 1835, 'rw_pf_link_url', 'http://themeforest.net'),
(1007, 1835, '_tcsn_pf_link_text', 'Web Tutorials'),
(1008, 1835, '_tcsn_pf_link_url', 'http://tutsplus.com/'),
(1009, 1835, '_thumbnail_id', '2444'),
(1010, 1835, '_wpb_vc_js_status', 'false'),
(1011, 1835, '_wpb_vc_js_interface_version', '0'),
(1014, 1836, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1015, 1836, 'slide_template', 'default'),
(1016, 1836, 'rw_select_gallery_rev_slider', '0'),
(1017, 1836, 'rw_pf_video_embed', '<iframe src="//player.vimeo.com/video/83795090" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/83795090">Frames of Life</a> from <a href="http://vimeo.com/mistergu">Günther Gheeraert</a> on <a href="https://vimeo.com">Vimeo</a>.</p>'),
(1018, 1836, '_tcsn_pf_video_embed', '<iframe src="//player.vimeo.com/video/69228454" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'),
(1019, 1836, '_thumbnail_id', '2441'),
(1020, 1836, '_wpb_vc_js_status', 'false'),
(1021, 1836, '_wpb_vc_js_interface_version', '0'),
(1698, 3417, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:35:"revslider/home-biz/home-biz-bg1.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"home-biz-bg1-300x156.jpg";s:5:"width";i:300;s:6:"height";i:156;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"home-biz-bg1-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"home-biz-bg1-1024x533.jpg";s:5:"width";i:1024;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg1-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:24:"home-biz-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:24:"home-biz-bg1-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1024, 1837, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1025, 1837, 'slide_template', 'default'),
(1026, 1837, 'rw_select_gallery_rev_slider', '0'),
(1027, 1837, 'rw_pf_video_embed', '<iframe width="560" height="315" src="//www.youtube.com/embed/XSGBVzeBUbk" frameborder="0" allowfullscreen></iframe>'),
(1028, 1837, '_thumbnail_id', '2446'),
(1029, 1837, '_tcsn_pf_video_embed', '<iframe width="560" height="315" src="//www.youtube.com/embed/XSGBVzeBUbk?rel=0" frameborder="0" allowfullscreen></iframe>'),
(1030, 1837, '_wpb_vc_js_status', 'false'),
(1031, 1837, '_wpb_vc_js_interface_version', '0'),
(1034, 1838, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1035, 1838, 'slide_template', 'default'),
(1036, 1838, 'rw_select_gallery_rev_slider', '0'),
(1037, 1838, '_thumbnail_id', '2448'),
(1038, 1838, '_wpb_vc_js_status', 'false'),
(1039, 1838, '_wpb_vc_js_interface_version', '0'),
(1042, 2430, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1043, 2430, 'slide_template', 'default'),
(1044, 2430, '_tcsn_select_gallery_rev_slider', 'gallery-post-slider'),
(1045, 2430, '_thumbnail_id', '2450'),
(1046, 2430, '_wpb_vc_js_status', 'true'),
(1047, 2430, '_wpb_vc_js_interface_version', '0'),
(1048, 2430, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1697, 3417, '_wp_attached_file', 'revslider/home-biz/home-biz-bg1.jpg'),
(1051, 2690, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1052, 2690, '_thumbnail_id', '2443'),
(1053, 2690, '_wpb_vc_js_status', 'true'),
(1054, 2690, '_wpb_vc_js_interface_version', '2'),
(1055, 2690, 'slide_template', 'default'),
(1056, 2690, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1057, 2964, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1058, 2964, '_wpb_shortcodes_custom_css', '.vc_custom_1410261222160{padding-top: 60px !important;padding-bottom: 60px !important;}'),
(1059, 2964, '_wp_page_template', 'template-full-page-header.php'),
(1060, 2964, '_wpb_shortcodes_custom_css', '.vc_custom_1410261222160{padding-top: 60px !important;padding-bottom: 60px !important;}'),
(1061, 2964, '_wpb_vc_js_status', 'true'),
(1062, 2964, '_wpb_vc_js_interface_version', '0'),
(1063, 2964, 'slide_template', 'default'),
(1064, 2965, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1065, 2965, '_wpb_shortcodes_custom_css', '.vc_custom_1410341601506{padding-top: 60px !important;padding-bottom: 60px !important;}'),
(1066, 2965, '_wp_page_template', 'template-full-page-header.php'),
(1067, 2965, '_wpb_shortcodes_custom_css', '.vc_custom_1410341601506{padding-top: 60px !important;padding-bottom: 60px !important;}'),
(1068, 2965, '_wpb_vc_js_status', 'true'),
(1069, 2965, '_wpb_vc_js_interface_version', '0'),
(1070, 2965, 'slide_template', 'default'),
(1071, 2966, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1072, 2966, '_wpb_shortcodes_custom_css', '.vc_custom_1410343112850{padding-top: 60px !important;padding-bottom: 60px !important;}'),
(1073, 2966, '_wp_page_template', 'default'),
(1074, 2966, '_wpb_shortcodes_custom_css', '.vc_custom_1410343112850{padding-top: 60px !important;padding-bottom: 60px !important;}'),
(1075, 2966, '_wpb_vc_js_status', 'true'),
(1076, 2966, '_wpb_vc_js_interface_version', '0'),
(1077, 2966, 'slide_template', 'default'),
(1497, 1223, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1498, 1223, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1499, 1223, '_thumbnail_id', '1224'),
(1500, 1223, 'slide_template', 'default'),
(1501, 1223, '_tcsn_portfolio_type', 'Image'),
(1502, 1223, '_tcsn_zoom_title', 'A peace of mind'),
(1503, 1223, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1504, 1223, '_wpb_vc_js_status', 'true'),
(1505, 1223, '_wpb_vc_js_interface_version', '0'),
(1506, 1229, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1507, 1229, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1508, 1229, 'slide_template', 'default'),
(1509, 1229, '_tcsn_portfolio_type', 'Image'),
(1510, 1229, '_tcsn_zoom_title', 'Coffee for the soul'),
(1511, 1229, '_wpb_vc_js_status', 'true'),
(1512, 1229, '_wpb_vc_js_interface_version', '0'),
(1513, 1229, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1514, 1229, '_thumbnail_id', '3403'),
(1515, 1229, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1516, 1236, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1517, 1236, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1518, 1236, 'slide_template', 'default'),
(1519, 1236, '_tcsn_portfolio_type', 'Image'),
(1520, 1236, '_tcsn_zoom_title', 'Couple longing dream home'),
(1521, 1236, '_thumbnail_id', '1238'),
(1522, 1236, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1523, 1236, '_wpb_vc_js_status', 'true'),
(1524, 1236, '_wpb_vc_js_interface_version', '0'),
(1525, 1239, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1526, 1239, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1527, 1239, '_thumbnail_id', '1240'),
(1528, 1239, 'slide_template', 'default'),
(1529, 1239, '_tcsn_portfolio_type', 'Image'),
(1530, 1239, '_tcsn_zoom_title', 'Watchout your time'),
(1531, 1239, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1532, 1239, '_wpb_vc_js_status', 'true'),
(1533, 1239, '_wpb_vc_js_interface_version', '0'),
(1534, 1246, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1535, 1246, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1536, 1246, '_thumbnail_id', '1247'),
(1537, 1246, 'slide_template', 'default'),
(1538, 1246, '_tcsn_portfolio_type', 'Image'),
(1539, 1246, '_tcsn_zoom_title', 'Street art artist'),
(1540, 1246, '_wpb_vc_js_status', 'true'),
(1541, 1246, '_wpb_vc_js_interface_version', '0'),
(1542, 1246, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1543, 1374, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1544, 1374, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}');
INSERT INTO `wpfp_postmeta` VALUES
(1545, 1374, '_thumbnail_id', '1375'),
(1546, 1374, 'slide_template', 'default'),
(1547, 1374, '_tcsn_portfolio_type', 'Image'),
(1548, 1374, '_tcsn_zoom_title', 'Cooking essentials'),
(1549, 1374, '_wpb_vc_js_status', 'true'),
(1550, 1374, '_wpb_vc_js_interface_version', '0'),
(1551, 1374, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1552, 2693, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1553, 2693, 'sidebar_id', 'custom-sidebar-99'),
(1554, 2693, 'sidebar_replacement_id', 'widgets-page'),
(1555, 2693, 'sidebar_description', ''),
(1556, 2693, 'sidebar_attachments', 'a:0:{}'),
(1557, 2735, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1558, 2735, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1559, 2735, '_thumbnail_id', '2729'),
(1560, 2735, '_wpb_vc_js_status', 'true'),
(1561, 2735, '_wpb_vc_js_interface_version', '2'),
(1562, 2735, 'slide_template', 'default'),
(1563, 2735, '_tcsn_portfolio_type', 'Image'),
(1564, 2735, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1565, 2735, '_tcsn_zoom_title', 'Camera capturing black coffee cup'),
(1566, 2736, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1567, 2736, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1568, 2736, '_thumbnail_id', '2730'),
(1569, 2736, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1570, 2736, '_wpb_vc_js_status', 'true'),
(1571, 2736, '_wpb_vc_js_interface_version', '2'),
(1572, 2736, 'slide_template', 'default'),
(1573, 2736, '_tcsn_portfolio_type', 'Image'),
(1574, 2736, '_tcsn_zoom_title', 'Banana split waffle cream dessert'),
(1575, 2737, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1576, 2737, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1577, 2737, '_thumbnail_id', '2731'),
(1578, 2737, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1579, 2737, '_wpb_vc_js_status', 'true'),
(1580, 2737, '_wpb_vc_js_interface_version', '2'),
(1581, 2737, 'slide_template', 'default'),
(1582, 2737, '_tcsn_portfolio_type', 'Image'),
(1583, 2737, '_tcsn_zoom_title', 'Reader reading on Kindle'),
(1584, 2738, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1585, 2738, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1586, 2738, '_thumbnail_id', '2732'),
(1587, 2738, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1588, 2738, '_wpb_vc_js_status', 'true'),
(1589, 2738, '_wpb_vc_js_interface_version', '2'),
(1590, 2738, 'slide_template', 'default'),
(1591, 2738, '_tcsn_portfolio_type', 'Image'),
(1592, 2738, '_tcsn_zoom_title', 'Roller skates'),
(1593, 2739, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1594, 2739, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1595, 2739, '_thumbnail_id', '2733'),
(1596, 2739, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1597, 2739, '_wpb_vc_js_status', 'true'),
(1598, 2739, '_wpb_vc_js_interface_version', '2'),
(1599, 2739, 'slide_template', 'default'),
(1600, 2739, '_tcsn_portfolio_type', 'Image'),
(1601, 2739, '_tcsn_zoom_title', 'Spices for life'),
(1602, 2740, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1603, 2740, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1604, 2740, '_thumbnail_id', '2734'),
(1605, 2740, '_wpb_shortcodes_custom_css', '.vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}.vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}.vc_custom_1405777715630{margin-bottom: 30px !important;}'),
(1606, 2740, '_wpb_vc_js_status', 'true'),
(1607, 2740, '_wpb_vc_js_interface_version', '2'),
(1608, 2740, 'slide_template', 'default'),
(1609, 2740, '_tcsn_portfolio_type', 'Image'),
(1610, 2740, '_tcsn_zoom_title', 'Taxi cab on New York roads'),
(1611, 2740, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1612, 2740, '_tcsn_select_gallery_rev_slider', '0'),
(1613, 3066, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1614, 3066, '_billing_country', 'AQ'),
(1615, 3066, '_billing_first_name', 'Emperor'),
(1616, 3066, '_billing_last_name', 'Penguin'),
(1617, 3066, '_billing_company', 'Antartica Inc.'),
(1618, 3066, '_billing_address_1', '90.0000° S, 0.0000° W, polar region'),
(1619, 3066, '_billing_address_2', 'Ross Island'),
(1620, 3066, '_billing_city', 'Ross City'),
(1621, 3066, '_billing_state', 'Antartica'),
(1622, 3066, '_billing_postcode', '96599'),
(1623, 3066, '_billing_email', 'example@example.com'),
(1624, 3066, '_billing_phone', '+672 12 345 6789'),
(1625, 3066, '_shipping_country', 'AQ'),
(1626, 3066, '_shipping_first_name', 'Emperor'),
(1627, 3066, '_shipping_last_name', 'Penguin'),
(1628, 3066, '_shipping_company', 'Antartica Inc.'),
(1629, 3066, '_shipping_address_1', '90.0000° S, 0.0000° W, polar region'),
(1630, 3066, '_shipping_address_2', 'Ross Island'),
(1631, 3066, '_shipping_city', 'Ross City'),
(1632, 3066, '_shipping_state', 'Antartica'),
(1633, 3066, '_shipping_postcode', '96599'),
(1634, 3066, '_payment_method', 'cod'),
(1635, 3066, '_payment_method_title', 'Cash on Delivery'),
(1636, 3066, '_order_shipping', '0'),
(1637, 3066, '_order_discount', '0'),
(1638, 3066, '_cart_discount', '0'),
(1639, 3066, '_order_tax', '0'),
(1640, 3066, '_order_shipping_tax', '0'),
(1641, 3066, '_order_total', '239.00'),
(1642, 3066, '_order_key', 'wc_order_541079ee855b8'),
(1643, 3066, '_customer_user', '1'),
(1644, 3066, '_order_currency', 'GBP'),
(1645, 3066, '_prices_include_tax', 'no'),
(1646, 3066, '_customer_ip_address', '210.211.241.160'),
(1647, 3066, '_customer_user_agent', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0'),
(1648, 3066, '_download_permissions_granted', '1'),
(1649, 3066, '_recorded_sales', 'yes'),
(1650, 3066, '_recorded_coupon_usage_counts', 'yes'),
(1651, 3066, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1652, 5, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1653, 5, '_form', '<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit "Send"]</p>'),
(1654, 5, '_mail', 'a:9:{s:6:"active";b:1;s:7:"subject";s:31:"Craftech Kenya "[your-subject]"";s:6:"sender";s:37:"[your-name] <craftech@craftech.co.ke>";s:9:"recipient";s:23:"craftech@craftech.co.ke";s:4:"body";s:175:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Craftech Kenya (https://craftech.co.ke)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(1655, 5, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:0:"";s:6:"sender";s:0:"";s:9:"recipient";s:0:"";s:4:"body";s:0:"";s:18:"additional_headers";s:0:"";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(1656, 5, '_messages', 'a:23:{s:12:"mail_sent_ok";s:43:"Your message was sent successfully. Thanks.";s:12:"mail_sent_ng";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:16:"validation_error";s:74:"Validation errors occurred. Please confirm the fields and submit it again.";s:4:"spam";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:12:"accept_terms";s:35:"Please accept the terms to proceed.";s:16:"invalid_required";s:31:"Please fill the required field.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:26:"Date format seems invalid.";s:14:"date_too_early";s:23:"This date is too early.";s:13:"date_too_late";s:22:"This date is too late.";s:13:"upload_failed";s:22:"Failed to upload file.";s:24:"upload_file_type_invalid";s:30:"This file type is not allowed.";s:21:"upload_file_too_large";s:23:"This file is too large.";s:23:"upload_failed_php_error";s:38:"Failed to upload file. Error occurred.";s:14:"invalid_number";s:28:"Number format seems invalid.";s:16:"number_too_small";s:25:"This number is too small.";s:16:"number_too_large";s:25:"This number is too large.";s:23:"quiz_answer_not_correct";s:27:"Your answer is not correct.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:13:"invalid_email";s:28:"Email address seems invalid.";s:11:"invalid_url";s:18:"URL seems invalid.";s:11:"invalid_tel";s:31:"Telephone number seems invalid.";}'),
(1657, 5, '_additional_settings', ''),
(1658, 5, '_locale', 'en_US'),
(1660, 269, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1661, 269, '_thumbnail_id', '270'),
(1662, 269, 'slide_template', 'default'),
(1663, 269, '_tcsn_client_info', '4S Media and Communications'),
(1664, 276, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1665, 276, '_thumbnail_id', '277'),
(1666, 276, 'slide_template', 'default'),
(1667, 276, '_tcsn_client_info', 'S & S Musicals'),
(1668, 1606, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1669, 1606, 'slide_template', 'default'),
(1670, 1606, '_tcsn_member_job', 'CEO / Operations'),
(1671, 1606, '_tcsn_member_facebook', '#'),
(1672, 1606, '_tcsn_member_linkedin', '#'),
(1673, 1606, '_tcsn_member_dribbble', '#'),
(1674, 1606, '_thumbnail_id', '1607'),
(1675, 1606, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1676, 2769, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1677, 2769, 'slide_template', 'default'),
(1678, 2769, '_tcsn_member_job', 'Head/Advertising'),
(1679, 2769, '_tcsn_member_instagram', '#'),
(1680, 2769, '_tcsn_member_pinterest', '#'),
(1681, 2769, '_tcsn_member_mail', '#'),
(1899, 3512, 'slide_template', 'default'),
(1683, 2774, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1684, 2774, 'slide_template', 'default'),
(1685, 2774, '_tcsn_member_job', 'Manager / Marketing'),
(1686, 2774, '_tcsn_member_delicious', '#'),
(1687, 2774, '_tcsn_member_googleplus', '#'),
(1688, 2774, '_tcsn_member_linkedin', '#'),
(1690, 2776, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1691, 2776, 'slide_template', 'default'),
(1692, 2776, '_tcsn_member_job', 'Controller / Finance'),
(1693, 2776, '_tcsn_member_googleplus', '#'),
(1694, 2776, '_tcsn_member_linkedin', '#'),
(1695, 2776, '_tcsn_member_tumblr', '#'),
(1703, 3420, '_wp_attached_file', 'revslider/home-biz/quezal-symbol.png'),
(1704, 3420, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:146;s:6:"height";i:146;s:4:"file";s:36:"revslider/home-biz/quezal-symbol.png";s:5:"sizes";a:2:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"quezal-symbol-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"quezal-symbol-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1705, 3421, '_wp_attached_file', 'revslider/home-biz/home-biz-bg2.jpg'),
(1706, 3421, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:35:"revslider/home-biz/home-biz-bg2.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"home-biz-bg2-300x156.jpg";s:5:"width";i:300;s:6:"height";i:156;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"home-biz-bg2-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"home-biz-bg2-1024x533.jpg";s:5:"width";i:1024;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg2-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:24:"home-biz-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:24:"home-biz-bg2-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1707, 3422, '_wp_attached_file', 'revslider/home-biz/thumb-2.png'),
(1708, 3422, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:70;s:4:"file";s:30:"revslider/home-biz/thumb-2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"thumb-2-150x70.png";s:5:"width";i:150;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"thumb-2-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:18:"thumb-2-100x70.png";s:5:"width";i:100;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1709, 3423, '_wp_attached_file', 'revslider/home-biz/home-biz-icon1.png'),
(1710, 3423, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1711, 3424, '_wp_attached_file', 'revslider/home-biz/home-biz-icon2.png'),
(1712, 3424, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1713, 3425, '_wp_attached_file', 'revslider/home-biz/home-biz-icon3.png'),
(1714, 3425, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1715, 3426, '_wp_attached_file', 'revslider/home-biz/home-biz-icon4.png'),
(1716, 3426, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon4.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1717, 3427, '_wp_attached_file', 'revslider/home-biz/home-biz-icon5.png'),
(1718, 3427, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon5.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1719, 3428, '_wp_attached_file', 'revslider/home-biz/home-biz-icon6.png'),
(1720, 3428, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon6.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1721, 3429, '_wp_attached_file', 'revslider/home-biz/home-biz-icon7.png'),
(1722, 3429, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon7.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1723, 3430, '_wp_attached_file', 'revslider/home-biz/home-biz-icon8.png'),
(1724, 3430, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:37:"revslider/home-biz/home-biz-icon8.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1725, 3431, '_wp_attached_file', 'revslider/home-biz/home-biz-bg3.jpg'),
(1726, 3431, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1000;s:4:"file";s:35:"revslider/home-biz/home-biz-bg3.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"home-biz-bg3-300x156.jpg";s:5:"width";i:300;s:6:"height";i:156;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"home-biz-bg3-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"home-biz-bg3-1024x533.jpg";s:5:"width";i:1024;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:24:"home-biz-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"home-biz-bg3-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:24:"home-biz-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:24:"home-biz-bg3-600x313.jpg";s:5:"width";i:600;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"home-biz-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1729, 3433, '_wp_attached_file', 'revslider/home-biz2/home-biz2-bg1.jpg'),
(1730, 3433, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:37:"revslider/home-biz2/home-biz2-bg1.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"home-biz2-bg1-300x84.jpg";s:5:"width";i:300;s:6:"height";i:84;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"home-biz2-bg1-768x216.jpg";s:5:"width";i:768;s:6:"height";i:216;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"home-biz2-bg1-1024x288.jpg";s:5:"width";i:1024;s:6:"height";i:288;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg1-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:25:"home-biz2-bg1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:25:"home-biz2-bg1-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1731, 3434, '_wp_attached_file', 'revslider/home-biz2/home-biz2-cinema-display.png'),
(1732, 3434, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:553;s:6:"height";i:421;s:4:"file";s:48:"revslider/home-biz2/home-biz2-cinema-display.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"home-biz2-cinema-display-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:36:"home-biz2-cinema-display-300x228.png";s:5:"width";i:300;s:6:"height";i:228;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:36:"home-biz2-cinema-display-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:36:"home-biz2-cinema-display-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:5:{s:4:"file";s:36:"home-biz2-cinema-display-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:14:"shop_thumbnail";a:4:{s:4:"file";s:36:"home-biz2-cinema-display-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1733, 3435, '_wp_attached_file', 'revslider/home-biz2/home-biz2-spect.png'),
(1734, 3435, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:282;s:6:"height";i:119;s:4:"file";s:39:"revslider/home-biz2/home-biz2-spect.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"home-biz2-spect-150x119.png";s:5:"width";i:150;s:6:"height";i:119;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:27:"home-biz2-spect-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:27:"home-biz2-spect-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1735, 3436, '_wp_attached_file', 'revslider/home-biz2/home-biz2-bg2.jpg'),
(1736, 3436, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:37:"revslider/home-biz2/home-biz2-bg2.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"home-biz2-bg2-300x84.jpg";s:5:"width";i:300;s:6:"height";i:84;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"home-biz2-bg2-768x216.jpg";s:5:"width";i:768;s:6:"height";i:216;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"home-biz2-bg2-1024x288.jpg";s:5:"width";i:1024;s:6:"height";i:288;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg2-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:25:"home-biz2-bg2-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:25:"home-biz2-bg2-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1737, 3437, '_wp_attached_file', 'revslider/home-biz2/home-biz2-macbook.png'),
(1738, 3437, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:560;s:6:"height";i:325;s:4:"file";s:41:"revslider/home-biz2/home-biz2-macbook.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"home-biz2-macbook-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:29:"home-biz2-macbook-300x174.png";s:5:"width";i:300;s:6:"height";i:174;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:29:"home-biz2-macbook-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-macbook-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:5:{s:4:"file";s:29:"home-biz2-macbook-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:14:"shop_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-macbook-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1739, 3438, '_wp_attached_file', 'revslider/home-biz2/home-biz2-origami.png'),
(1740, 3438, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:227;s:6:"height";i:242;s:4:"file";s:41:"revslider/home-biz2/home-biz2-origami.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"home-biz2-origami-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-origami-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:29:"home-biz2-origami-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1741, 3439, '_wp_attached_file', 'revslider/home-biz2/home-biz2-bg3.jpg'),
(1742, 3439, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:540;s:4:"file";s:37:"revslider/home-biz2/home-biz2-bg3.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"home-biz2-bg3-300x84.jpg";s:5:"width";i:300;s:6:"height";i:84;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"home-biz2-bg3-768x216.jpg";s:5:"width";i:768;s:6:"height";i:216;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"home-biz2-bg3-1024x288.jpg";s:5:"width";i:1024;s:6:"height";i:288;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"home-biz2-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"home-biz2-bg3-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:25:"home-biz2-bg3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:25:"home-biz2-bg3-600x169.jpg";s:5:"width";i:600;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"home-biz2-bg3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1743, 3440, '_wp_attached_file', 'revslider/home-biz2/home-biz2-iPad.png'),
(1744, 3440, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:558;s:6:"height";i:451;s:4:"file";s:38:"revslider/home-biz2/home-biz2-iPad.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"home-biz2-iPad-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:26:"home-biz2-iPad-300x242.png";s:5:"width";i:300;s:6:"height";i:242;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"home-biz2-iPad-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"home-biz2-iPad-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:5:{s:4:"file";s:26:"home-biz2-iPad-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:14:"shop_thumbnail";a:4:{s:4:"file";s:26:"home-biz2-iPad-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1745, 3441, '_wp_attached_file', 'revslider/home-biz2/home-biz2-browserWindow.png'),
(1746, 3441, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:357;s:6:"height";i:197;s:4:"file";s:47:"revslider/home-biz2/home-biz2-browserWindow.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"home-biz2-browserWindow-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:35:"home-biz2-browserWindow-300x166.png";s:5:"width";i:300;s:6:"height";i:166;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:35:"home-biz2-browserWindow-300x197.png";s:5:"width";i:300;s:6:"height";i:197;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:35:"home-biz2-browserWindow-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:5:{s:4:"file";s:35:"home-biz2-browserWindow-300x197.png";s:5:"width";i:300;s:6:"height";i:197;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:14:"shop_thumbnail";a:4:{s:4:"file";s:35:"home-biz2-browserWindow-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1747, 3442, '_wp_attached_file', 'revslider/the-process/process-img1.png'),
(1748, 3442, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:38:"revslider/the-process/process-img1.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"process-img1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"process-img1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1749, 3443, '_wp_attached_file', 'revslider/the-process/arrow.png'),
(1750, 3443, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:31:"revslider/the-process/arrow.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1751, 3444, '_wp_attached_file', 'revslider/the-process/process-img2.png'),
(1752, 3444, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:38:"revslider/the-process/process-img2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"process-img2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img2-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"process-img2-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1753, 3445, '_wp_attached_file', 'revslider/the-process/process-img3.png'),
(1754, 3445, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:38:"revslider/the-process/process-img3.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"process-img3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img3-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"process-img3-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1955, 3515, '_tax_status', 'taxable'),
(1949, 3515, '_edit_last', '1'),
(1950, 3515, '_edit_lock', '1583483654:1'),
(1951, 3515, '_thumbnail_id', '3516'),
(1952, 3515, '_sku', '2'),
(1953, 3515, '_regular_price', '7000'),
(1954, 3515, 'total_sales', '0'),
(1757, 3447, '_wp_attached_file', 'revslider/the-process/process-img5.png'),
(1758, 3447, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:170;s:4:"file";s:38:"revslider/the-process/process-img5.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"process-img5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"process-img5-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"process-img5-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1957, 3515, '_manage_stock', 'yes'),
(1958, 3515, '_backorders', 'notify'),
(1959, 3515, '_sold_individually', 'no'),
(1960, 3515, '_virtual', 'no'),
(1961, 3515, '_downloadable', 'no'),
(1962, 3515, '_download_limit', '-1'),
(1963, 3515, '_download_expiry', '-1'),
(1964, 3515, '_stock', '10'),
(1965, 3515, '_stock_status', 'instock'),
(1966, 3515, '_wc_average_rating', '0'),
(1967, 3515, '_wc_review_count', '0'),
(1968, 3515, '_product_version', '3.9.3'),
(1969, 3515, '_price', '7000'),
(1970, 3515, 'slide_template', 'default'),
(1946, 3515, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1947, 3516, '_wp_attached_file', '2020/03/8-port-with-4-port-PoE.jpg'),
(1948, 3516, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:590;s:6:"height";i:590;s:4:"file";s:34:"2020/03/8-port-with-4-port-PoE.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:34:"8-port-with-4-port-PoE-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:34:"8-port-with-4-port-PoE-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:34:"8-port-with-4-port-PoE-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:0;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:34:"8-port-with-4-port-PoE-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:34:"8-port-with-4-port-PoE-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:34:"8-port-with-4-port-PoE-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1763, 3450, '_wp_attached_file', 'revslider/gallery-post-slider/img2-1200x800.jpg'),
(1764, 3450, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:47:"revslider/gallery-post-slider/img2-1200x800.jpg";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"img2-1200x800-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"img2-1200x800-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"img2-1200x800-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"img2-1200x800-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"img2-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"img2-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"img2-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:25:"img2-1200x800-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:25:"img2-1200x800-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"img2-1200x800-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1876, 3514, '_wp_attached_file', '2020/03/1tb-2-copy.png'),
(1877, 3514, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:500;s:4:"file";s:22:"2020/03/1tb-2-copy.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:22:"1tb-2-copy-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"1tb-2-copy-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:22:"1tb-2-copy-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:0;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:22:"1tb-2-copy-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:4:{s:4:"file";s:22:"1tb-2-copy-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:22:"1tb-2-copy-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1900, 3512, '_edit_lock', '1583483106:1'),
(1878, 3512, '_edit_last', '1'),
(1879, 3512, '_thumbnail_id', '3514'),
(1880, 3512, '_sku', '1'),
(1881, 3512, '_regular_price', '8000'),
(1882, 3512, 'total_sales', '0'),
(1883, 3512, '_tax_status', 'taxable'),
(1884, 3512, '_tax_class', ''),
(1885, 3512, '_manage_stock', 'yes'),
(1886, 3512, '_backorders', 'notify'),
(1887, 3512, '_sold_individually', 'no'),
(1888, 3512, '_virtual', 'no'),
(1889, 3512, '_downloadable', 'no'),
(1769, 3453, '_customize_changeset_uuid', '76270fc2-29c9-4e78-ae98-3ff8ce8dac8e'),
(1770, 3453, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1775, 3456, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:192;s:6:"height";i:192;s:4:"file";s:43:"2018/12/apple-touch-icon-57-precomposed.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:43:"apple-touch-icon-57-precomposed-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:43:"apple-touch-icon-57-precomposed-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:43:"apple-touch-icon-57-precomposed-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1776, 3457, '_wp_attached_file', '2018/12/logo.png'),
(1777, 3457, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3124;s:6:"height";i:1657;s:4:"file";s:16:"2018/12/logo.png";s:5:"sizes";a:10:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"logo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:16:"logo-300x159.png";s:5:"width";i:300;s:6:"height";i:159;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:16:"logo-768x407.png";s:5:"width";i:768;s:6:"height";i:407;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:17:"logo-1024x543.png";s:5:"width";i:1024;s:6:"height";i:543;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:16:"logo-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:16:"logo-600x318.png";s:5:"width";i:600;s:6:"height";i:318;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:16:"logo-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:4:{s:4:"file";s:16:"logo-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:11:"shop_single";a:4:{s:4:"file";s:16:"logo-600x318.png";s:5:"width";i:600;s:6:"height";i:318;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:16:"logo-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_posts`
--

CREATE TABLE `wpfp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_posts`
--

INSERT INTO `wpfp_posts` VALUES
(1, 1, '2018-12-03 05:06:10', '2018-12-03 05:06:10', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2018-12-03 05:06:10', '2018-12-03 05:06:10', '', 0, 'https://craftech.co.ke/?p=1', 0, 'post', '', 0),
(2, 1, '2018-12-03 05:06:10', '2018-12-03 05:06:10', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="https://craftech.co.ke/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2018-12-03 05:06:10', '2018-12-03 05:06:10', '', 0, 'https://craftech.co.ke/?page_id=2', 0, 'page', '', 0),
(3, 1, '2018-12-03 05:06:10', '2018-12-03 05:06:10', '<h2>Who we are</h2><p>Our website address is: https://craftech.co.ke.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><h3>Media</h3><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><h3>Contact forms</h3><h3>Cookies</h3><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h3>Embedded content from other websites</h3><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2>What rights you have over your data</h2><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2018-12-03 05:06:10', '2018-12-03 05:06:10', '', 0, 'https://craftech.co.ke/?page_id=3', 0, 'page', '', 0),
(6, 1, '2018-12-03 05:13:30', '2018-12-03 05:13:30', '<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message] </label>\r\n\r\n[submit "Send"]\n1\nCraftech Kenya "[your-subject]"\n[your-name] <craftech@craftech.co.ke>\ncraftech@craftech.co.ke\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Craftech Kenya (https://craftech.co.ke)\nReply-To: [your-email]\n\n\n\n\nCraftech Kenya "[your-subject]"\nCraftech Kenya <craftech@craftech.co.ke>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Craftech Kenya (https://craftech.co.ke)\nReply-To: craftech@craftech.co.ke\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2018-12-03 11:53:09', '2018-12-03 08:53:09', '', 0, 'https://craftech.co.ke/?post_type=wpcf7_contact_form&#038;p=6', 0, 'wpcf7_contact_form', '', 0),
(7, 1, '2018-12-03 05:19:06', '2018-12-03 05:19:06', '', 'One Click Demo Import - log_file_2018-12-03__05-19-06', '', 'inherit', 'open', 'closed', '', 'one-click-demo-import-log_file_2018-12-03__05-19-06', '', '', '2018-12-03 05:19:06', '2018-12-03 05:19:06', '', 0, 'https://craftech.co.ke/wp-content/uploads/2018/12/log_file_2018-12-03__05-19-06.txt', 0, 'attachment', 'text/plain', 0),
(32, 1, '2014-07-01 12:06:13', '2014-07-01 06:36:13', '', 'color-piece', '', 'inherit', 'open', 'open', '', 'color-piece', '', '', '2014-07-01 12:06:13', '2014-07-01 06:36:13', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/color-piece.png', 0, 'attachment', 'image/png', 0),
(35, 1, '2014-07-01 13:49:38', '2014-07-01 08:19:38', '', 'home-biz-icon1', '', 'inherit', 'open', 'open', '', 'home-biz-icon1', '', '', '2014-07-01 13:49:38', '2014-07-01 08:19:38', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon1.png', 0, 'attachment', 'image/png', 0),
(36, 1, '2014-07-01 13:49:38', '2014-07-01 08:19:38', '', 'home-biz-icon2', '', 'inherit', 'open', 'open', '', 'home-biz-icon2', '', '', '2014-07-01 13:49:38', '2014-07-01 08:19:38', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon2.png', 0, 'attachment', 'image/png', 0),
(37, 1, '2014-07-01 13:49:39', '2014-07-01 08:19:39', '', 'home-biz-icon3', '', 'inherit', 'open', 'open', '', 'home-biz-icon3', '', '', '2014-07-01 13:49:39', '2014-07-01 08:19:39', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon3.png', 0, 'attachment', 'image/png', 0),
(38, 1, '2014-07-01 13:49:40', '2014-07-01 08:19:40', '', 'home-biz-icon4', '', 'inherit', 'open', 'open', '', 'home-biz-icon4', '', '', '2014-07-01 13:49:40', '2014-07-01 08:19:40', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon4.png', 0, 'attachment', 'image/png', 0),
(39, 1, '2014-07-01 13:49:40', '2014-07-01 08:19:40', '', 'home-biz-icon5', '', 'inherit', 'open', 'open', '', 'home-biz-icon5', '', '', '2014-07-01 13:49:40', '2014-07-01 08:19:40', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon5.png', 0, 'attachment', 'image/png', 0),
(40, 1, '2014-07-01 13:49:41', '2014-07-01 08:19:41', '', 'home-biz-icon6', '', 'inherit', 'open', 'open', '', 'home-biz-icon6', '', '', '2014-07-01 13:49:41', '2014-07-01 08:19:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon6.png', 0, 'attachment', 'image/png', 0),
(41, 1, '2014-07-01 13:49:41', '2014-07-01 08:19:41', '', 'home-biz-icon7', '', 'inherit', 'open', 'open', '', 'home-biz-icon7', '', '', '2014-07-01 13:49:41', '2014-07-01 08:19:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon7.png', 0, 'attachment', 'image/png', 0),
(42, 1, '2014-07-01 13:49:42', '2014-07-01 08:19:42', '', 'home-biz-icon8', '', 'inherit', 'open', 'open', '', 'home-biz-icon8', '', '', '2014-07-01 13:49:42', '2014-07-01 08:19:42', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-icon8.png', 0, 'attachment', 'image/png', 0),
(51, 1, '2014-07-01 20:09:21', '2014-07-01 14:39:21', '', 'home-biz-bg2', '', 'inherit', 'open', 'open', '', 'home-biz-bg2', '', '', '2014-07-01 20:09:21', '2014-07-01 14:39:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg2.jpg', 0, 'attachment', 'image/jpeg', 0),
(58, 1, '2014-07-01 20:44:58', '2014-07-01 15:14:58', '', 'home-biz-bg1', '', 'inherit', 'open', 'open', '', 'home-biz-bg1', '', '', '2014-07-01 20:44:58', '2014-07-01 15:14:58', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(59, 1, '2014-07-01 20:45:52', '2014-07-01 15:15:52', '', 'home-biz-bg3', '', 'inherit', 'open', 'open', '', 'home-biz-bg3', '', '', '2014-07-01 20:45:52', '2014-07-01 15:15:52', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(60, 1, '2014-07-02 01:08:53', '2014-07-01 19:38:53', '', 'geometry2', '', 'inherit', 'open', 'open', '', 'geometry2', '', '', '2014-07-02 01:08:53', '2014-07-01 19:38:53', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/geometry2.png', 0, 'attachment', 'image/png', 0),
(68, 1, '2014-07-02 01:12:53', '2014-07-01 19:42:53', '', 'arrow', '', 'inherit', 'open', 'open', '', 'arrow', '', '', '2014-07-02 01:12:53', '2014-07-01 19:42:53', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/arrow.png', 0, 'attachment', 'image/png', 0),
(75, 1, '2014-07-07 15:53:39', '2014-07-07 10:23:39', '', 'home-biz2-bg1', '', 'inherit', 'open', 'open', '', 'home-biz2-bg1', '', '', '2014-07-07 15:53:39', '2014-07-07 10:23:39', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(77, 1, '2014-07-07 15:53:41', '2014-07-07 10:23:41', '', 'home-biz2-spect', '', 'inherit', 'open', 'open', '', 'home-biz2-spect', '', '', '2014-07-07 15:53:41', '2014-07-07 10:23:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-spect.png', 0, 'attachment', 'image/png', 0),
(78, 1, '2014-07-07 16:52:59', '2014-07-07 11:22:59', '', 'home-biz2-origami', '', 'inherit', 'open', 'open', '', 'home-biz2-origami', '', '', '2014-07-07 16:52:59', '2014-07-07 11:22:59', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-origami.png', 0, 'attachment', 'image/png', 0),
(79, 1, '2014-07-07 17:03:06', '2014-07-07 11:33:06', '', 'home-biz2-bg2', '', 'inherit', 'open', 'open', '', 'home-biz2-bg2', '', '', '2014-07-07 17:03:06', '2014-07-07 11:33:06', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-bg2.jpg', 0, 'attachment', 'image/jpeg', 0),
(80, 1, '2014-07-07 21:24:01', '2014-07-07 15:54:01', '', 'home-biz2-browserWindow', '', 'inherit', 'open', 'open', '', 'home-biz2-browserwindow', '', '', '2014-07-07 21:24:01', '2014-07-07 15:54:01', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-browserWindow.png', 0, 'attachment', 'image/png', 0),
(81, 1, '2014-07-07 21:24:03', '2014-07-07 15:54:03', '', 'home-biz2-iPad', '', 'inherit', 'open', 'open', '', 'home-biz2-ipad', '', '', '2014-07-07 21:24:03', '2014-07-07 15:54:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-iPad.png', 0, 'attachment', 'image/png', 0),
(233, 1, '2014-07-08 18:27:07', '2014-07-08 12:57:07', '', 'home-biz2-bg3', '', 'inherit', 'open', 'open', '', 'home-biz2-bg3', '', '', '2014-07-08 18:27:07', '2014-07-08 12:57:07', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(257, 1, '2014-07-10 12:43:46', '2014-07-10 07:13:46', '', 'iPad-showcase', '', 'inherit', 'open', 'open', '', 'ipad-showcase', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 544, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/iPad-showcase.png', 0, 'attachment', 'image/png', 0),
(270, 1, '2014-07-10 13:13:07', '2014-07-10 07:43:07', '', 'user-1', '', 'inherit', 'open', 'open', '', 'user-1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 269, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/user-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(277, 1, '2014-07-10 13:44:01', '2014-07-10 08:14:01', '', 'user-2', '', 'inherit', 'open', 'open', '', 'user-2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 276, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/user-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(284, 1, '2014-07-10 17:57:37', '2014-07-10 12:27:37', '', 'pat-4', '', 'inherit', 'open', 'open', '', 'pat-4', '', '', '2014-07-10 17:57:37', '2014-07-10 12:27:37', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/pat-4.png', 0, 'attachment', 'image/png', 0),
(342, 1, '2014-07-10 22:52:22', '2014-07-10 17:22:22', '', 'strange_bullseyes', '', 'inherit', 'open', 'open', '', 'strange_bullseyes', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 290, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/strange_bullseyes.png', 0, 'attachment', 'image/png', 0),
(425, 1, '2014-07-11 18:25:14', '2014-07-11 12:55:14', '', 'bg1', '', 'inherit', 'open', 'open', '', 'bg1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 290, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(464, 1, '2014-07-11 21:54:10', '2014-07-11 16:24:10', '', 'iPhone-mockup', '', 'inherit', 'open', 'open', '', 'iphone-mockup', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 290, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/iPhone-mockup.png', 0, 'attachment', 'image/png', 0),
(571, 1, '2014-07-12 23:15:08', '2014-07-12 17:45:08', '', 'sushi-303167_640', '', 'inherit', 'open', 'open', '', 'sushi-303167_640', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 553, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/sushi-303167_640.png', 0, 'attachment', 'image/png', 0),
(672, 1, '2014-07-13 13:03:47', '2014-07-13 07:33:47', '', 'bg3', '', 'inherit', 'open', 'open', '', 'bg3', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 553, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(828, 1, '2014-07-14 22:31:19', '2014-07-14 17:01:19', '', 'factsheet', '', 'inherit', 'open', 'open', '', 'factsheet', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 544, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/factsheet.png', 0, 'attachment', 'image/png', 0),
(830, 1, '2014-07-14 22:37:11', '2014-07-14 17:07:11', '', 'thumb-2', '', 'inherit', 'open', 'open', '', 'thumb-2', '', '', '2014-07-14 22:37:11', '2014-07-14 17:07:11', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/thumb-2.png', 0, 'attachment', 'image/png', 0),
(831, 1, '2014-07-14 22:37:12', '2014-07-14 17:07:12', '', 'thumb-3', '', 'inherit', 'open', 'open', '', 'thumb-3', '', '', '2014-07-14 22:37:12', '2014-07-14 17:07:12', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/thumb-3.png', 0, 'attachment', 'image/png', 0),
(832, 1, '2014-07-14 22:37:12', '2014-07-14 17:07:12', '', 'thumb-1', '', 'inherit', 'open', 'open', '', 'thumb-1', '', '', '2014-07-14 22:37:12', '2014-07-14 17:07:12', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/thumb-1.png', 0, 'attachment', 'image/png', 0),
(842, 1, '2014-07-14 23:58:38', '2014-07-14 18:28:38', '', 'process-img1', '', 'inherit', 'open', 'open', '', 'process-img1', '', '', '2014-07-14 23:58:38', '2014-07-14 18:28:38', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/process-img1.png', 0, 'attachment', 'image/png', 0),
(843, 1, '2014-07-14 23:58:38', '2014-07-14 18:28:38', '', 'process-img2', '', 'inherit', 'open', 'open', '', 'process-img2', '', '', '2014-07-14 23:58:38', '2014-07-14 18:28:38', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/process-img2.png', 0, 'attachment', 'image/png', 0),
(844, 1, '2014-07-14 23:58:39', '2014-07-14 18:28:39', '', 'process-img3', '', 'inherit', 'open', 'open', '', 'process-img3', '', '', '2014-07-14 23:58:39', '2014-07-14 18:28:39', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/process-img3.png', 0, 'attachment', 'image/png', 0),
(845, 1, '2014-07-14 23:58:40', '2014-07-14 18:28:40', '', 'process-img4', '', 'inherit', 'open', 'open', '', 'process-img4', '', '', '2014-07-14 23:58:40', '2014-07-14 18:28:40', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/process-img4.png', 0, 'attachment', 'image/png', 0),
(846, 1, '2014-07-14 23:58:41', '2014-07-14 18:28:41', '', 'process-img5', '', 'inherit', 'open', 'open', '', 'process-img5', '', '', '2014-07-14 23:58:41', '2014-07-14 18:28:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/process-img5.png', 0, 'attachment', 'image/png', 0),
(876, 1, '2014-07-15 00:36:41', '2014-07-14 19:06:41', '', 'bg4', '', 'inherit', 'open', 'open', '', 'bg4', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 544, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg4.jpg', 0, 'attachment', 'image/jpeg', 0),
(1224, 1, '2014-07-18 13:55:21', '2014-07-18 08:25:21', '', 'img1-1200x800', '', 'inherit', 'open', 'open', '', 'img1-1200x800', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1223, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img1-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(1238, 1, '2014-07-18 14:22:17', '2014-07-18 08:52:17', '', 'img3-1200x800', '', 'inherit', 'open', 'open', '', 'img3-1200x800', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1236, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img3-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(1240, 1, '2014-07-18 14:34:19', '2014-07-18 09:04:19', '', 'img4-1200x800', '', 'inherit', 'open', 'open', '', 'img4-1200x800', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1239, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img4-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(1247, 1, '2014-07-18 14:43:33', '2014-07-18 09:13:33', '', 'img5-1200x800', '', 'inherit', 'open', 'open', '', 'img5-1200x800', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1246, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img5-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(1276, 1, '2014-07-18 23:36:08', '2014-07-18 18:06:08', '', 'footer-bg', '', 'inherit', 'open', 'open', '', 'footer-bg', '', '', '2014-07-18 23:36:08', '2014-07-18 18:06:08', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/footer-bg.jpg', 0, 'attachment', 'image/jpeg', 0),
(1355, 1, '2014-07-19 13:05:54', '2014-07-19 07:35:54', '', 'bg6', '', 'inherit', 'open', 'open', '', 'bg6', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 557, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg6.jpg', 0, 'attachment', 'image/jpeg', 0),
(1366, 1, '2014-07-19 13:16:06', '2014-07-19 07:46:06', '', 'bg7', '', 'inherit', 'open', 'open', '', 'bg7', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 557, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg', 0, 'attachment', 'image/jpeg', 0),
(1375, 1, '2014-07-19 16:06:42', '2014-07-19 10:36:42', '', 'img6-1200x800', '', 'inherit', 'open', 'open', '', 'img6-1200x800', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1374, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img6-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(1566, 1, '2014-07-25 22:41:01', '2014-07-25 17:11:01', '', 'sig', '', 'inherit', 'open', 'open', '', 'sig', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 837, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/sig.png', 0, 'attachment', 'image/png', 0),
(1607, 1, '2014-07-26 10:28:27', '2014-07-26 04:58:27', '', 'member-1', '', 'inherit', 'open', 'open', '', 'member-1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1606, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/member-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(1682, 1, '2014-07-26 13:28:14', '2014-07-26 07:58:14', '', 'png-icon2', '', 'inherit', 'open', 'open', '', 'png-icon2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 19, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/png-icon2.png', 0, 'attachment', 'image/png', 0),
(1685, 1, '2014-07-26 13:32:05', '2014-07-26 08:02:05', '', 'png-icon3', '', 'inherit', 'open', 'open', '', 'png-icon3', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 19, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/png-icon3.png', 0, 'attachment', 'image/png', 0),
(1696, 1, '2014-07-26 13:46:56', '2014-07-26 08:16:56', '', 'png-icon1', '', 'inherit', 'open', 'open', '', 'png-icon1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 19, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/png-icon1.png', 0, 'attachment', 'image/png', 0),
(2438, 1, '2014-07-26 19:04:18', '2014-07-26 13:34:18', '', 'img-blog1', '', 'inherit', 'open', 'open', '', 'img-blog1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1834, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2440, 1, '2014-07-26 19:08:59', '2014-07-26 13:38:59', '', 'img-blog2', '', 'inherit', 'open', 'open', '', 'img-blog2', '', '', '2014-07-26 19:08:59', '2014-07-26 13:38:59', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2441, 1, '2014-07-26 19:11:39', '2014-07-26 13:41:39', '', 'img-blog3', '', 'inherit', 'open', 'open', '', 'img-blog3', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1836, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog3.jpg', 0, 'attachment', 'image/jpeg', 0),
(2443, 1, '2014-07-26 19:20:52', '2014-07-26 13:50:52', '', 'img-blog4', '', 'inherit', 'open', 'open', '', 'img-blog4', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1833, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog4.jpg', 0, 'attachment', 'image/jpeg', 0),
(2444, 1, '2014-07-26 19:21:20', '2014-07-26 13:51:20', '', 'img-blog5', '', 'inherit', 'open', 'open', '', 'img-blog5', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1835, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog5.jpg', 0, 'attachment', 'image/jpeg', 0),
(2446, 1, '2014-07-26 19:21:54', '2014-07-26 13:51:54', '', 'img-blog7', '', 'inherit', 'open', 'open', '', 'img-blog7', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1837, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog7.jpg', 0, 'attachment', 'image/jpeg', 0),
(2448, 1, '2014-07-26 19:22:21', '2014-07-26 13:52:21', '', 'img-blog6', '', 'inherit', 'open', 'open', '', 'img-blog6', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 1838, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog6.jpg', 0, 'attachment', 'image/jpeg', 0),
(2450, 1, '2014-07-26 19:23:58', '2014-07-26 13:53:58', '', 'img-blog8', '', 'inherit', 'open', 'open', '', 'img-blog8', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 2430, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-blog8.jpg', 0, 'attachment', 'image/jpeg', 0),
(2544, 1, '2014-07-27 12:00:57', '2014-07-27 06:30:57', '', 'bg9', '', 'inherit', 'open', 'open', '', 'bg9', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 540, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg9.jpg', 0, 'attachment', 'image/jpeg', 0),
(2590, 1, '2014-07-27 13:06:39', '2014-07-27 07:36:39', '', 'img-500x500', '', 'inherit', 'open', 'open', '', 'img-500x500', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 290, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-500x500.jpg', 0, 'attachment', 'image/jpeg', 0),
(2605, 1, '2014-07-27 13:20:21', '2014-07-27 07:50:21', '', 'img-300x300', '', 'inherit', 'open', 'open', '', 'img-300x300', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 290, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img-300x300.jpg', 0, 'attachment', 'image/jpeg', 0),
(2729, 1, '2014-07-30 16:06:35', '2014-07-30 10:36:35', '', 'img7-1200x800', '', 'inherit', 'open', 'open', '', 'img7-1200x800', '', '', '2014-07-30 16:06:35', '2014-07-30 10:36:35', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img7-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(2730, 1, '2014-07-30 16:06:36', '2014-07-30 10:36:36', '', 'img8-1200x800', '', 'inherit', 'open', 'open', '', 'img8-1200x800', '', '', '2014-07-30 16:06:36', '2014-07-30 10:36:36', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img8-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(2731, 1, '2014-07-30 16:06:37', '2014-07-30 10:36:37', '', 'img9-1200x800', '', 'inherit', 'open', 'open', '', 'img9-1200x800', '', '', '2014-07-30 16:06:37', '2014-07-30 10:36:37', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img9-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(2732, 1, '2014-07-30 16:06:38', '2014-07-30 10:36:38', '', 'img10-1200x800', '', 'inherit', 'open', 'open', '', 'img10-1200x800', '', '', '2014-07-30 16:06:38', '2014-07-30 10:36:38', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img10-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(2733, 1, '2014-07-30 16:06:39', '2014-07-30 10:36:39', '', 'img11-1200x800', '', 'inherit', 'open', 'open', '', 'img11-1200x800', '', '', '2014-07-30 16:06:39', '2014-07-30 10:36:39', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img11-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(2734, 1, '2014-07-30 16:06:40', '2014-07-30 10:36:40', '', 'img12-1200x800', '', 'inherit', 'open', 'open', '', 'img12-1200x800', '', '', '2014-07-30 16:06:40', '2014-07-30 10:36:40', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img12-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(2864, 1, '2014-08-01 20:46:30', '2014-08-01 15:16:30', '', 'home-biz2-macbook', '', 'inherit', 'open', 'open', '', 'home-biz2-macbook', '', '', '2014-08-01 20:46:30', '2014-08-01 15:16:30', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-macbook.png', 0, 'attachment', 'image/png', 0),
(2976, 1, '2014-09-09 16:04:13', '2014-09-09 10:34:13', '', 'webbook2', '', 'inherit', 'open', 'open', '', 'webbook2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/webbook2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2977, 1, '2014-09-09 16:04:21', '2014-09-09 10:34:21', '', 'webcd', '', 'inherit', 'open', 'open', '', 'webcd', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/webcd.jpg', 0, 'attachment', 'image/jpeg', 0),
(2978, 1, '2014-09-09 16:04:23', '2014-09-09 10:34:23', '', 'anibook1', '', 'inherit', 'open', 'open', '', 'anibook1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/anibook1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2979, 1, '2014-09-09 16:04:26', '2014-09-09 10:34:26', '', 'anibook2', '', 'inherit', 'open', 'open', '', 'anibook2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/anibook2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2980, 1, '2014-09-09 16:04:33', '2014-09-09 10:34:33', '', 'anicd', '', 'inherit', 'open', 'open', '', 'anicd', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/anicd.jpg', 0, 'attachment', 'image/jpeg', 0),
(2981, 1, '2014-09-09 16:04:36', '2014-09-09 10:34:36', '', 'bizbook1', '', 'inherit', 'open', 'open', '', 'bizbook1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bizbook1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2982, 1, '2014-09-09 16:04:38', '2014-09-09 10:34:38', '', 'bizbook2', '', 'inherit', 'open', 'open', '', 'bizbook2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bizbook2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2983, 1, '2014-09-09 16:04:40', '2014-09-09 10:34:40', '', 'bizcd', '', 'inherit', 'open', 'open', '', 'bizcd', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bizcd.jpg', 0, 'attachment', 'image/jpeg', 0),
(2984, 1, '2014-09-09 16:04:44', '2014-09-09 10:34:44', '', 'devbook1', '', 'inherit', 'open', 'open', '', 'devbook1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/devbook1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2985, 1, '2014-09-09 16:04:46', '2014-09-09 10:34:46', '', 'devbook2', '', 'inherit', 'open', 'open', '', 'devbook2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/devbook2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2986, 1, '2014-09-09 16:04:50', '2014-09-09 10:34:50', '', 'devcd', '', 'inherit', 'open', 'open', '', 'devcd', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/devcd.jpg', 0, 'attachment', 'image/jpeg', 0),
(2987, 1, '2014-09-09 16:04:55', '2014-09-09 10:34:55', '', 'edubook1', '', 'inherit', 'open', 'open', '', 'edubook1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/edubook1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2988, 1, '2014-09-09 16:05:00', '2014-09-09 10:35:00', '', 'edubook2', '', 'inherit', 'open', 'open', '', 'edubook2', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/edubook2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2989, 1, '2014-09-09 16:05:04', '2014-09-09 10:35:04', '', 'educd', '', 'inherit', 'open', 'open', '', 'educd', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/educd.jpg', 0, 'attachment', 'image/jpeg', 0),
(2990, 1, '2014-09-09 16:05:07', '2014-09-09 10:35:07', '', 'webbook1', '', 'inherit', 'open', 'open', '', 'webbook1', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/webbook1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2992, 1, '2014-09-09 17:57:02', '2014-09-09 17:57:02', '', 'home-biz-bg1.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz-bg1-jpg', '', '', '2014-09-09 17:57:02', '2014-09-09 17:57:02', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2993, 1, '2014-09-09 17:57:02', '2014-09-09 17:57:02', '', 'color-piece.png', '', 'inherit', 'closed', 'closed', '', 'color-piece-png', '', '', '2014-09-09 17:57:02', '2014-09-09 17:57:02', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/color-piece.png', 0, 'attachment', 'image/png', 0),
(2994, 1, '2014-09-09 17:57:02', '2014-09-09 17:57:02', '', 'quezal-symbol.png', '', 'inherit', 'closed', 'closed', '', 'quezal-symbol-png', '', '', '2014-09-09 17:57:02', '2014-09-09 17:57:02', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/quezal-symbol.png', 0, 'attachment', 'image/png', 0),
(2995, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-bg2.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz-bg2-jpg', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-bg2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2996, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon1.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon1-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon1.png', 0, 'attachment', 'image/png', 0),
(2997, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon2.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon2-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon2.png', 0, 'attachment', 'image/png', 0),
(2998, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon3.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon3-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon3.png', 0, 'attachment', 'image/png', 0),
(2999, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon4.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon4-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon4.png', 0, 'attachment', 'image/png', 0),
(3000, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon5.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon5-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon5.png', 0, 'attachment', 'image/png', 0),
(3001, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon6.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon6-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon6.png', 0, 'attachment', 'image/png', 0),
(3002, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon7.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon7-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon7.png', 0, 'attachment', 'image/png', 0),
(3003, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-icon8.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon8-png', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-icon8.png', 0, 'attachment', 'image/png', 0),
(3004, 1, '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 'home-biz-bg3.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz-bg3-jpg', '', '', '2014-09-09 17:57:03', '2014-09-09 17:57:03', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/home-biz-bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3005, 1, '2014-09-09 17:59:47', '2014-09-09 17:59:47', '', 'home-biz2-bg1.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz2-bg1-jpg', '', '', '2014-09-09 17:59:47', '2014-09-09 17:59:47', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3006, 1, '2014-09-09 17:59:47', '2014-09-09 17:59:47', '', 'home-biz2-cinema-display.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-cinema-display-png', '', '', '2014-09-09 17:59:47', '2014-09-09 17:59:47', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-cinema-display.png', 0, 'attachment', 'image/png', 0),
(3007, 1, '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 'home-biz2-spect.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-spect-png', '', '', '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-spect.png', 0, 'attachment', 'image/png', 0),
(3008, 1, '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 'home-biz2-bg2.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz2-bg2-jpg', '', '', '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-bg2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3009, 1, '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 'home-biz2-macbook.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-macbook-png', '', '', '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-macbook.png', 0, 'attachment', 'image/png', 0),
(3010, 1, '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 'home-biz2-origami.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-origami-png', '', '', '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-origami.png', 0, 'attachment', 'image/png', 0),
(3011, 1, '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 'home-biz2-bg3.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz2-bg3-jpg', '', '', '2014-09-09 17:59:48', '2014-09-09 17:59:48', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3012, 1, '2014-09-09 17:59:49', '2014-09-09 17:59:49', '', 'home-biz2-iPad.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-ipad-png', '', '', '2014-09-09 17:59:49', '2014-09-09 17:59:49', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-iPad.png', 0, 'attachment', 'image/png', 0),
(3013, 1, '2014-09-09 17:59:49', '2014-09-09 17:59:49', '', 'home-biz2-browserWindow.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-browserwindow-png', '', '', '2014-09-09 17:59:49', '2014-09-09 17:59:49', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz2/home-biz2-browserWindow.png', 0, 'attachment', 'image/png', 0),
(3014, 1, '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 'process-img1.png', '', 'inherit', 'closed', 'closed', '', 'process-img1-png', '', '', '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/the-process/process-img1.png', 0, 'attachment', 'image/png', 0),
(3015, 1, '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 'arrow.png', '', 'inherit', 'closed', 'closed', '', 'arrow-png', '', '', '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/the-process/arrow.png', 0, 'attachment', 'image/png', 0),
(3016, 1, '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 'process-img2.png', '', 'inherit', 'closed', 'closed', '', 'process-img2-png', '', '', '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/the-process/process-img2.png', 0, 'attachment', 'image/png', 0),
(3017, 1, '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 'process-img3.png', '', 'inherit', 'closed', 'closed', '', 'process-img3-png', '', '', '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/the-process/process-img3.png', 0, 'attachment', 'image/png', 0),
(3018, 1, '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 'process-img4.png', '', 'inherit', 'closed', 'closed', '', 'process-img4-png', '', '', '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/the-process/process-img4.png', 0, 'attachment', 'image/png', 0),
(3019, 1, '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 'process-img5.png', '', 'inherit', 'closed', 'closed', '', 'process-img5-png', '', '', '2014-09-09 18:00:00', '2014-09-09 18:00:00', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/the-process/process-img5.png', 0, 'attachment', 'image/png', 0),
(3515, 1, '2020-03-06 11:34:13', '2020-03-06 08:34:13', '', 'TP Link 8 Port Switch', 'Model : TP Link 8 Port POE Switch\r\n\r\nPOE Ports : 4', 'publish', 'open', 'closed', '', 'tp-link-8-port-switch', '', '', '2020-03-06 11:34:13', '2020-03-06 08:34:13', '', 0, 'https://craftech.co.ke/?post_type=product&#038;p=3515', 0, 'product', '', 0),
(3021, 1, '2014-09-09 18:00:34', '2014-09-09 18:00:34', '', 'img3-1200x800.jpg', '', 'inherit', 'closed', 'closed', '', 'img3-1200x800-jpg', '', '', '2014-09-09 18:00:34', '2014-09-09 18:00:34', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/gallery-post-slider/img3-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(3022, 1, '2014-09-09 18:00:35', '2014-09-09 18:00:35', '', 'img2-1200x800.jpg', '', 'inherit', 'closed', 'closed', '', 'img2-1200x800-jpg', '', '', '2018-12-03 05:19:21', '2018-12-03 05:19:21', '', 711, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/gallery-post-slider/img2-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(3385, 1, '2016-11-19 10:47:34', '2016-11-19 10:47:34', '', 'thumb-1.png', '', 'inherit', 'closed', 'closed', '', 'thumb-1-png', '', '', '2016-11-19 10:47:34', '2016-11-19 10:47:34', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/thumb-1.png', 0, 'attachment', 'image/png', 0),
(3386, 1, '2016-11-19 10:47:35', '2016-11-19 10:47:35', '', 'thumb-2.png', '', 'inherit', 'closed', 'closed', '', 'thumb-2-png', '', '', '2016-11-19 10:47:35', '2016-11-19 10:47:35', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/thumb-2.png', 0, 'attachment', 'image/png', 0),
(3387, 1, '2016-11-19 10:47:36', '2016-11-19 10:47:36', '', 'thumb-3.png', '', 'inherit', 'closed', 'closed', '', 'thumb-3-png', '', '', '2016-11-19 10:47:36', '2016-11-19 10:47:36', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/revslider/home-biz/thumb-3.png', 0, 'attachment', 'image/png', 0),
(3401, 1, '2017-11-22 16:06:58', '2017-11-22 10:36:58', '', 'Theme Backup - Quezal - 2.4.2', '', 'inherit', 'open', 'closed', '', 'theme-backup-quezal-2-4-2', '', '', '2017-11-22 16:06:58', '2017-11-22 10:36:58', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/quezal-2.4.2-QE7XQW1Fq1DR2nP.zip', 0, 'attachment', 'application/zip', 0),
(3403, 1, '2017-12-24 01:08:02', '2017-12-23 19:38:02', '', 'img2-1200x800', '', 'inherit', 'open', 'closed', '', 'img2-1200x800', '', '', '2017-12-24 01:08:02', '2017-12-23 19:38:02', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img2-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(3404, 1, '2017-12-24 01:08:38', '2017-12-23 19:38:38', '', 'img2-1200x800', '', 'inherit', 'open', 'closed', '', 'img2-1200x800-2', '', '', '2017-12-24 01:08:38', '2017-12-23 19:38:38', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/img2-1200x800-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3408, 1, '2017-12-24 11:23:34', '2017-12-24 05:53:34', '', 'Theme Backup - Quezal - 2.5.0', '', 'inherit', 'open', 'closed', '', 'theme-backup-quezal-2-5-0', '', '', '2017-12-24 11:23:34', '2017-12-24 05:53:34', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/quezal-2.5.0-qrheKTtJGz9ol9.zip', 0, 'attachment', 'application/zip', 0),
(3410, 1, '2017-12-24 11:34:07', '2017-12-24 06:04:07', '', 'Theme Backup - Quezal - 2.5.1', '', 'inherit', 'open', 'closed', '', 'theme-backup-quezal-2-5-1', '', '', '2017-12-24 11:34:07', '2017-12-24 06:04:07', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/quezal-2.5.1-GCqgrMATNVZN7CYNs.zip', 0, 'attachment', 'application/zip', 0),
(3414, 1, '2018-05-08 16:35:40', '2018-05-08 11:05:40', '', 'Theme Backup - Quezal - 2.5.1', '', 'inherit', 'open', 'closed', '', 'theme-backup-quezal-2-5-1-2', '', '', '2018-05-08 16:35:40', '2018-05-08 11:05:40', '', 0, 'http://wordpress.tanshcreative.com/quezal/wp-content/uploads/quezal-2.5.1-LyYxGGW6biYam9WUQUd.zip', 0, 'attachment', 'application/zip', 0),
(2870, 1, '2014-09-09 15:35:21', '2014-09-09 10:05:21', '', 'Home', '', 'publish', 'open', 'closed', '', 'home', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/?p=2870', 1, 'nav_menu_item', '', 0),
(3461, 1, '2018-12-03 09:00:45', '2018-12-03 06:00:45', '', 'Digital Program Code', 'Digital language code from a computer program.', 'inherit', 'open', 'closed', '', 'digital-program-code', '', '', '2018-12-03 09:00:45', '2018-12-03 06:00:45', '', 553, 'https://craftech.co.ke/wp-content/uploads/2018/12/bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3487, 1, '2019-01-03 14:18:33', '2019-01-03 11:18:33', '<p>[vc_row css=".vc_custom_1454831500869{padding-top: 60px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="pricetags" color="#00a5ce" size="64px"]</p>\n<h2 style="text-align: center;">99.999% Efficient services</h2>\n<p style="text-align: center;">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/4"][pricing title="Basic" currency="Ksh." price="2000" price_label="/month" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]One Branch[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<b>Phone Support</b>[/list_item][list_item]<b>Trouble Shooting</b>[/list_item][list_item]<strong> Cost covers basic repairs</strong>[/list_item][list_item]<strong>Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Silver" currency="Ksh" price="5000" price_label="/month" button_content="Talk to Us" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 1[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support up to two branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Basic Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Platinum" currency="Ksh." price="10000" price_label="/month" color="mybtn-green" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2" table="featured-table"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 2[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support up to three branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Intermediate Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Gold" currency="Ksh" price="40000" price_label="/month" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]Branch ++ [/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support to all branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Complex Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>][list_item]Loaner Laptop while we work on yours [/list_item][list_item]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][/vc_row][vc_row css=".vc_custom_1454831571856{padding-top: 30px !important;padding-bottom: 25px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="others-line-questionmark" color="#ce0027" size="64px"]</p>\n<p>[/vc_column_text][vc_column_text]</p>\n<h4 style="text-align: center;">Frequently Asked Questions</h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]<b><span lang="EN-GB">1. What do I do when my computer crashes?</span></b></p>\n<p><span lang="EN-GB">There are many reasons why a computer may just stop working or "freeze". Most of the time there isn''t much we can do about it, it is a fact of life that computer programs have become complex that occasionally users will experience problems even when performing simple tasks. When your computer no longer responds to keyboard commands your best bet is to restart the computer and try opening programs you were using one at a time to try replicate the freeze. If the freeze doesn’t occur again thank God and continue pushing work , If it does give us a call.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">3. My printer is printing smudged/distorted pages?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">When printing on untraditional paper your printer may experience smudges, un-even or crooked text, and/or text that runs off the edges of the paper. Your printer may be printing fuzzy, blurry, and/or other faint text because of dirty print heads. All modern printers have some type of printer cleaning, self-test, and/or diagnose mode that can be performed to check and clean the printers print heads and other internal equipment used to print.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">5. Can a virus damage computer hardware?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">A Computer virus may damage your computers hardware indirectly depending on the how the virus is programmed to alter the machines normal operation. for example Viruses which are crypto currency based may overwork your CPU and lead to overheating . This will cause your CPU Fan to overwork and bearings to wear out leading to a new CPU fan . Contact us if you suspect that your machine is infected with any kind of virus .</span>[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">2. Is it safe to turn off a Windows computer without doing a shut down?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">Users should not simply press the power button or restart the computer while Windows is still running unless there is an issue with the computer. Microsoft has included the shutdown feature because it enables a computer to go through all the necessary steps that are required before turning off the computer. In fact, many versions of Microsoft Windows will check the computer for any problems if the computer is not shut down properly.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">4. I lost my printer installation disc, how can I install my printer?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">A missing printer installation disc is not the end and will not require you to look for another one. Currently all printer and other hardware manufacturers provide driver downloads on their websites. Just google your respective printer to get its installation drivers, and follow the installation process.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">6. If I format or erase my hard drive will it remove a virus?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">If your computer is infected with a virus formatting or erasing the hard disk drive and starting over will almost always remove any type of virus. However, keep in mind if backups have been made that contain the virus, other media or drives connected to the computer have a virus, your computer is connected to another computer on a network with a virus, and/or the virus is stored on some other type of software you use with your computer it can become re-infected if not properly protected.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831408109{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_row_inner][vc_column_inner width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?" contact_info="info@example.com"][text_style size="20px" line_height="" color=""]Craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us" contact_info="+1 800 234 5678"][text_style size="20px" line_height="" color=""]+ 254 778 859 139[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online" contact_info="Mon - Fri: 10:00am to 6:00pm"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Pricing Variation 1', '', 'inherit', 'closed', 'closed', '', '1053-revision-v1', '', '', '2019-01-03 14:18:33', '2019-01-03 11:18:33', '', 1053, 'https://craftech.co.ke/2019/01/03/1053-revision-v1/', 0, 'revision', '', 0),
(3454, 1, '2018-12-03 08:28:48', '2018-12-03 05:28:48', '', 'Home', '', 'inherit', 'closed', 'closed', '', '3453-revision-v1', '', '', '2018-12-03 08:28:48', '2018-12-03 05:28:48', '', 3453, 'https://craftech.co.ke/2018/12/03/3453-revision-v1/', 0, 'revision', '', 0),
(2950, 1, '2014-09-09 15:35:22', '2014-09-09 10:05:22', ' ', '', '', 'publish', 'open', 'closed', '', '2950', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/?p=2950', 2, 'nav_menu_item', '', 0),
(3115, 1, '2015-12-09 18:04:47', '2015-12-09 12:34:47', '<p>\r\n<input type="email" id="mc4wp_email" name="EMAIL" placeholder="Your email address" required />\r\n</p>\r\n<p>\r\n<input type="submit" value="Sign up" />\r\n</p>', 'Default sign-up form', '', 'publish', 'closed', 'closed', '', 'default-sign-up-form', '', '', '2015-12-09 18:04:47', '2015-12-09 12:34:47', '', 0, 'http://wordpress.tanshcreative.com/quezal/mc4wp-form/default-sign-up-form/', 0, 'mc4wp-form', '', 0),
(19, 1, '2014-07-01 11:53:59', '2014-07-01 06:23:59', '<p>[vc_row fullwidth_row="yes" css=".vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}"][vc_column][vc_column_text][text_style size="20px" line_height="" color=Grey]What can we do for you and your business[/text_style][spacer height="10px"][text_style size="24px" line_height="34px" color="#545454"]Your business is growing and your IT infrastructure isn’t keeping up. You need IT solutions that match your growth plans? Then here is a few things we can do to ensure your business maintains standards that customers demand. Feel free to consult us on[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/3"][box bg_color="#edeadf"]</p>\n<h4>[text_style size="" line_height="" color="#ce3f00"]Web Design, Development &amp;  Marketing<br />\n[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#dfe9ed"]</p>\n<h4>[text_style size="" line_height="" color="#00a5ce"]IT Support Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#e6eddf"]</p>\n<h4>[text_style size="" line_height="" color="#74ce00"]General ICT Consultation and Training Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]&nbsp;[/box][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830989293{padding-top: 15px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="pencil" icon_bg="#a9c5c8" icon_color="#ffffff" heading="ICT Consultancy Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="bucket" icon_bg="#c8c1a9" icon_color="#ffffff" heading="Computers, Peripherals and Accessories"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="browser" icon_bg="#c0c8a9" icon_color="#ffffff" heading="Web Design & Development"][/icon_feature][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830995831{padding-bottom: 45px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="cloud6" icon_bg="#c5a9c8" icon_color="#ffffff" heading="Network and Infrustructure Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="ribbon2" icon_bg="#a9adc8" icon_color="#ffffff" heading="Information Systems Security"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="lightbulb2" icon_bg="#a9c8c5" icon_color="#ffffff" heading="ICT Support Services & Infrustructure leasing"][/icon_feature][/vc_column][/vc_row]</p>\n', 'Services', '', 'publish', 'open', 'open', '', 'services', '', '', '2018-12-03 11:25:26', '2018-12-03 08:25:26', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=19', 0, 'page', '', 0);
INSERT INTO `wpfp_posts` VALUES
(3473, 1, '2018-12-03 10:42:12', '2018-12-03 07:42:12', '<p>[vc_row fullwidth_row="yes" css=".vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}"][vc_column][vc_column_text][text_style size="20px" line_height="" color=Grey]What can we do for you and your business[/text_style][spacer height="10px"][text_style size="24px" line_height="34px" color="#545454"]Your business is growing and your IT infrastructure isn’t keeping up. You need IT solutions that match your growth plans? Then here is a few things we can do to ensure your business maintains standards that customers demand. Feel free to consult us on[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/3"][box bg_color="#edeadf"]</p>\n<h4>[text_style size="" line_height="" color="#ce3f00"]Web Design, Development &amp;  Marketing<br />\n[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]</p>\n<p>&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#dfe9ed"]</p>\n<h4>[text_style size="" line_height="" color="#00a5ce"]IT Support Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]</p>\n<p>&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#e6eddf"]</p>\n<h4>[text_style size="" line_height="" color="#74ce00"]General ICT Consultation and Training Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]</p>\n<p>&nbsp;[/box][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830989293{padding-top: 15px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="pencil" icon_bg="#a9c5c8" icon_color="#ffffff" heading="ICT Consultancy Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="bucket" icon_bg="#c8c1a9" icon_color="#ffffff" heading="Computers, Peripherals and Accessories"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="browser" icon_bg="#c0c8a9" icon_color="#ffffff" heading="Web Design & Development"][/icon_feature][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830995831{padding-bottom: 45px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="cloud6" icon_bg="#c5a9c8" icon_color="#ffffff" heading="Network and Infrustructure Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="ribbon2" icon_bg="#a9adc8" icon_color="#ffffff" heading="Information Systems Security"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="lightbulb2" icon_bg="#a9c8c5" icon_color="#ffffff" heading="ICT Support Services "][/icon_feature][/vc_column][/vc_row]</p>\n', 'Services', '', 'inherit', 'closed', 'closed', '', '19-revision-v1', '', '', '2018-12-03 10:42:12', '2018-12-03 07:42:12', '', 19, 'https://craftech.co.ke/2018/12/03/19-revision-v1/', 0, 'revision', '', 0),
(3472, 1, '2018-12-03 10:41:37', '2018-12-03 07:41:37', '<p>[vc_row fullwidth_row="yes" css=".vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}"][vc_column][vc_column_text][text_style size="20px" line_height="" color=Grey]What can we do for you and your business[/text_style][spacer height="10px"][text_style size="24px" line_height="34px" color="#545454"]Your business is growing and your IT infrastructure isn’t keeping up. You need IT solutions that match your growth plans? Then here is a few things we can do to ensure your business maintains standards that customers demand. Feel free to consult us on[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/3"][box bg_color="#edeadf"]</p>\n<h4>[text_style size="" line_height="" color="#ce3f00"]Web Design, Development &amp;  Marketing<br />\n[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]</p>\n<p>&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#dfe9ed"]</p>\n<h4>[text_style size="" line_height="" color="#00a5ce"]IT Support Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]</p>\n<p>&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#e6eddf"]</p>\n<h4>[text_style size="" line_height="" color="#74ce00"]General ICT Consultation and Training Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]</p>\n<p>&nbsp;[/box][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830989293{padding-top: 15px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="pencil" icon_bg="#a9c5c8" icon_color="#ffffff" heading="ICT Consultancy Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="bucket" icon_bg="#c8c1a9" icon_color="#ffffff" heading="Computers, Peripherals and Accessories"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="browser" icon_bg="#c0c8a9" icon_color="#ffffff" heading="Web Design & Development"][/icon_feature][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830995831{padding-bottom: 45px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="cloud6" icon_bg="#c5a9c8" icon_color="#ffffff" heading="Network and Infrustructure Services"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="ribbon2" icon_bg="#a9adc8" icon_color="#ffffff" heading="Information Systems Security"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="lightbulb2" icon_bg="#a9c8c5" icon_color="#ffffff" heading="ICT Support Services "][/icon_feature][/vc_column][/vc_row]</p>\n', 'Services', '', 'inherit', 'closed', 'closed', '', '19-revision-v1', '', '', '2018-12-03 10:41:37', '2018-12-03 07:41:37', '', 19, 'https://craftech.co.ke/2018/12/03/19-revision-v1/', 0, 'revision', '', 0),
(3462, 1, '2018-12-03 09:02:00', '2018-12-03 06:02:00', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image img_size="650x533" css=".vc_custom_1543816905367{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]</p>\n<p>[spacer height="15px"]</p>\n<p>[button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"]469+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"]</p>\n<p>[button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"]852+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"]</p>\n<p>[button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="mobile4" icon_bg="#b8b8b8" icon_color="#ffffff" heading="App Development"][text_style size="48px" line_height="58px" color="#b8b8b8"]356+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"]</p>\n<p>[button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Logo and Identity"][text_style size="48px" line_height="58px" color="#b8b8b8"]753+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"]</p>\n<p>[button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why work together</h2>\n<p>[text_style size="24px" line_height="30px" color="#b8b8b8"]Lorem Ipsum is simply dummy text of the printing and typesetting industry.[/text_style][/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Doloreque</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>3. Molestia amet</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Tempore libero</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>4. Temporibus</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]<a href="#">info@example.com</a>[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+ 99 123 456 7890[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 10:00am to 6:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 09:02:00', '2018-12-03 06:02:00', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3483, 1, '2018-12-03 20:05:38', '2018-12-03 17:05:38', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>One Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Infrastructure Loaning[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design & Development"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="ICT Infrustructure Leasing"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>Craftech understands Startup needs and struggles. This is why we offer leasing services for laptops / Printers and a wide range of infrastructure that a business may need IT.</p>\n<p>&nbsp;</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="tools-2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 20:05:38', '2018-12-03 17:05:38', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(2967, 1, '2014-09-09 15:39:12', '2014-09-09 10:09:12', '<h1>Checkout</h1>\n\n{{mj-checkout-form}}', 'Mijireh Secure Checkout', '', 'private', 'closed', 'closed', '', 'mijireh-secure-checkout', '', '', '2014-09-09 15:39:12', '2014-09-09 10:09:12', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=2967', 0, 'page', '', 0),
(3070, 1, '2014-09-11 02:18:18', '2014-09-10 20:48:18', ' ', '', '', 'publish', 'open', 'closed', '', '3070', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/?p=3070', 8, 'nav_menu_item', '', 0),
(3072, 1, '2014-09-11 14:18:31', '2014-09-11 08:48:31', ' ', '', '', 'publish', 'open', 'closed', '', '3072', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/?p=3072', 9, 'nav_menu_item', '', 0),
(3076, 1, '2014-09-11 15:36:48', '2014-09-11 10:06:48', '', 'Shop Page', '', 'publish', 'open', 'closed', '', '3076', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/?p=3076', 6, 'nav_menu_item', '', 0),
(3077, 1, '2014-09-11 15:54:35', '2014-09-11 10:24:35', '', 'Shop', '', 'publish', 'open', 'closed', '', 'shop', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'http://wordpress.tanshcreative.com/quezal/?p=3077', 5, 'nav_menu_item', '', 0),
(3459, 1, '2018-12-03 08:44:30', '2018-12-03 05:44:30', '', 'Support Pricing', '', 'publish', 'closed', 'closed', '', 'support-pricing', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'https://craftech.co.ke/?p=3459', 4, 'nav_menu_item', '', 0),
(3458, 1, '2018-12-03 08:44:30', '2018-12-03 05:44:30', ' ', '', '', 'publish', 'closed', 'closed', '', '3458', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'https://craftech.co.ke/?p=3458', 3, 'nav_menu_item', '', 0),
(21, 1, '2014-07-01 11:54:27', '2014-07-01 06:24:27', '[vc_row gap="30" css=".vc_custom_1454831987411{padding-top: 45px !important;padding-bottom: 15px !important;}"][vc_column width="1/2"][vc_column_text][text_style size="24px" line_height="30px" color=""]Want to get in touch with us? No problem, fill out the form below and we will get back to you.[/text_style][/vc_column_text][vc_column_text][contact-form-7 id="5" title="Contact form 1"][/vc_column_text][/vc_column][vc_column width="1/2"][icon_feature feature_style="feature_icon_left" icon="map-pin" icon_bg="#b8b8b8" icon_color="#ffffff"]\r\n<h2>Quezal Inc.</h2>\r\n3245 East Creek Blvd, Suite 590\r\nBos Boomer, IN 20076[/icon_feature][vc_gmaps link="#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xNiUyMTFtMTIlMjExbTMlMjExZDMxNTEuODM1ODM3NjUyNTAwNyUyMTJkMTQ0Ljk1NTQzMSUyMTNkLTM3LjgxNzMxMzk5OTk5OTk5NiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxMm0xJTIxMXNlbnZhdG8lMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTQwMjA3MTk2MTMwNCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTNFJTNDJTJGaWZyYW1lJTNF" size="200" css=".vc_custom_1454832044529{padding-top: 40px !important;}"][vc_column_text css=".vc_custom_1454832027357{padding-top: 10px !important;}"]\r\n<h4>Office Timings</h4>\r\n[/vc_column_text][listicon type="clock6" icon_color="#b8b8b8" color="#545454" size="18px" list_border="yes"]Monday to Saturday - 10:00am to 5:00pm[/listicon][listicon type="clock6" icon_color="#b8b8b8" color="#545454" size="18px" list_border="yes"]Sunday Closed[/listicon][/vc_column][/vc_row]', 'Contact Us 1', '', 'publish', 'open', 'open', '', 'contact', '', '', '2014-07-01 11:54:27', '2014-07-01 06:24:27', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=21', 0, 'page', '', 0),
(290, 1, '2014-07-10 20:25:58', '2014-07-10 14:55:58', '[vc_row full_width="stretch_row" css=".vc_custom_1454825423203{margin-bottom: 0px !important;padding-top: 25px !important;background: #ce0027 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg1.jpg?id=425) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2"][vc_column_text]\r\n<h1>[text_style color="#ffffff"]A better way to\r\ntrack delicious dolore.\r\n[/text_style]</h1>\r\n[text_style size="24px" line_height="30px" color="#ffffff"]There are many variations of passages of\r\nLorem Ipsum available, but the majority have\r\nsuffered <em>alteration</em> in some form, by\r\ninjected humour.[/text_style][/vc_column_text][vc_column_text][text_style size="16px" line_height="22px" color="#ffffff"]Available for iPhone<sup>®</sup>, iPod Touch<sup>®</sup> &amp; iPad<sup>®</sup>.[/text_style][/vc_column_text][vc_column_text][button class="mybtn mybtn-big mybtn-black" target="_blank" url="#" icon="apple22" ]Download Now[/button][/vc_column_text][/vc_column][vc_column width="1/2" css=".vc_custom_1454746772940{margin-bottom: 0px !important;padding-bottom: 0px !important;}"][vc_single_image image="464" img_size="275x470" alignment="center" css=".vc_custom_1454746767133{margin-bottom: 0px !important;padding-bottom: 0px !important;}"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454825475906{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<p style="text-align: center;">[text_style size="32px" line_height="38px" color="#545454"]Your favorite app comes alive[/text_style]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454825534444{background-color: #e8e8e8 !important;}" fullwidth_row="yes"][vc_column width="1/3" css=".vc_custom_1454825769835{padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;}"][icon_feature icon="edit-modify-streamline" icon_style="square" icon_bg="#060606" icon_color="#ffffff" heading="Easy Customization"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.[/icon_feature][/vc_column][vc_column width="1/3" css=".vc_custom_1454825775177{border-top-width: 0px !important;border-right-width: 2px !important;border-bottom-width: 0px !important;border-left-width: 2px !important;padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}"][icon_feature icon="palette" icon_style="square" icon_bg="#060606" icon_color="#ffffff" heading="Unlimited Colors"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.[/icon_feature][/vc_column][vc_column width="1/3" css=".vc_custom_1454825780125{padding-top: 60px !important;padding-right: 30px !important;padding-bottom: 60px !important;padding-left: 30px !important;}"][icon_feature icon="ribbon" icon_style="square" icon_bg="#060606" icon_color="#ffffff" heading="Premium Plugins"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.[/icon_feature][/vc_column][/vc_row][vc_row gap="30" css=".vc_custom_1454826190008{padding-top: 15px !important;}"][vc_column width="1/2"][vc_single_image image="2590" img_size="300x300" alignment="center" style="vc_box_circle"][/vc_column][vc_column width="1/2"][vc_column_text]\r\n<h4>Feature for lorem ipsum app here</h4>\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing\r\nhidden in the middle of text.\r\n\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\r\n\r\n[spacer height="5px"]\r\n\r\n[icon type="edit-modify-streamline" color="#b8b8b8" size="48px"][spacer_wide width="10px"][icon type="envellope-mail-streamline" color="#b8b8b8" size="48px"][spacer_wide width="10px"][icon type="monocle-mustache-streamline" color="#b8b8b8" size="48px"][/vc_column_text][/vc_column][/vc_row][vc_row gap="30" css=".vc_custom_1454826195096{padding-bottom: 15px !important;}"][vc_column width="1/2"][vc_column_text]\r\n<h4>Feature for lorem ipsum app here</h4>\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing\r\nhidden in the middle of text.\r\n\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\r\n\r\n[spacer height="5px"]\r\n\r\n[icon type="magic-magic-wand-streamline" color="#b8b8b8" size="48px"][spacer_wide width="10px"][icon type="notebook-streamline" color="#b8b8b8" size="48px"][spacer_wide width="10px"][icon type="streamline-umbrella-weather" color="#b8b8b8" size="48px"][/vc_column_text][/vc_column][vc_column width="1/2"][vc_single_image image="2605" img_size="300x300" alignment="center" style="vc_box_circle"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454826267586{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<h2 style="text-align: center;">A better way to track delicious dolore</h2>\r\n<p style="text-align: center;">[list_separator color="" font_size="16px"][list_item]14 days free trial[/list_item][list_item]No credit card required[/list_item][list_item]$10/mo after end of trial[/list_item][/list_separator]</p>\r\n<p style="text-align: center;">[spacer height="15px"]</p>\r\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" icon="apple22" ]Download Now[/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Home App 1', '', 'publish', 'open', 'open', '', 'home-var-1', '', '', '2014-07-10 20:25:58', '2014-07-10 14:55:58', '', 0, 'http://localhost/wordpress/?page_id=290', 0, 'page', '', 0),
(540, 1, '2014-07-12 20:11:19', '2014-07-12 14:41:19', '[vc_row fullwidth_row="yes"][vc_column][rev_slider_vc alias="home-biz2"][/vc_column][/vc_row][vc_row css=".vc_custom_1454825008650{padding-top: 30px !important;padding-bottom: 20px !important;}"][vc_column][vc_row_inner gap="30"][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="pencil3" icon_style="none" icon_color="#b8b8b8" heading="Easy Customization"]It is a long established fact that a reader will be distracted by the readable content of a page when looking.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="lightbulb3" icon_style="none" icon_bg="#ce3f00" icon_color="#b8b8b8" heading="Awesome Features"]It is a long established fact that a reader will be distracted by the readable content of a page when looking.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="beaker2" icon_style="none" icon_bg="#0061ce" icon_color="#b8b8b8" heading="Options Framework"]It is a long established fact that a reader will be distracted by the readable content of a page when looking.[/icon_feature][/vc_column_inner][/vc_row_inner][vc_row_inner gap="30"][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="ribbon" icon_style="none" icon_bg="#00a5ce" icon_color="#b8b8b8" heading="Premium Plugins"]It is a long established fact that a reader will be distracted by the readable content of a page when looking.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="paintbrush" icon_style="none" icon_color="#b8b8b8" heading="Unlimited Colors"]It is a long established fact that a reader will be distracted by the readable content of a page when looking.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="alarmclock" icon_style="none" icon_color="#b8b8b8" heading="Periodic Updates"]It is a long established fact that a reader will be distracted by the readable content of a page when looking.[/icon_feature][/vc_column_inner][/vc_row_inner][vc_column_text css=".vc_custom_1454825027536{padding-top: 40px !important;}"]\r\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-cyan " target="_blank" url="#" icon="check" ]Get Started[/button][spacer_wide width="10px"][button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" icon="pricetags" ]See Pricing[/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1430127997618{background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg9.jpg?id=2544) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1406443382468{margin-top: 0px !important;margin-bottom: 100px !important;padding: 40px 30px 80px !important;background-color: rgba(6,6,6,0.95) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;*background-color: rgb(6,6,6) !important;}"][vc_row_inner][vc_column_inner css=".vc_custom_1405848299471{margin-bottom: 30px !important;}"][vc_column_text]\r\n<h2>[text_style size="120px" line_height="120px" color="#ce0027"]Business.[/text_style]</h2>\r\n[text_style size="24px" line_height=" 24px" color="#ce0027"]40+ projects. 12 years experience[/text_style][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]\r\n<h4>[text_style size="" line_height="" color="#ffffff"]Our Achievement[/text_style]</h4>\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by\r\ninjected humour.\r\n\r\n[link_underline color="" target="_self" url=""]Learn More »[/link_underline][/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]\r\n<h4>[text_style size="" line_height="" color="#ffffff"]Get in Touch[/text_style]</h4>\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by\r\ninjected humour.\r\n\r\n[link_underline color="" target="_self" url=""]Mail Us Now »[/link_underline][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2" css=".vc_custom_1406295088479{padding-top: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][/vc_column][/vc_row][vc_row css=".vc_custom_1454825136528{padding-top: 20px !important;padding-bottom: 25px !important;}"][vc_column][vc_column_text]\r\n<h2 style="text-align: center;">Our Work</h2>\r\n[/vc_column_text][portfolio_grid column="column_four" limit="4" orderby="rand" style="none" target="_blank"][vc_column_text css=".vc_custom_1454825089613{padding-top: 30px !important;}"]\r\n<p style="text-align: center;">Not satisfied? [link_underline color="" target="_self" url=""]See more[/link_underline]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454825165205{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<p style="text-align: center;">[text_style size="24px" line_height="30px" color=""]Get addicted. It''s Quezal Software WordPress Theme[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" icon="basket" ]Purchase Now[/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1454825319088{padding-top: 20px !important;padding-bottom: 55px !important;}"][vc_column][vc_column_text]\r\n<h2 style="text-align: center;">Recent Posts</h2>\r\n[/vc_column_text][recent_post limit="3"][/vc_column][/vc_row]', 'Home Biz 2', '', 'publish', 'open', 'open', '', 'home-biz-2', '', '', '2014-07-12 20:11:19', '2014-07-12 14:41:19', '', 0, 'http://localhost/wordpress/?page_id=540', 0, 'page', '', 0),
(544, 1, '2014-07-12 20:13:55', '2014-07-12 14:43:55', '<p>[vc_row fullwidth_row="yes"][vc_column][rev_slider_vc alias="home-biz"][/vc_column][/vc_row][vc_row gap="30" css=".vc_custom_1454823233366{padding-top: 40px !important;padding-bottom: 15px !important;}"][vc_column][vc_column_text]</p>\r\n<h1 style="text-align: center;">Get Addicted. It''s Quezal</h1>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/3"][icon_feature icon="others-browser" icon_style="none" icon_color="#00a5ce" heading="Strategy"]It is a long established fact that a reader will<br />\r\nbe distracted by the readable content<br />\r\nof a page when looking.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature icon="others-ribbon" icon_style="none" icon_color="#ce3f00" heading="Analytics"]It is a long established fact that a reader will<br />\r\nbe distracted by the readable content<br />\r\nof a page when looking.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature icon="others-line-lightbulb" icon_style="none" icon_color="#0061ce" heading="Design"]It is a long established fact that a reader will<br />\r\nbe distracted by the readable content<br />\r\nof a page when looking.[/icon_feature][/vc_column_inner][/vc_row_inner][vc_column_text css=".vc_custom_1454744528514{margin-top: 40px !important;}"]</p>\r\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" icon="settings-streamline-2" ]See More Services[/button]</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454823476207{padding-top: 15px !important;padding-bottom: 15px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/2"][vc_single_image image="257" img_size="650x533"][/vc_column][vc_column width="1/2"][vc_column_text][text_style size="24px" line_height="34px" color="#060606"]<span style="font-size: 24px;">Well, the way they make shows is, they make one show. That show''s called a pilot. Then they show that show too.</span>[/text_style][/vc_column_text][vc_tta_accordion c_icon="triangle" active_section="1" theme_tab="yes"][vc_tta_section title="Who is pilot in the show?" tab_id="1454790086238-24c7f129-27ed"][vc_column_text]when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ''Content here, content here'', making it look like readable English.[/vc_column_text][/vc_tta_section][vc_tta_section title="How they do it?" tab_id="1454790086334-8ff38d4b-374c"][vc_column_text]when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ''Content here, content here'', making it look like readable English.[/vc_column_text][/vc_tta_section][vc_tta_section title="When the show starts?" tab_id="1454790291011-18cbcb1c-1e0f"][vc_column_text]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ‘Content here, content here’, making it look like readable English.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row full_width="stretch_row" equal_height="yes" css=".vc_custom_1454745974784{margin-right: 0px !important;margin-left: 0px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg4.jpg?id=876) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454823774564{padding-top: 30px !important;padding-right: 60px !important;padding-bottom: 30px !important;padding-left: 60px !important;background-color: rgba(206,0,39,0.9) !important;*background-color: rgb(206,0,39) !important;}"][box bg_color="rgba(255,255,255,0.01)"]</p>\r\n<h4>[text_style color="#ffffff"]There are many dolor amet<br />\r\nvariations of passages of lorem are<br />\r\nipsum available[/text_style]</h4>\r\n<p>[/box][/vc_column][vc_column width="1/2" css=".vc_custom_1454823909777{padding-top: 70px !important;padding-right: 60px !important;padding-bottom: 60px !important;padding-left: 60px !important;}"][zoom_button style="video" link_text="VIEW VIDEO" icon_color="#ffffff" border_color="#ffffff" zoom_link="http://vimeo.com/9856705"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454824065897{padding-top: 25px !important;padding-bottom: 30px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/geometry2.png?id=60) !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\r\n<h2 style="text-align: center;">The Process</h2>\r\n<p style="text-align: center;">Clearly explained steps for easy understanding</p>\r\n<p>[/vc_column_text][rev_slider_vc alias="the-process"][vc_column_text css=".vc_custom_1454824103640{padding-top: 10px !important;}"]</p>\r\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]Keep the track of every aspect of process.[/text_style][spacer_wide width="10px"][button class="mybtn mybtn-green" target="_blank" url="#" ]Get Started[/button]</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row gap="30" css=".vc_custom_1454824296421{padding-top: 10px !important;padding-bottom: 45px !important;}"][vc_column width="1/2"][vc_column_text]</p>\r\n<h4>People Say...</h4>\r\n<p>[/vc_column_text][testimonial limit="4"][/vc_column][vc_column width="1/2"][vc_column_text]</p>\r\n<h4>Quezal Facts</h4>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="2/3"][vc_column_text]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ''Content here, content here'', making it look like readable English.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/3"][vc_single_image image="828" img_size="140x167" img_link="#"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454824375925{padding-top: 25px !important;padding-bottom: 30px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\r\n<h2 style="text-align: center;">Our Portfolio</h2>\r\n<p>[/vc_column_text][portfolio_grid limit="6" order="ASC" hard_crop="yes" img_width="380" img_height="250"][vc_column_text css=".vc_custom_1405766977925{margin-top: 60px !important;}"]</p>\r\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]We’ve designed awesome experiences.[/text_style][spacer_wide width="15px"][button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" icon="picture-streamline" ]See Portfolio[/button]</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n', 'Home', '', 'publish', 'open', 'open', '', 'home-biz-1', '', '', '2014-07-12 20:13:55', '2014-07-12 14:43:55', '', 0, 'http://localhost/wordpress/?page_id=544', 0, 'page', '', 0),
(553, 1, '2014-07-12 20:40:03', '2014-07-12 15:10:03', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>One Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Infrastructure Loaning[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design & Development"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="ICT Infrustructure Leasing"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>Craftech understands Startup needs and struggles. This is why we offer leasing services for laptops / Printers and a wide range of infrastructure that a business may need IT.</p>\n<p>&nbsp;</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="tools-2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'publish', 'open', 'open', '', 'home-service', '', '', '2018-12-03 20:05:38', '2018-12-03 17:05:38', '', 0, 'http://localhost/wordpress/?page_id=553', 0, 'page', '', 0);
INSERT INTO `wpfp_posts` VALUES
(557, 1, '2014-07-12 20:41:26', '2014-07-12 15:11:26', '[vc_row full_width="stretch_row" css=".vc_custom_1454826404071{padding-top: 30px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg1.jpg?id=58) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454747131548{margin-bottom: 0px !important;padding-bottom: 0px !important;}"][vc_single_image image="464" img_size="275x470" alignment="center" css=".vc_custom_1454747137181{margin-bottom: 0px !important;padding-bottom: 0px !important;}"][/vc_column][vc_column width="1/2" css=".vc_custom_1406449503713{margin-top: 60px !important;margin-bottom: 60px !important;}"][vc_column_text]\r\n<h1>[text_style size="80px" line_height="88px" color="#ffffff"]Quezal[/text_style]</h1>\r\n[text_style size="38px" line_height="48px" color="#ffffff"]The master-builder of human happiness is here[/text_style]\r\n\r\n[spacer height="5px"]\r\n\r\n[button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" ]Download Now[/button][/vc_column_text][/vc_column][/vc_row][vc_row gap="30" css=".vc_custom_1454827634064{padding-top: 10px !important;padding-bottom: 45px !important;}"][vc_column][vc_column_text]\r\n<h2 style="text-align: center;">Awesome Features</h2>\r\n<p style="text-align: center;">[text_style size="24px" line_height="34px" color=""]Sed ut perspiciatis unde omnis iste natus error sit voluptatem[/text_style]</p>\r\n[/vc_column_text][vc_row_inner gap="30"][vc_column_inner width="1/4"][icon_feature icon="display" icon_style="square" icon_bg="#e4e4e4" icon_color="#060606" heading="Omnis Iste Natus"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit.[/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="bulb" icon_style="square" icon_bg="#e4e4e4" icon_color="#060606" heading=" Nemo Enim Ipsat"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit.[/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="pen5" icon_style="square" icon_bg="#e4e4e4" icon_color="#060606" heading="Ipsum Quia Dolor"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit.[/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="camera10" icon_style="square" icon_bg="#e4e4e4" icon_color="#060606" heading="Quis Autem Vel "]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit.[/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454827828786{padding-top: 45px !important;padding-bottom: 45px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg?id=1366) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1405756309958{padding-top: 60px !important;padding-bottom: 60px !important;background-color: rgba(0,165,206,0.9) !important;*background-color: rgb(0,165,206) !important;}"][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]\r\n<h2 style="text-align: center;">[text_style size="240px" line_height="240px" color="#ffffff"]3[/text_style]</h2>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]\r\n<h2>[text_style size="58px" line_height="58px" color="#ffffff"]Reasons You''ll Love Quezal[/text_style]</h2>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2" css=".vc_custom_1454828047475{padding-top: 60px !important;padding-right: 30px !important;padding-left: 30px !important;}"][vc_row_inner][vc_column_inner][icon_feature feature_style="feature_icon_left" icon="mobile4" icon_style="none" icon_color="#060606" heading="Consectetur adipisicing elit"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.[/icon_feature][vc_empty_space height="20px"][icon_feature feature_style="feature_icon_left" icon="settings-streamline-2" icon_style="none" icon_color="#060606" heading="Aute irure dolor"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.[/icon_feature][vc_empty_space height="20px"][icon_feature feature_style="feature_icon_left" icon="notebook-streamline" icon_style="none" icon_color="#060606" heading="Eius modi tempora"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.[/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828139830{padding-top: 20px !important;padding-bottom: 10px !important;background-color: #f4f4f4 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column][vc_column_text css=".vc_custom_1454828225175{margin-bottom: 0px !important;padding-bottom: 0px !important;}"]\r\n<h2 style="text-align: center;">Ready To Get Addicted with Quezal?</h2>\r\n<p style="text-align: center;">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti\r\natque corrupti quos dolores et quas molestias excepturi sint.</p>\r\n<p style="text-align: center;">[icon type="envelope6" color="#060606" size="64px"]</p>\r\n[/vc_column_text][vc_row_inner el_class="subscribe-form"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][vc_widget_sidebar sidebar_id="custom-sidebar-99" el_class="subscribe-form"][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home App 2', '', 'publish', 'open', 'open', '', 'home-app-2', '', '', '2014-07-12 20:41:26', '2014-07-12 15:11:26', '', 0, 'http://localhost/wordpress/?page_id=557', 0, 'page', '', 0),
(711, 1, '2014-07-13 19:29:50', '2014-07-13 13:59:50', '[vc_row full_width="stretch_row" parallax="content-moving" css=".vc_custom_1454829275007{padding-top: 20px !important;padding-bottom: 20px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg7.jpg?id=1366);background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column][vc_column_text css=".vc_custom_1454829299468{margin-bottom: 0px !important;padding-bottom: 0px !important;}"]\r\n<h1 style="text-align: center;">Ready To Get Addicted with Quezal?</h1>\r\n<p style="text-align: center;">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti\r\natque corrupti quos dolores et quas molestias excepturi sint.</p>\r\n<p style="text-align: center;">[icon type="envelope6" color="#060606" size="64px"]</p>\r\n[/vc_column_text][vc_row_inner el_class="subscribe-form"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][vc_widget_sidebar sidebar_id="custom-sidebar-99"][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_single_image image="257" img_size="650x533" alignment="center" css=".vc_custom_1454829328329{padding-top: 30px !important;}"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454829394748{padding-top: 15px !important;padding-bottom: 45px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/strange_bullseyes.png?id=342) !important;background-position: 0 0 !important;background-repeat: repeat !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<h2 style="text-align: center;">The best features Quezal can offer</h2>\r\n<p style="text-align: center;">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or\r\nrandomised words which don''t look even slightly believable.</p>\r\n[/vc_column_text][vc_row_inner gap="30"][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="ipod-mini-music-streamline" icon_style="none" icon_color="#060606" heading="Eius Modi Tempora"]Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="remote-control-streamline" icon_style="none" icon_color="#060606" heading="Neque Porro Quisquam"]Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.[/icon_feature][/vc_column_inner][vc_column_inner width="1/3"][icon_feature feature_style="feature_icon_left" icon="streamline-umbrella-weather" icon_style="none" icon_color="#060606" heading="Voluptate Velit Esse"]Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.[/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=".vc_custom_1454829512410{padding-top: 20px !important;padding-bottom: 25px !important;}"][vc_column][vc_column_text]\r\n<h2 style="text-align: center;">Frequently Asked Questions</h2>\r\n[/vc_column_text][vc_column_text]\r\n<p style="text-align: center;">Feel free to shoot us an email at <a href="#">hello@example.com</a> or on twitter <a href="#">@company</a></p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_toggle title="1. What is lorem ipsum text?" style="square"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_toggle][vc_toggle title="2. How liber tempor cum soluta nobis?" style="square" open="true"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_toggle][vc_toggle title="3. What is lorem ipsum text?" style="square"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_toggle][vc_toggle title="4. How liber tempor cum soluta nobis?" style="square"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_toggle][vc_toggle title="5. How liber tempor cum soluta nobis?" style="square"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_toggle][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home Startup', '', 'publish', 'open', 'open', '', 'home-startup', '', '', '2014-07-13 19:29:50', '2014-07-13 13:59:50', '', 0, 'http://localhost/wordpress/?page_id=711', 0, 'page', '', 0),
(837, 1, '2014-07-14 23:01:01', '2014-07-14 17:31:01', '<p>[vc_row gap="30" css=".vc_custom_1478239218869{padding-top: 35px !important;padding-bottom: 10px !important;}"][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]</p>\n<h5><b>Our Purpose</b></h5>\n<p>Craftech is aimed at providing quality and reliable service to our diverse clientele.</p>\n<h5>Our Mission</h5>\n<p>Craftech is committed to offering customer focused ICT solutions that meet both their interests and business needs.</p>\n<p>[/text_style][/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]</p>\n<h5><b>Our Vision</b></h5>\n<p>To be a leader in the ICT industry in terms of innovation and custom made solutions.</p>\n<h5>Our Values</h5>\n<p>Commitment, Innovation, customer interaction and integrity.</p>\n<p>[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454829761695{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg2.jpg?id=51) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/6"][/vc_column][vc_column width="2/3" css=".vc_custom_1406307108950{padding: 60px !important;background-color: #ffffff !important;}"][vc_column_text]</p>\n<h3>Lets Expound on Craftech shall we ?</h3>\n<p>[text_style size="20px" line_height="" color=grey] Just Amazing! [/text_style]</p>\n<p>[spacer height="5px"]</p>\n<p><strong>CRAFTECH KENYA</strong> has been formed by a team of professionals with a wide exposure in terms of experience and Information Technology tools of work.</p>\n<p>The team involved are young qualified graduates and engineers from renowned universities.</p>\n<p>The resource personnel working and managing the company have been consistently providing reliable support to a wide variety of corporate houses in the capacity of consultancy, procurement, and service provision.</p>\n<p>The company’s philosophy is and will always be building long term relationships with its clients with emphasis on quality, affordable and target oriented modern technologies.</p>\n<p><strong>CRAFTECH KENYA</strong> is a company where professionals from technical and business world grow together to realize appropriate business solutions that are client oriented.</p>\n<p>Together we constantly strive to be a leading firm in Information Technology with a keen eye on functional knowledge and business growth. The company’s success is heavily reliant on our close working relationship with each client and ensuring that we walk with them from idea conceptualization to implementation of Information Technology solutions that would impact their business positively.</p>\n<p>We are keen on establishing ourselves as the best choice in Information technology services, computing, consultancy, and solutions development by offering a customer oriented approach to service provision.</p>\n<p>&nbsp;[/vc_column_text][/vc_column][vc_column width="1/6"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1459649905526{padding-top: 30px !important;padding-bottom: 30px !important;}"][vc_column width="1/4"][vc_single_image image="2976" img_size="1200x800" alignment="center"][vc_single_image image="2441" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/2"][vc_single_image image="1240" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/4"][vc_single_image image="1231" img_size="1200x800" alignment="center"][vc_single_image image="2731" img_size="1200x800" alignment="center"][/vc_column][/vc_row]</p>\n', 'About Us', '', 'publish', 'open', 'open', '', 'about-us', '', '', '2018-12-03 10:19:40', '2018-12-03 07:19:40', '', 0, 'http://localhost/wordpress/?page_id=837', 0, 'page', '', 0),
(1053, 1, '2014-07-17 00:48:23', '2014-07-16 19:18:23', '<p>[vc_row css=".vc_custom_1454831500869{padding-top: 60px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="pricetags" color="#00a5ce" size="64px"]</p>\n<h2 style="text-align: center;">99.999% Efficient services</h2>\n<p style="text-align: center;">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/4"][pricing title="Basic" currency="Ksh." price="2000" price_label="/month" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]One Branch[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<b>Phone Support</b>[/list_item][list_item]<b>Trouble Shooting</b>[/list_item][list_item]<strong> Cost covers basic repairs</strong>[/list_item][list_item]<strong>Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Silver" currency="Ksh" price="5000" price_label="/month" button_content="Talk to Us" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 1[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support up to two branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Basic Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Platinum" currency="Ksh." price="10000" price_label="/month" color="mybtn-green" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2" table="featured-table"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 2[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support up to three branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Intermediate Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Gold" currency="Ksh" price="40000" price_label="/month" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]Branch ++ [/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support to all branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Complex Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>][list_item]Loaner Laptop while we work on yours [/list_item][list_item]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][/vc_row][vc_row css=".vc_custom_1454831571856{padding-top: 30px !important;padding-bottom: 25px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="others-line-questionmark" color="#ce0027" size="64px"]</p>\n<p>[/vc_column_text][vc_column_text]</p>\n<h4 style="text-align: center;">Frequently Asked Questions</h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]<b><span lang="EN-GB">1. What do I do when my computer crashes?</span></b></p>\n<p><span lang="EN-GB">There are many reasons why a computer may just stop working or "freeze". Most of the time there isn''t much we can do about it, it is a fact of life that computer programs have become complex that occasionally users will experience problems even when performing simple tasks. When your computer no longer responds to keyboard commands your best bet is to restart the computer and try opening programs you were using one at a time to try replicate the freeze. If the freeze doesn’t occur again thank God and continue pushing work , If it does give us a call.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">3. My printer is printing smudged/distorted pages?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">When printing on untraditional paper your printer may experience smudges, un-even or crooked text, and/or text that runs off the edges of the paper. Your printer may be printing fuzzy, blurry, and/or other faint text because of dirty print heads. All modern printers have some type of printer cleaning, self-test, and/or diagnose mode that can be performed to check and clean the printers print heads and other internal equipment used to print.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">5. Can a virus damage computer hardware?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">A Computer virus may damage your computers hardware indirectly depending on the how the virus is programmed to alter the machines normal operation. for example Viruses which are crypto currency based may overwork your CPU and lead to overheating . This will cause your CPU Fan to overwork and bearings to wear out leading to a new CPU fan . Contact us if you suspect that your machine is infected with any kind of virus .</span>[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">2. Is it safe to turn off a Windows computer without doing a shut down?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">Users should not simply press the power button or restart the computer while Windows is still running unless there is an issue with the computer. Microsoft has included the shutdown feature because it enables a computer to go through all the necessary steps that are required before turning off the computer. In fact, many versions of Microsoft Windows will check the computer for any problems if the computer is not shut down properly.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">4. I lost my printer installation disc, how can I install my printer?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">A missing printer installation disc is not the end and will not require you to look for another one. Currently all printer and other hardware manufacturers provide driver downloads on their websites. Just google your respective printer to get its installation drivers, and follow the installation process.</span>[/vc_column_text][vc_column_text]<b><span lang="EN-GB" style="margin: 0px; padding: 0in; border: 1pt windowtext; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">6. If I format or erase my hard drive will it remove a virus?</span></b></p>\n<p><span lang="EN-GB" style="margin: 0px; color: black; font-family: ''Calibri'',sans-serif; font-size: 11pt;">If your computer is infected with a virus formatting or erasing the hard disk drive and starting over will almost always remove any type of virus. However, keep in mind if backups have been made that contain the virus, other media or drives connected to the computer have a virus, your computer is connected to another computer on a network with a virus, and/or the virus is stored on some other type of software you use with your computer it can become re-infected if not properly protected.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831408109{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_row_inner][vc_column_inner width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?" contact_info="info@example.com"][text_style size="20px" line_height="" color=""]Craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us" contact_info="+1 800 234 5678"][text_style size="20px" line_height="" color=""]+ 254 778 859 139[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online" contact_info="Mon - Fri: 10:00am to 6:00pm"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Pricing Variation 1', '', 'publish', 'open', 'open', '', 'pricing-boxes', '', '', '2019-01-03 14:18:45', '2019-01-03 11:18:45', '', 0, 'http://localhost/wordpress/?page_id=1053', 0, 'page', '', 0),
(1055, 1, '2014-07-17 00:49:24', '2014-07-16 19:19:24', '[vc_row full_width="stretch_row" css=".vc_custom_1454831722628{padding-top: 15px !important;padding-bottom: 60px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz2-bg2.jpg?id=79) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<h1 style="text-align: center;">Premium Product. Affordable Price</h1>\r\n<p style="text-align: center;"> It has roots in a piece of classical Latin literature from 45 BC.</p>\r\n<p style="text-align: center;">[spacer height="15px"]</p>\r\n<p style="text-align: center;">[icon type="checkbox-checked2" color="#060606" size="64px"]</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box bg_color="#47bab1" padding="8px 10px 8px 10px"]\r\n<p style="text-align: center;">[text_style size="18px" line_height="" color="#ffffff"]Money Back Guarantee[/text_style]</p>\r\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=".vc_custom_1454831828811{padding-top: 25px !important;padding-bottom: 30px !important;}"][vc_column][vc_column_text]\r\n<h4 style="text-align: center;">Free Trial. No Contract. Cancel Anytime</h4>\r\n<p style="text-align: center;">All plans include 15 days free trial</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1454831834676{padding-bottom: 40px !important;}"][vc_column width="1/4"][vc_column_text][list_pricing_thead padding_top="193px"][list_item]No of Domains[/list_item][list_item]Disc Space[/list_item][list_item]Monthly Bandwidth[/list_item][list_item]MySQL Databases[/list_item][list_item]Cloud Integration[/list_item][/list_pricing_thead][/vc_column_text][/vc_column][vc_column width="1/4"][pricing title="Basic" currency="$" price="19" cents="00" price_label="/month" button_content="Sign Up"][list_pricing][list_item]<strong>Single</strong>[/list_item][list_item]<strong>Unlimited</strong>[/list_item][list_item]<strong>1GB</strong>[/list_item][list_item]<strong>1</strong>[/list_item][list_item][icon type="sad" color="#ce0027" size="18px"][/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Silver" currency="$" price="129" cents="00" price_label="/month" button_content="Sign Up" table="featured-table"][list_pricing][list_item]<strong>5</strong>[/list_item][list_item]<strong>Unlimited</strong>[/list_item][list_item]<strong>5GB</strong>[/list_item][list_item]<strong>5</strong>[/list_item][list_item][icon type="smiley" color="#74ce00" size="18px"][/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Platinum" currency="$" price="199" cents="00" price_label="/month" button_content="Sign Up"][list_pricing][list_item]<strong>15</strong>[/list_item][list_item]<strong>Unlimited</strong>[/list_item][list_item]<strong>15GB</strong>[/list_item][list_item]<strong>15</strong>[/list_item][list_item][icon type="smiley" color="#74ce00" size="18px"][/list_item][/list_pricing][/pricing][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831885395{padding-top: 25px !important;padding-bottom: 25px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<p style="text-align: center;">[icon type="others-line-questionmark" color="#ce0027" size="64px"]</p>\r\n[/vc_column_text][vc_column_text]\r\n<h4 style="text-align: center;">Frequently Asked Questions</h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]\r\n<h5>1. What is lorem ipsum text?</h5>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]\r\n<h5>3. How liber tempor cum soluta nobis?</h5>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]\r\n<h5>5. What is lorem ipsum text?</h5>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]\r\n<h5>2. How liber tempor cum soluta nobis?</h5>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]\r\n<h5>4. What is lorem ipsum text?</h5>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]\r\n<h5>6. How liber tempor cum soluta nobis?</h5>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831907929{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #e8e8e8 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]\r\n<p style="text-align: center;">[text_style size="24px" line_height="32px" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" icon="pencil3" ]Get Started Today![/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Pricing Variation 2', '', 'publish', 'open', 'open', '', 'pricing-table', '', '', '2014-07-17 00:49:24', '2014-07-16 19:19:24', '', 0, 'http://localhost/wordpress/?page_id=1055', 0, 'page', '', 0),
(1443, 1, '2014-07-20 19:53:17', '2014-07-20 14:23:17', '[vc_row gap="30" css=".vc_custom_1454830071403{padding-top: 35px !important;padding-bottom: 10px !important;}"][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.[/text_style][/vc_column_text][/vc_column][vc_column width="1/2"][vc_row_inner][vc_column_inner width="1/2"][vc_column_text][text_style size="42px" line_height="50px" color="#060606"]<strong>2012</strong>[/text_style]\r\n\r\n[spacer height="5px"]\r\n\r\nCompany was launched in the summer of 2010 by business ventures.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text][text_style size="42px" line_height="50px" color="#060606"]<strong>15k</strong>[/text_style]\r\n\r\n[spacer height="5px"]\r\n\r\nTill date more than 15k sites are created and managed successfully by Quezal.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width="1/4" css=".vc_custom_1454830435704{padding-bottom: 30px !important;}"][team id="martin-anderson" box="yes" box_border="#e4e4e4"][/vc_column][vc_column width="1/4" css=".vc_custom_1454830444480{padding-bottom: 30px !important;}"][team id="alize-goulder" box="yes" box_border="#e4e4e4"][/vc_column][vc_column width="1/4" css=".vc_custom_1454830449907{padding-bottom: 30px !important;}"][team id="kevin-aubert" box="yes" box_border="#e4e4e4"][/vc_column][vc_column width="1/4" css=".vc_custom_1454830545472{padding-bottom: 20px !important;}"][team id="spencer-weeden" box="yes" box_border="#e4e4e4"][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830580384{padding-top: 10px !important;padding-bottom: 15px !important;}"][vc_column width="1/2"][vc_column_text]\r\n<h4>Our Approach</h4>\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets.\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\r\n\r\n[link_underline color="leave blank for theme default" target="_self" url=""]Read More »[/link_underline][/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]\r\n<h4>Our Skills</h4>\r\n[/vc_column_text][vc_progress_bar values="90|Development,80|Design,70|Marketing,95|Strategy,65|Planning" bgcolor="bar_green" options="striped,animated"][/vc_column][/vc_row]', 'Our Team', '', 'publish', 'open', 'open', '', 'our-team', '', '', '2014-07-20 19:53:17', '2014-07-20 14:23:17', '', 0, 'http://localhost/wordpress/?page_id=1443', 0, 'page', '', 0),
(1482, 1, '2014-07-25 18:25:03', '2014-07-25 12:55:03', '', 'Portfolio 3 Column', '', 'publish', 'open', 'open', '', 'portfolio-3-column', '', '', '2014-07-25 18:25:03', '2014-07-25 12:55:03', '', 0, 'http://localhost/wordpress/?page_id=1482', 0, 'page', '', 0),
(1484, 1, '2014-07-25 18:25:17', '2014-07-25 12:55:17', '', 'Portfolio 4 Column', '', 'publish', 'open', 'open', '', 'portfolio-4-column', '', '', '2014-07-25 18:25:17', '2014-07-25 12:55:17', '', 0, 'http://localhost/wordpress/?page_id=1484', 0, 'page', '', 0),
(2431, 1, '2014-07-26 18:06:36', '2014-07-26 12:36:36', '', 'Blog', '', 'publish', 'open', 'open', '', 'blog', '', '', '2014-07-26 18:06:36', '2014-07-26 12:36:36', '', 0, 'http://localhost/wordpress/?page_id=2431', 0, 'page', '', 0),
(2451, 1, '2014-07-26 19:28:24', '2014-07-26 13:58:24', '<p>[vc_row full_width="stretch_row" css=".vc_custom_1454832226651{background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg6.jpg?id=1355) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/4"][/vc_column][vc_column width="1/4" css=".vc_custom_1454832264130{padding-top: 55px !important;padding-bottom: 25px !important;}"][vc_column_text]</p>\n<h4 style="text-align: right;">Give a Call</h4>\n<p style="text-align: right;">[text_style size="24px" line_height="30px" color=""]+254 778 859 139[/text_style]</p>\n<p>[/vc_column_text][/vc_column][vc_column width="1/4" css=".vc_custom_1454832271268{border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 1px !important;padding-top: 55px !important;padding-bottom: 25px !important;border-left-color: rgba(6,6,6,0.2) !important;border-left-style: solid !important;border-right-color: rgba(6,6,6,0.2) !important;border-right-style: solid !important;border-top-color: rgba(6,6,6,0.2) !important;border-top-style: solid !important;border-bottom-color: rgba(6,6,6,0.2) !important;border-bottom-style: solid !important;}"][vc_column_text]</p>\n<h4>Need Info?</h4>\n<p>[text_style size="24px" line_height="30px" color=""]Craftech@craftech.co.ke[/text_style][/vc_column_text][/vc_column][vc_column width="1/4"][/vc_column][/vc_row][vc_row css=".vc_custom_1454832188077{border-top-width: 1px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 15px !important;padding-bottom: 45px !important;border-left-color: #e4e4e4 !important;border-left-style: solid !important;border-right-color: #e4e4e4 !important;border-right-style: solid !important;border-top-color: #e4e4e4 !important;border-top-style: solid !important;border-bottom-color: #e4e4e4 !important;border-bottom-style: solid !important;}" fullwidth_row="yes"][vc_column width="1/6"][/vc_column][vc_column width="2/3"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h3 style="text-align: center;">Contact Form</h3>\n<p style="text-align: center;">[text_style size="24px" line_height="30px" color=""]Want to get in touch with us? No problem, fill out the form below and we will get back to you.[/text_style]</p>\n<p>[/vc_column_text][vc_column_text][contact-form-7 id="5" title="Contact form 1"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/6"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'publish', 'open', 'open', '', 'contact-us-2', '', '', '2018-12-03 11:31:57', '2018-12-03 08:31:57', '', 0, 'http://localhost/wordpress/?page_id=2451', 0, 'page', '', 0),
(2809, 1, '2014-08-01 14:50:48', '2014-08-01 09:20:48', '[vc_row css=".vc_custom_1454828466458{padding-top: 45px !important;padding-bottom: 40px !important;}"][vc_column][vc_column_text][text_style size="42px" line_height="56px" color="#060606"]Hi, I’m <a href="#">Jonathon Doe</a>.\r\nI’m an Earthened designer and my work is my passion.\r\nI love simpleness, I like cricket, hockey,\r\neating and listening music.\r\nI’m also co-founder of <a href="#">Lorem Studio</a>.[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828514758{padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][listicon type="ionicons-arrow-down" icon_color="#b8b8b8" color="#b8b8b8" size="24px"]Selected Work[/listicon][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828574726{padding-top: 30px !important;padding-bottom: 60px !important;background: #f4f4f4 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column][portfolio_grid limit="12" order="ASC" target="_blank"][/vc_column][/vc_row][vc_row fullwidth_row="yes" css=".vc_custom_1454828715309{padding-top: 30px !important;padding-bottom: 60px !important;}"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]<a href="#">info@example.com</a>[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+ 99 123 456 7890[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 10:00am to 6:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row]', 'Home Portfolio', '', 'publish', 'open', 'open', '', 'home-portfolio', '', '', '2014-08-01 14:50:48', '2014-08-01 09:20:48', '', 0, 'http://localhost/wordpress/?page_id=2809', 0, 'page', '', 0),
(2849, 1, '2014-08-01 16:04:15', '2014-08-01 10:34:15', '', 'Sitemap', '', 'publish', 'open', 'open', '', 'sitemap', '', '', '2014-08-01 16:04:15', '2014-08-01 10:34:15', '', 0, 'http://localhost/wordpress/?page_id=2849', 0, 'page', '', 0),
(2902, 1, '2014-08-02 11:36:43', '2014-08-02 06:06:43', '', 'Portfolio 2 Column', '', 'publish', 'open', 'open', '', 'portfolio-2-column', '', '', '2014-08-02 11:36:43', '2014-08-02 06:06:43', '', 0, 'http://localhost/wordpress/?page_id=2876', 0, 'page', '', 0),
(2940, 1, '2014-08-03 13:48:19', '2014-08-03 08:18:19', '[vc_row css=".vc_custom_1407054593927{margin-top: 120px !important;padding-top: 120px !important;padding-bottom: 120px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/1"][vc_column_text]\n<h2 style="text-align: center;">This is a Blank Page!</h2>\n<p style="text-align: center;">With this blank page you can create pages without header and footer. This page can be used to display\na single product, service or for lading page design. All shortcodes are available for this page.</p>\n<p style="text-align: center;">[spacer height="15px"]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green" target="_blank" url="#" icon="bag4" ]Buy Quezal Theme[/button]</p>\n[/vc_column_text][/vc_column][/vc_row]', 'Blank Page', '', 'publish', 'open', 'open', '', 'blank-page', '', '', '2014-08-03 13:48:19', '2014-08-03 08:18:19', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=2940', 0, 'page', '', 0),
(2963, 1, '2014-09-09 15:39:05', '2014-09-09 10:09:05', '', 'Shop', '', 'publish', 'closed', 'open', '', 'shop', '', '', '2014-09-09 15:39:05', '2014-09-09 10:09:05', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=2963', 0, 'page', '', 0),
(1833, 1, '2014-04-06 01:54:25', '2014-04-05 20:24:25', 'Sometimes when you innovate, you make mistakes.\nIt is best to admit them quickly, and get on\nwith improving your other innovations.', 'Inspirational quote', '', 'publish', 'open', 'open', '', 'inspirational-quote', '', '', '2014-04-06 01:54:25', '2014-04-05 20:24:25', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=78', 0, 'post', '', 0),
(1834, 1, '2014-04-06 01:55:20', '2014-04-05 20:25:20', 'Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.', 'Audio: Soundcloud', ' Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum', 'publish', 'open', 'open', '', 'audio-soundcloud', '', '', '2014-04-06 01:55:20', '2014-04-05 20:25:20', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=80', 0, 'post', '', 0),
(1835, 1, '2014-04-07 16:41:31', '2014-04-07 11:11:31', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.', 'Link for resources', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat', 'publish', 'open', 'open', '', 'link-for-resources', '', '', '2014-04-07 16:41:31', '2014-04-07 11:11:31', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=432', 0, 'post', '', 0),
(1836, 1, '2014-04-07 16:43:18', '2014-04-07 11:13:18', 'Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.', 'Video: Vimeo', 'Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.  Investigationes demonstraverunt lectores legere', 'publish', 'open', 'open', '', 'video-vimeo', '', '', '2014-04-07 16:43:18', '2014-04-07 11:13:18', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=434', 0, 'post', '', 0),
(1837, 1, '2014-04-07 17:06:53', '2014-04-07 11:36:53', 'Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.', 'Video: Youtube', 'Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demons traverunt lectores legere', 'publish', 'open', 'open', '', 'video-youtube', '', '', '2014-04-07 17:06:53', '2014-04-07 11:36:53', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=441', 0, 'post', '', 0),
(1838, 1, '2014-04-07 17:32:21', '2014-04-07 12:02:21', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.', 'The article', 'Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan esse molestie consequat', 'publish', 'open', 'open', 'reset123', 'password-protected-article', '', '', '2014-04-07 17:32:21', '2014-04-07 12:02:21', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=445', 0, 'post', '', 0),
(2430, 1, '2014-06-12 10:10:25', '2014-06-12 04:40:25', 'Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima.', 'A simple gallery post', 'Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam.', 'publish', 'open', 'open', '', 'a-simple-gallery-post', '', '', '2014-06-12 10:10:25', '2014-06-12 04:40:25', '', 0, 'http://wordpress.tanshcreative.com/thekore/wordpress/?p=2430', 0, 'post', '', 0),
(2690, 1, '2014-07-29 15:16:35', '2014-07-29 09:46:35', '[vc_row][vc_column width="1/1"][vc_column_text]Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima.', 'This is a image post', 'Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam.', 'publish', 'open', 'open', '', 'this-is-a-image-post', '', '', '2014-07-29 15:16:35', '2014-07-29 09:46:35', '', 0, 'http://localhost/wordpress/?p=2690', 0, 'post', '', 0),
(2964, 1, '2014-09-09 15:39:05', '2014-09-09 10:09:05', '[vc_row css=".vc_custom_1410261222160{padding-top: 60px !important;padding-bottom: 60px !important;}"][vc_column][vc_column_text][woocommerce_cart][/vc_column_text][/vc_column][/vc_row]', 'Cart', '', 'publish', 'closed', 'open', '', 'cart', '', '', '2014-09-09 15:39:05', '2014-09-09 10:09:05', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=2964', 0, 'page', '', 0),
(2965, 1, '2014-09-09 15:39:05', '2014-09-09 10:09:05', '[vc_row css=".vc_custom_1410341601506{padding-top: 60px !important;padding-bottom: 60px !important;}"][vc_column][vc_column_text][woocommerce_checkout][/vc_column_text][/vc_column][/vc_row]', 'Checkout', '', 'publish', 'closed', 'open', '', 'checkout', '', '', '2014-09-09 15:39:05', '2014-09-09 10:09:05', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=2965', 0, 'page', '', 0),
(2966, 1, '2014-09-09 15:39:05', '2014-09-09 10:09:05', '[vc_row css=".vc_custom_1410343112850{padding-top: 60px !important;padding-bottom: 60px !important;}"][vc_column][vc_column_text][woocommerce_my_account][/vc_column_text][/vc_column][/vc_row]', 'My Account', '', 'publish', 'closed', 'open', '', 'my-account', '', '', '2014-09-09 15:39:05', '2014-09-09 10:09:05', '', 0, 'http://wordpress.tanshcreative.com/quezal/?page_id=2966', 0, 'page', '', 0),
(1223, 1, '2014-07-18 13:59:47', '2014-07-18 08:29:47', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'A peace of mind', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'a-peace-of-mind', '', '', '2014-07-18 13:59:47', '2014-07-18 08:29:47', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=1223', 0, 'tcsn_portfolio', '', 0);
INSERT INTO `wpfp_posts` VALUES
(1229, 1, '2014-07-18 14:09:04', '2014-07-18 08:39:04', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\r\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\r\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\r\n<div></div>\r\n<div>[spacer height="10px"]</div>\r\n<div>\r\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\r\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\r\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\r\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\r\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\r\n<h4 style="text-align: center;">Related Projects</h4>\r\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Coffee for the soul', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'coffee-for-the-soul', '', '', '2014-07-18 14:09:04', '2014-07-18 08:39:04', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=1229', 0, 'tcsn_portfolio', '', 0),
(1236, 1, '2014-07-18 14:21:22', '2014-07-18 08:51:22', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Couple longing dream home', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'couple-enjoying-the-view', '', '', '2014-07-18 14:21:22', '2014-07-18 08:51:22', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=1236', 0, 'tcsn_portfolio', '', 0),
(1239, 1, '2014-07-18 14:34:26', '2014-07-18 09:04:26', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Watchout your time', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'watchout-your-time', '', '', '2014-07-18 14:34:26', '2014-07-18 09:04:26', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=1239', 0, 'tcsn_portfolio', '', 0),
(1246, 1, '2014-07-18 14:43:37', '2014-07-18 09:13:37', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Street art artist', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'street-art-artist', '', '', '2014-07-18 14:43:37', '2014-07-18 09:13:37', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=1246', 0, 'tcsn_portfolio', '', 0),
(1374, 1, '2014-07-19 16:06:51', '2014-07-19 10:36:51', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Cooking essentials', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'cooking-essentials', '', '', '2014-07-19 16:06:51', '2014-07-19 10:36:51', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=1374', 0, 'tcsn_portfolio', '', 0),
(2693, 1, '2014-07-29 15:37:12', '2014-07-29 10:07:12', '', 'Newsletter', '', 'publish', 'open', 'open', '', 'newsletter', '', '', '2014-07-29 15:37:12', '2014-07-29 10:07:12', '', 0, 'http://localhost/wordpress/?post_type=sidebar_instance&amp;p=2693', 0, 'sidebar_instance', '', 0),
(2735, 1, '2014-07-30 16:08:36', '2014-07-30 10:38:36', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Camera capturing black coffee cup', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'camera-capturing-black-coffee-cup', '', '', '2014-07-30 16:08:36', '2014-07-30 10:38:36', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=2735', 0, 'tcsn_portfolio', '', 0),
(2736, 1, '2014-07-30 16:27:20', '2014-07-30 10:57:20', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Banana split waffle cream dessert', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', '2736', '', '', '2014-07-30 16:27:20', '2014-07-30 10:57:20', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=2736', 0, 'tcsn_portfolio', '', 0),
(2737, 1, '2014-07-30 16:29:55', '2014-07-30 10:59:55', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Reader reading on Kindle', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'reader-reading-on-kindle', '', '', '2014-07-30 16:29:55', '2014-07-30 10:59:55', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=2737', 0, 'tcsn_portfolio', '', 0),
(2738, 1, '2014-07-30 16:31:09', '2014-07-30 11:01:09', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Roller skates', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'roller-skates', '', '', '2014-07-30 16:31:09', '2014-07-30 11:01:09', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=2738', 0, 'tcsn_portfolio', '', 0),
(2739, 1, '2014-07-30 16:32:32', '2014-07-30 11:02:32', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\n<div></div>\n<div>[spacer height="10px"]</div>\n<div>\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\n<h4 style="text-align: center;">Related Projects</h4>\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Spices for life', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'spices-for-life', '', '', '2014-07-30 16:32:32', '2014-07-30 11:02:32', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=2739', 0, 'tcsn_portfolio', '', 0),
(2740, 1, '2014-07-30 16:33:23', '2014-07-30 11:03:23', '[vc_row css=".vc_custom_1405777685471{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_row_inner css=".vc_custom_1405777715630{margin-bottom: 30px !important;}"][vc_column_inner width="1/3"][/vc_column_inner][vc_column_inner width="1/3"][box border_color="#e0e0e0" border_width="1px 1px 1px 1px" padding="5px 5px 5px 5px " bg_color="#ffffff"]\r\n<p style="text-align: center;">[text_style size="24px" line_height="" color="#060606"]Envafarms LLC.[/text_style]</p>\r\n[/box][/vc_column_inner][vc_column_inner width="1/3"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<div style="text-align: center;">[text_style size="" line_height="" color="#ce0027"]PSD + HTML + WORDPRESS[/text_style]</div>\r\n<div></div>\r\n<div>[spacer height="10px"]</div>\r\n<div>\r\n<h3 class="tk-prenton-display" style="text-align: center;">Let''s make lorem ipsum a dummy text.</h3>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/2"][vc_column_text]\r\n<div><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>\r\n[/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text]There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1405777371148{margin-top: 30px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row][vc_column width="1/1"][vc_column_text]\r\n<p style="text-align: center;">[text_style size="18px" line_height="" color=""]visit the website[/text_style]</p>\r\n<p style="text-align: center;">[button class="mybtn mybtn-big mybtn-green " target="_blank" url="#" ]www.examplesite.com[/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=".vc_custom_1406960092039{margin-top: 35px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_separator color="grey"][/vc_column][/vc_row][vc_row css=".vc_custom_1406960175404{margin-top: 60px !important;margin-bottom: 30px !important;}"][vc_column width="1/1"][vc_column_text]\r\n<h4 style="text-align: center;">Related Projects</h4>\r\n[/vc_column_text][portfolio_grid limit="3" orderby="date" order="DESC" style="none" target="_blank"][/vc_column][/vc_row]', 'Taxi cab on New York roads', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.', 'publish', 'closed', 'closed', '', 'taxi-cab-on-new-york-roads', '', '', '2014-07-30 16:33:23', '2014-07-30 11:03:23', '', 0, 'http://localhost/wordpress/?post_type=tcsn_portfolio&amp;p=2740', 0, 'tcsn_portfolio', '', 0),
(3066, 1, '2014-09-10 21:48:54', '2014-09-10 16:18:54', '', 'Order &ndash; September 10, 2014 @ 09:48 PM', '', 'wc-processing', 'open', 'closed', 'order_541079ee694e7', 'order-sep-10-2014-0418-pm', '', '', '2014-09-10 21:48:54', '2014-09-10 16:18:54', '', 0, 'http://wordpress.tanshcreative.com/quezal/?post_type=shop_order&amp;p=3066', 0, 'shop_order', '', 2),
(5, 1, '2014-09-09 15:32:46', '2014-09-09 10:02:46', '<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit "Send"]</p>\n1\nCraftech Kenya "[your-subject]"\n[your-name] <craftech@craftech.co.ke>\ncraftech@craftech.co.ke\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Craftech Kenya (https://craftech.co.ke)\nReply-To: [your-email]\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nThe field is too long.\nThe field is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Contact form 1', '', 'publish', 'open', 'open', '', 'contact-form-1-2', '', '', '2018-12-03 11:55:32', '2018-12-03 08:55:32', '', 0, 'http://wordpress.tanshcreative.com/quezal/?post_type=wpcf7_contact_form&#038;p=5', 0, 'wpcf7_contact_form', '', 0),
(269, 1, '2014-07-10 13:13:15', '2014-07-10 07:43:15', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.', 'Queen Nicson', '', 'publish', 'closed', 'closed', '', 'queen-nicson', '', '', '2014-07-10 13:13:15', '2014-07-10 07:43:15', '', 0, 'http://localhost/wordpress/?post_type=tcsn_testimonial&amp;p=269', 0, 'tcsn_testimonial', '', 0),
(276, 1, '2014-07-10 13:44:04', '2014-07-10 08:14:04', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks.', 'King Rapper', '', 'publish', 'closed', 'closed', '', 'king-rapper', '', '', '2014-07-10 13:44:04', '2014-07-10 08:14:04', '', 0, 'http://localhost/wordpress/?post_type=tcsn_testimonial&amp;p=276', 0, 'tcsn_testimonial', '', 0),
(1606, 1, '2014-07-26 10:28:54', '2014-07-26 04:58:54', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'Martin Anderson', '', 'publish', 'closed', 'closed', '', 'martin-anderson', '', '', '2014-07-26 10:28:54', '2014-07-26 04:58:54', '', 0, 'http://localhost/wordpress/?post_type=tcsn_team&amp;p=1606', 0, 'tcsn_team', '', 0),
(2769, 1, '2014-08-01 12:06:16', '2014-08-01 06:36:16', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'Alize Goulder', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'publish', 'closed', 'closed', '', 'alize-goulder', '', '', '2014-08-01 12:06:16', '2014-08-01 06:36:16', '', 0, 'http://localhost/wordpress/?post_type=tcsn_team&amp;p=2769', 0, 'tcsn_team', '', 0),
(2774, 1, '2014-08-01 12:15:19', '2014-08-01 06:45:19', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'Kevin Aubert', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'publish', 'closed', 'closed', '', 'kevin-aubert', '', '', '2014-08-01 12:15:19', '2014-08-01 06:45:19', '', 0, 'http://localhost/wordpress/?post_type=tcsn_team&amp;p=2774', 0, 'tcsn_team', '', 0),
(2776, 1, '2014-08-01 12:17:12', '2014-08-01 06:47:12', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'Spencer Weeden', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.', 'publish', 'closed', 'closed', '', 'spencer-weeden', '', '', '2014-08-01 12:17:12', '2014-08-01 06:47:12', '', 0, 'http://localhost/wordpress/?post_type=tcsn_team&amp;p=2776', 0, 'tcsn_team', '', 0),
(3415, 1, '2014-07-01 11:53:59', '2014-07-01 06:23:59', '[vc_row fullwidth_row="yes" css=".vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}"][vc_column][vc_column_text][text_style size="20px" line_height="" color="#ce0027"]A piece of classical Latin literature from 45 BC, making it over 2000 years old.[/text_style][spacer height="10px"][text_style size="24px" line_height="34px" color="#545454"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/3"][box bg_color="#edeadf"]\r\n<h4>[text_style size="" line_height="" color="#ce3f00"]Web Marketing\r\nand Advertising[/text_style]</h4>\r\nAt vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos.\r\n\r\n[spacer height="15px"]\r\n\r\n<img class="alignleft size-full wp-image-1682" src="http://wordpress.tanshcreative.com/quezal/wp-content/uploads/png-icon2.png" alt="png-icon2" width="110" height="114" />[/box][/vc_column][vc_column width="1/3"][box bg_color="#dfe9ed"]\r\n<h4>[text_style size="" line_height="" color="#00a5ce"]Digital Strategy\r\nand Planning[/text_style]</h4>\r\nAt vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos.\r\n\r\n[spacer height="15px"]\r\n\r\n<img class="alignleft size-full wp-image-1685" src="http://wordpress.tanshcreative.com/quezal/wp-content/uploads/png-icon3.png" alt="png-icon3" width="110" height="114" />[/box][/vc_column][vc_column width="1/3"][box bg_color="#e6eddf"]\r\n<h4>[text_style size="" line_height="" color="#74ce00"]E-Commerce and\r\nRetail Experiences[/text_style]</h4>\r\nAt vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos.\r\n\r\n[spacer height="15px"]\r\n\r\n<img class="alignleft size-full wp-image-1696" src="http://wordpress.tanshcreative.com/quezal/wp-content/uploads/png-icon1.png" alt="png-icon1" width="108" height="114" />[/box][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830989293{padding-top: 15px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="pencil" icon_bg="#a9c5c8" icon_color="#ffffff" heading="Easy Customization"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="bucket" icon_bg="#c8c1a9" icon_color="#ffffff" heading="Unlimited Colors"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="browser" icon_bg="#c0c8a9" icon_color="#ffffff" heading="Options Framework"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830995831{padding-bottom: 45px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="calendar" icon_bg="#c5a9c8" icon_color="#ffffff" heading="Periodic Updates"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="ribbon2" icon_bg="#a9adc8" icon_color="#ffffff" heading="Premium Plugins"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="lightbulb2" icon_bg="#a9c8c5" icon_color="#ffffff" heading="Awesome Features"]It is a long established fact that a reader will be distracted by the readable content of a lorem ipsum page when looking.[/icon_feature][/vc_column][/vc_row][vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454830695256{border-top-width: 1px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 10px !important;padding-bottom: 15px !important;background-color: #f4f4f4 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: #e4e4e4 !important;border-left-style: solid !important;border-right-color: #e4e4e4 !important;border-right-style: solid !important;border-top-color: #e4e4e4 !important;border-top-style: solid !important;border-bottom-color: #e4e4e4 !important;border-bottom-style: solid !important;}" fullwidth_row="yes"][vc_column width="1/3"][vc_column_text]\r\n<h4>Web Design and Development</h4>\r\n[/vc_column_text][vc_column_text][list_circle color="#545454" font_size="20px"][list_item]Corporate Websites[/list_item][list_item]Flash Websites[/list_item][list_item]E-Commerce Integrations[/list_item][list_item]Email Portals[/list_item][list_item]Interactive Presentations[/list_item][/list_circle][/vc_column_text][/vc_column][vc_column width="1/3"][vc_column_text]\r\n<h4>Professional Solutions</h4>\r\n[/vc_column_text][vc_column_text][list_arrow color="#545454" font_size="20px"][list_item]Content Strategy[/list_item][list_item]Branding Solutions[/list_item][list_item]Search Engine Optimization[/list_item][list_item]CMS Development[/list_item][list_item]Bespoke Web Applications[/list_item][/list_arrow][/vc_column_text][/vc_column][vc_column width="1/3"][vc_column_text]\r\n<h4>Web Design and Development</h4>\r\n[/vc_column_text][vc_column_text][list_heart color="#545454" font_size="20px"][list_item]Corporate Websites[/list_item][list_item]Flash Websites[/list_item][list_item]E-Commerce Integrations[/list_item][list_item]Email Portals[/list_item][list_item]Interactive Presentations[/list_item][/list_heart]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]', 'Services', '', 'inherit', 'closed', 'closed', '', '19-revision-v1', '', '', '2014-07-01 11:53:59', '2014-07-01 06:23:59', '', 19, 'https://craftech.co.ke/2014/07/01/19-revision-v1/', 0, 'revision', '', 0),
(3416, 1, '2014-07-14 23:01:01', '2014-07-14 17:31:01', '[vc_row gap="30" css=".vc_custom_1478239218869{padding-top: 35px !important;padding-bottom: 10px !important;}"][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled[/text_style][/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets.[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454829761695{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg2.jpg?id=51) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/6"][/vc_column][vc_column width="2/3" css=".vc_custom_1406307108950{padding: 60px !important;background-color: #ffffff !important;}"][vc_column_text]\r\n<h3>What can be learned from the text that is the standard of typesetting industry?</h3>\r\n[text_style size="20px" line_height="" color="#ce0027"]It is lorem ipsum.[/text_style]\r\n\r\n[spacer height="5px"]\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n\r\nIt has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.\r\n\r\nAnd more recently with desktop publishing software like Aldus PageMaker.\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.\r\n\r\nThe standard chunk of Lorem Ipsum used since the 1500s.\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable.\r\n\r\nPeter Luger does many great things, but it does one exceptionally well—the steak. The porterhouse, to be exact. And they’ve been doing it for over 125 years. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text.\r\n\r\nAll the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\r\n\r\n<img class="alignleft size-full wp-image-1566" src="http://wordpress.tanshcreative.com/quezal/wp-content/uploads/sig.png" alt="sig" width="166" height="57" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[text_style size="12px" line_height="" color=""]<strong>Jonathon Doe, CEO</strong>[/text_style][/vc_column_text][/vc_column][vc_column width="1/6"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1459649905526{padding-top: 30px !important;padding-bottom: 30px !important;}"][vc_column width="1/4"][vc_single_image image="1375" img_size="1200x800" alignment="center"][vc_single_image image="1224" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/2"][vc_single_image image="1240" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/4"][vc_single_image image="1231" img_size="1200x800" alignment="center"][vc_single_image image="1238" img_size="1200x800" alignment="center"][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '837-revision-v1', '', '', '2014-07-14 23:01:01', '2014-07-14 17:31:01', '', 837, 'https://craftech.co.ke/2014/07/14/837-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wpfp_posts` VALUES
(3417, 1, '2018-12-03 05:19:23', '2018-12-03 05:19:23', '', 'home-biz-bg1.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz-bg1-jpg-2', '', '', '2018-12-03 05:19:23', '2018-12-03 05:19:23', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3418, 1, '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 'thumb-1.png', '', 'inherit', 'closed', 'closed', '', 'thumb-1-png-2', '', '', '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/thumb-1.png', 0, 'attachment', 'image/png', 0),
(3419, 1, '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 'color-piece.png', '', 'inherit', 'closed', 'closed', '', 'color-piece-png-2', '', '', '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/color-piece.png', 0, 'attachment', 'image/png', 0),
(3420, 1, '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 'quezal-symbol.png', '', 'inherit', 'closed', 'closed', '', 'quezal-symbol-png-2', '', '', '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/quezal-symbol.png', 0, 'attachment', 'image/png', 0),
(3421, 1, '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 'home-biz-bg2.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz-bg2-jpg-2', '', '', '2018-12-03 05:19:25', '2018-12-03 05:19:25', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-bg2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3422, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'thumb-2.png', '', 'inherit', 'closed', 'closed', '', 'thumb-2-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/thumb-2.png', 0, 'attachment', 'image/png', 0),
(3423, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon1.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon1-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon1.png', 0, 'attachment', 'image/png', 0),
(3424, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon2.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon2-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon2.png', 0, 'attachment', 'image/png', 0),
(3425, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon3.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon3-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon3.png', 0, 'attachment', 'image/png', 0),
(3426, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon4.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon4-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon4.png', 0, 'attachment', 'image/png', 0),
(3427, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon5.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon5-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon5.png', 0, 'attachment', 'image/png', 0),
(3428, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon6.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon6-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon6.png', 0, 'attachment', 'image/png', 0),
(3429, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon7.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon7-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon7.png', 0, 'attachment', 'image/png', 0),
(3430, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-icon8.png', '', 'inherit', 'closed', 'closed', '', 'home-biz-icon8-png-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-icon8.png', 0, 'attachment', 'image/png', 0),
(3431, 1, '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 'home-biz-bg3.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz-bg3-jpg-2', '', '', '2018-12-03 05:19:26', '2018-12-03 05:19:26', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz/home-biz-bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3433, 1, '2018-12-03 05:19:28', '2018-12-03 05:19:28', '', 'home-biz2-bg1.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz2-bg1-jpg-2', '', '', '2018-12-03 05:19:28', '2018-12-03 05:19:28', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-bg1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3434, 1, '2018-12-03 05:19:29', '2018-12-03 05:19:29', '', 'home-biz2-cinema-display.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-cinema-display-png-2', '', '', '2018-12-03 05:19:29', '2018-12-03 05:19:29', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-cinema-display.png', 0, 'attachment', 'image/png', 0),
(3435, 1, '2018-12-03 05:19:29', '2018-12-03 05:19:29', '', 'home-biz2-spect.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-spect-png-2', '', '', '2018-12-03 05:19:29', '2018-12-03 05:19:29', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-spect.png', 0, 'attachment', 'image/png', 0),
(3436, 1, '2018-12-03 05:19:29', '2018-12-03 05:19:29', '', 'home-biz2-bg2.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz2-bg2-jpg-2', '', '', '2018-12-03 05:19:29', '2018-12-03 05:19:29', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-bg2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3437, 1, '2018-12-03 05:19:30', '2018-12-03 05:19:30', '', 'home-biz2-macbook.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-macbook-png-2', '', '', '2018-12-03 05:19:30', '2018-12-03 05:19:30', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-macbook.png', 0, 'attachment', 'image/png', 0),
(3438, 1, '2018-12-03 05:19:31', '2018-12-03 05:19:31', '', 'home-biz2-origami.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-origami-png-2', '', '', '2018-12-03 05:19:31', '2018-12-03 05:19:31', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-origami.png', 0, 'attachment', 'image/png', 0),
(3439, 1, '2018-12-03 05:19:31', '2018-12-03 05:19:31', '', 'home-biz2-bg3.jpg', '', 'inherit', 'closed', 'closed', '', 'home-biz2-bg3-jpg-2', '', '', '2018-12-03 05:19:31', '2018-12-03 05:19:31', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-bg3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3440, 1, '2018-12-03 05:19:31', '2018-12-03 05:19:31', '', 'home-biz2-iPad.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-ipad-png-2', '', '', '2018-12-03 05:19:31', '2018-12-03 05:19:31', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-iPad.png', 0, 'attachment', 'image/png', 0),
(3441, 1, '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 'home-biz2-browserWindow.png', '', 'inherit', 'closed', 'closed', '', 'home-biz2-browserwindow-png-2', '', '', '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/home-biz2/home-biz2-browserWindow.png', 0, 'attachment', 'image/png', 0),
(3442, 1, '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 'process-img1.png', '', 'inherit', 'closed', 'closed', '', 'process-img1-png-2', '', '', '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/the-process/process-img1.png', 0, 'attachment', 'image/png', 0),
(3443, 1, '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 'arrow.png', '', 'inherit', 'closed', 'closed', '', 'arrow-png-2', '', '', '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/the-process/arrow.png', 0, 'attachment', 'image/png', 0),
(3444, 1, '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 'process-img2.png', '', 'inherit', 'closed', 'closed', '', 'process-img2-png-2', '', '', '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/the-process/process-img2.png', 0, 'attachment', 'image/png', 0),
(3445, 1, '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 'process-img3.png', '', 'inherit', 'closed', 'closed', '', 'process-img3-png-2', '', '', '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/the-process/process-img3.png', 0, 'attachment', 'image/png', 0),
(3447, 1, '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 'process-img5.png', '', 'inherit', 'closed', 'closed', '', 'process-img5-png-2', '', '', '2018-12-03 05:19:32', '2018-12-03 05:19:32', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/the-process/process-img5.png', 0, 'attachment', 'image/png', 0),
(3516, 1, '2020-03-06 11:31:26', '2020-03-06 08:31:26', '', '8-port-with-4-port-PoE', '', 'inherit', 'open', 'closed', '', '8-port-with-4-port-poe', '', '', '2020-03-06 11:31:26', '2020-03-06 08:31:26', '', 3515, 'https://craftech.co.ke/wp-content/uploads/2020/03/8-port-with-4-port-PoE.jpg', 0, 'attachment', 'image/jpeg', 0),
(3450, 1, '2018-12-03 05:19:35', '2018-12-03 05:19:35', '', 'img2-1200x800.jpg', '', 'inherit', 'closed', 'closed', '', 'img2-1200x800-jpg-2', '', '', '2018-12-03 05:19:35', '2018-12-03 05:19:35', '', 0, 'https://craftech.co.ke/wp-content/uploads/revslider/gallery-post-slider/img2-1200x800.jpg', 0, 'attachment', 'image/jpeg', 0),
(3488, 1, '2019-09-30 14:43:55', '2019-09-30 11:43:55', '', 'woocommerce-placeholder', '', 'inherit', 'open', 'closed', '', 'woocommerce-placeholder', '', '', '2019-09-30 14:43:55', '2019-09-30 11:43:55', '', 0, 'https://craftech.co.ke/wp-content/uploads/2019/09/woocommerce-placeholder.png', 0, 'attachment', 'image/png', 0),
(3453, 1, '2018-12-03 08:28:48', '2018-12-03 05:28:48', '', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2018-12-03 08:28:48', '2018-12-03 05:28:48', '', 0, 'https://craftech.co.ke/?page_id=3453', 0, 'page', '', 0),
(3455, 1, '2018-12-03 08:31:10', '2018-12-03 05:31:10', '', 'favicon', '', 'inherit', 'open', 'closed', '', 'favicon-2', '', '', '2018-12-03 08:31:10', '2018-12-03 05:31:10', '', 0, 'https://craftech.co.ke/wp-content/uploads/2018/12/favicon.ico', 0, 'attachment', 'image/x-icon', 0),
(3456, 1, '2018-12-03 08:31:42', '2018-12-03 05:31:42', '', 'apple-touch-icon-57-precomposed', '', 'inherit', 'open', 'closed', '', 'apple-touch-icon-57-precomposed', '', '', '2018-12-03 08:31:42', '2018-12-03 05:31:42', '', 0, 'https://craftech.co.ke/wp-content/uploads/2018/12/apple-touch-icon-57-precomposed.png', 0, 'attachment', 'image/png', 0),
(3457, 1, '2018-12-03 08:34:14', '2018-12-03 05:34:14', '', 'logo', '', 'inherit', 'open', 'closed', '', 'logo-2', '', '', '2018-12-03 08:34:14', '2018-12-03 05:34:14', '', 0, 'https://craftech.co.ke/wp-content/uploads/2018/12/logo.png', 0, 'attachment', 'image/png', 0),
(3460, 1, '2018-12-03 09:00:34', '2018-12-03 06:00:34', '', 'bg4', '', 'inherit', 'open', 'closed', '', 'bg4-2', '', '', '2018-12-03 09:00:34', '2018-12-03 06:00:34', '', 553, 'https://craftech.co.ke/wp-content/uploads/2018/12/bg4.png', 0, 'attachment', 'image/png', 0),
(3463, 1, '2018-12-03 09:02:48', '2018-12-03 06:02:48', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"]469+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"]852+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="mobile4" icon_bg="#b8b8b8" icon_color="#ffffff" heading="App Development"][text_style size="48px" line_height="58px" color="#b8b8b8"]356+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Logo and Identity"][text_style size="48px" line_height="58px" color="#b8b8b8"]753+[/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="#" ]Read More[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why work together</h2>\n<p>[text_style size="24px" line_height="30px" color="#b8b8b8"]Lorem Ipsum is simply dummy text of the printing and typesetting industry.[/text_style][/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Doloreque</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>3. Molestia amet</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Tempore libero</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>4. Temporibus</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]<a href="#">info@example.com</a>[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+ 99 123 456 7890[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 10:00am to 6:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 09:02:48', '2018-12-03 06:02:48', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3464, 1, '2018-12-03 09:17:49', '2018-12-03 06:17:49', ' ', '', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2018-12-04 15:06:41', '2018-12-04 12:06:41', '', 0, 'https://craftech.co.ke/?p=3464', 10, 'nav_menu_item', '', 0),
(3466, 1, '2018-12-03 09:29:23', '2018-12-03 06:29:23', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>&nbsp;</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why work together</h2>\n<p>[text_style size="24px" line_height="30px" color="#b8b8b8"]Lorem Ipsum is simply dummy text of the printing and typesetting industry.[/text_style][/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Doloreque</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>3. Molestia amet</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Tempore libero</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>4. Temporibus</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]<a href="#">info@example.com</a>[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+ 99 123 456 7890[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 10:00am to 6:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 09:29:23', '2018-12-03 06:29:23', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3465, 1, '2018-12-03 09:28:13', '2018-12-03 06:28:13', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>&nbsp;</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why work together</h2>\n<p>[text_style size="24px" line_height="30px" color="#b8b8b8"]Lorem Ipsum is simply dummy text of the printing and typesetting industry.[/text_style][/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Doloreque</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>3. Molestia amet</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Tempore libero</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][vc_column_text]</p>\n<h5>4. Temporibus</h5>\n<p>It is a long established fact that a reader will be distracted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]<a href="#">info@example.com</a>[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+ 99 123 456 7890[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 10:00am to 6:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 09:28:13', '2018-12-03 06:28:13', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3467, 1, '2018-12-03 09:46:15', '2018-12-03 06:46:15', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>&nbsp;</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]<a href="#">info@example.com</a>[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+ 99 123 456 7890[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 10:00am to 6:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 09:46:15', '2018-12-03 06:46:15', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3468, 1, '2018-12-03 09:48:38', '2018-12-03 06:48:38', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>&nbsp;</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 09:48:38', '2018-12-03 06:48:38', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3471, 1, '2018-12-03 10:17:51', '2018-12-03 07:17:51', '<p>[vc_row gap="30" css=".vc_custom_1478239218869{padding-top: 35px !important;padding-bottom: 10px !important;}"][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]</p>\n<h5><b>Our Purpose</b></h5>\n<p>Craftech is aimed at providing quality and reliable service to our diverse clientele.</p>\n<h5>Our Mission</h5>\n<p>Craftech is committed to offering customer focused ICT solutions that meet both their interests and business needs.</p>\n<p>[/text_style][/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]</p>\n<h5><b>Our Vision</b></h5>\n<p>To be a leader in the ICT industry in terms of innovation and custom made solutions.</p>\n<h5>Our Values</h5>\n<p>Commitment, Innovation, customer interaction and integrity.</p>\n<p>[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454829761695{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg2.jpg?id=51) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/6"][/vc_column][vc_column width="2/3" css=".vc_custom_1406307108950{padding: 60px !important;background-color: #ffffff !important;}"][vc_column_text]</p>\n<h3>Lets Expound on Craftech shall we ?</h3>\n<p>[text_style size="20px" line_height="" color=grey] Just Amazing! [/text_style]</p>\n<p>[spacer height="5px"]</p>\n<p><strong>CRAFTECH KENYA</strong> has been formed by a team of professionals with a wide exposure in terms of experience and Information Technology tools of work.</p>\n<p>The team involved are young qualified graduates and engineers from renowned universities.</p>\n<p>The resource personnel working and managing the company have been consistently providing reliable support to a wide variety of corporate houses in the capacity of consultancy, procurement, and service provision.</p>\n<p>The company’s philosophy is and will always be building long term relationships with its clients with emphasis on quality, affordable and target oriented modern technologies.</p>\n<p><strong>CRAFTECH KENYA</strong> is a company where professionals from technical and business world grow together to realize appropriate business solutions that are client oriented.</p>\n<p>Together we constantly strive to be a leading firm in Information Technology with a keen eye on functional knowledge and business growth. The company’s success is heavily reliant on our close working relationship with each client and ensuring that we walk with them from idea conceptualization to implementation of Information Technology solutions that would impact their business positively.</p>\n<p>We are keen on establishing ourselves as the best choice in Information technology services, computing, consultancy, and solutions development by offering a customer oriented approach to service provision.</p>\n<p>&nbsp;[/vc_column_text][/vc_column][vc_column width="1/6"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1459649905526{padding-top: 30px !important;padding-bottom: 30px !important;}"][vc_column width="1/4"][vc_single_image image="2976" img_size="1200x800" alignment="center"][vc_single_image image="2441" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/2"][vc_single_image image="1240" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/4"][vc_single_image image="1231" img_size="1200x800" alignment="center"][vc_single_image image="2731" img_size="1200x800" alignment="center"][/vc_column][/vc_row]</p>\n', 'About Us', '', 'inherit', 'closed', 'closed', '', '837-revision-v1', '', '', '2018-12-03 10:17:51', '2018-12-03 07:17:51', '', 837, 'https://craftech.co.ke/2018/12/03/837-revision-v1/', 0, 'revision', '', 0),
(3470, 1, '2018-12-03 10:11:59', '2018-12-03 07:11:59', '<p>[vc_row gap="30" css=".vc_custom_1478239218869{padding-top: 35px !important;padding-bottom: 10px !important;}"][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]</p>\n<h5><b>Our Purpose</b></h5>\n<p>Craftech is aimed at providing quality and reliable service to our diverse clientele.</p>\n<h5>Our Mission</h5>\n<p>Craftech is committed to offering customer focused ICT solutions that meet both their interests and business needs.</p>\n<p>[/text_style][/vc_column_text][/vc_column][vc_column width="1/2"][vc_column_text][text_style size="20px" line_height="32px" color="#545454"]</p>\n<h5><b>Our Vision</b></h5>\n<p>To be a leader in the ICT industry in terms of innovation and custom made solutions.</p>\n<h5>Our Values</h5>\n<p>Commitment, Innovation, customer interaction and integrity.</p>\n<p>[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454829761695{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg2.jpg?id=51) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/6"][/vc_column][vc_column width="2/3" css=".vc_custom_1406307108950{padding: 60px !important;background-color: #ffffff !important;}"][vc_column_text]</p>\n<h3>What can be learned from the text that is the standard of typesetting industry?</h3>\n<p>[text_style size="20px" line_height="" color="#ce0027"]It is lorem ipsum.[/text_style]</p>\n<p>[spacer height="5px"]</p>\n<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.</p>\n<p>And more recently with desktop publishing software like Aldus PageMaker.</p>\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.</p>\n<p>The standard chunk of Lorem Ipsum used since the 1500s.</p>\n<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable.</p>\n<p>Peter Luger does many great things, but it does one exceptionally well—the steak. The porterhouse, to be exact. And they’ve been doing it for over 125 years. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text.</p>\n<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.</p>\n<p><img class="alignleft size-full wp-image-1566" src="https://craftech.co.ke/wp-content/uploads/2014/07/sig.png" alt="sig" width="166" height="57" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>[text_style size="12px" line_height="" color=""]<strong>Jonathon Doe, CEO</strong>[/text_style][/vc_column_text][/vc_column][vc_column width="1/6"][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1459649905526{padding-top: 30px !important;padding-bottom: 30px !important;}"][vc_column width="1/4"][vc_single_image image="1375" img_size="1200x800" alignment="center"][vc_single_image image="1224" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/2"][vc_single_image image="1240" img_size="1200x800" alignment="center"][/vc_column][vc_column width="1/4"][vc_single_image image="1231" img_size="1200x800" alignment="center"][vc_single_image image="1238" img_size="1200x800" alignment="center"][/vc_column][/vc_row]</p>\n', 'About Us', '', 'inherit', 'closed', 'closed', '', '837-revision-v1', '', '', '2018-12-03 10:11:59', '2018-12-03 07:11:59', '', 837, 'https://craftech.co.ke/2018/12/03/837-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wpfp_posts` VALUES
(3474, 1, '2018-12-03 11:13:31', '2018-12-03 08:13:31', '<p>[vc_row css=".vc_custom_1454831500869{padding-top: 60px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="pricetags" color="#00a5ce" size="64px"]</p>\n<h2 style="text-align: center;">99.999% Efficient services</h2>\n<p style="text-align: center;">\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/4"][pricing title="Basic" currency="Ksh." price="2000" price_label="/month" button_content="TALK TO US"][text_style size="18px" line_height="24px" color="#59ba47"]One Branch[/text_style]</p>\n<p>[spacer height="15px"]</p>\n<p>[list_pricing][list_item]<b>Phone Support</b>[/list_item][list_item]<b>Trouble Shooting</b>[/list_item][list_item]<strong> Cost covers basic repairs</strong>[/list_item][list_item]<strong>Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Silver" currency="Ksh" price="5000" price_label="/month" button_content="Talk to Us"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 1[/text_style]</p>\n<p>[spacer height="15px"]</p>\n<p>[list_pricing][list_item]<strong>Phone + Team Viewer Support up to two branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Basic Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Platinum" currency="Ksh." price="10000" price_label="/month" color="mybtn-green" button_content="TALK TO US" table="featured-table"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 2[/text_style]</p>\n<p>[spacer height="15px"]</p>\n<p>[list_pricing][list_item]<strong>Phone + Team Viewer Support up to three branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Intermediate Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Gold" currency="Ksh" price="40000" price_label="/month" button_content="TALK TO US"][text_style size="18px" line_height="24px" color="#59ba47"]Branch ++ [/text_style]</p>\n<p>[spacer height="15px"]</p>\n<p>[list_pricing][list_item]<strong>Phone + Team Viewer Support to all branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Complex Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>][list_item]Loaner Laptop while we work on yours [/list_item][list_item]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][/vc_row][vc_row css=".vc_custom_1454831571856{padding-top: 30px !important;padding-bottom: 25px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="others-line-questionmark" color="#ce0027" size="64px"]</p>\n<p>[/vc_column_text][vc_column_text]</p>\n<h4 style="text-align: center;">Frequently Asked Questions</h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. What is lorem ipsum text?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>3. How liber tempor cum soluta nobis?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>5. What is lorem ipsum text?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. How liber tempor cum soluta nobis?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>4. What is lorem ipsum text?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>6. How liber tempor cum soluta nobis?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831408109{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_row_inner][vc_column_inner width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?" contact_info="info@example.com"][text_style size="20px" line_height="" color=""]Craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us" contact_info="+1 800 234 5678"][text_style size="20px" line_height="" color=""]+ 254 778 859 139[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online" contact_info="Mon - Fri: 10:00am to 6:00pm"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Pricing Variation 1', '', 'inherit', 'closed', 'closed', '', '1053-revision-v1', '', '', '2018-12-03 11:13:31', '2018-12-03 08:13:31', '', 1053, 'https://craftech.co.ke/2018/12/03/1053-revision-v1/', 0, 'revision', '', 0),
(3475, 1, '2018-12-03 11:17:14', '2018-12-03 08:17:14', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Infrastructure Loaning[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>&nbsp;</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 11:17:14', '2018-12-03 08:17:14', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3476, 1, '2018-12-03 11:18:15', '2018-12-03 08:18:15', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Infrastructure Loaning[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design & Development"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Print Design"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page.</p>\n<p>&nbsp;</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 11:18:15', '2018-12-03 08:18:15', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3477, 1, '2018-12-03 11:22:54', '2018-12-03 08:22:54', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Infrastructure Loaning[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design & Development"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="ICT Infrustructure Leasing"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>Craftech understands Startup needs and struggles. This is why we offer leasing services for laptops / Printers and a wide range of infrastructure that a business may need IT.</p>\n<p>&nbsp;</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="flag2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 11:22:54', '2018-12-03 08:22:54', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3478, 1, '2018-12-03 11:24:09', '2018-12-03 08:24:09', '<p>[vc_row full_width="stretch_row" gap="30" css=".vc_custom_1454829088163{padding-top: 15px !important;padding-bottom: 45px !important;background: #b9b701 url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/2" css=".vc_custom_1454758414235{padding-top: 30px !important;}"][vc_single_image image="3461" img_size="650x533" css=".vc_custom_1543816954128{padding-top: 60px !important;}"][/vc_column][vc_column width="1/2"][box bg_color="#ffffff" padding="60px 60px 60px 60px"]</p>\n<h2>Your Stop Shop For All Your ICT Needs</h2>\n<p>Gone are the days of Modularizing your ICT needs. Craftech Kenya has made packages compatible to majority of business types in Kenya. From Individuals , to Corporates ranging from small businesses to big businesses with multiple branches needing flexible IT Support .</p>\n<p>[spacer height="15px"]</p>\n<h5>[text_style size="" line_height="" color=""]Service Highlights -[/text_style]</h5>\n<p>[list_arrow color="#545454" font_size="14px"][list_item]Technical IT Suport [/list_item][list_item]Web Design and Developent[/list_item][list_item]ICT Infrastructure Loaning[/list_item][list_item]ICT Accessories ( Computers &amp; Peripherals )[/list_item][/list_arrow]<br />\n[spacer height="15px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="#" ]Get Started[/button][/box][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828931290{padding-top: 25px !important;padding-bottom: 35px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<h2 style="text-align: center;">Expertise... We are best at</h2>\n<p>[/vc_column_text][vc_row_inner gap="30" css=".vc_custom_1454828937275{padding-top: 20px !important;}"][vc_column_inner width="1/4"][icon_feature icon="desktop2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Web Design & Development"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We specialize in both Simple portfolio websites  &amp; Web Applications</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="printer" icon_bg="#b8b8b8" icon_color="#ffffff" heading="ICT Infrustructure Leasing"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>Craftech understands Startup needs and struggles. This is why we offer leasing services for laptops / Printers and a wide range of infrastructure that a business may need IT.</p>\n<p>&nbsp;</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="building-o" icon_bg="#b8b8b8" icon_color="#ffffff" heading="IT Consultancy / Support"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>We provide a Robust line of IT support solutions from simple client desktop trouble shooting to major server deployments and maintenance.</p>\n<p>[spacer height="5px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][vc_column_inner width="1/4"][icon_feature icon="tools-2" icon_bg="#b8b8b8" icon_color="#ffffff" heading="Computers & Accessories"][text_style size="48px" line_height="58px" color="#b8b8b8"][/text_style]</p>\n<p>From Small Desktop computers to Servers, We have you sorted together with their peripherals and Accessories</p>\n<p>[spacer height="10px"][button class="mybtn mybtn-flat-olive" target="_blank" url="https://craftech.co.ke/contact-us-2/" ]Talk to us[/button][/icon_feature][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828855961{padding-top: 20px !important;padding-bottom: 25px !important;background: #ffffff url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg3.jpg?id=672) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][vc_column width="1/2"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/2"][vc_column_text]</p>\n<h2>Why Craftech ?</h2>\n<ul>\n<li>State of the art IT support with remote help desk and 6 hour rapid response.</li>\n<li>Advanced Technical support with all our client purchased products.</li>\n<li>Scalability across the board to meet your organizations IT needs.</li>\n<li>Knowledge in latest ICT trends.</li>\n</ul>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. Rapid Response</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>3. Highly Skilled</h5>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. Quality Products &amp; Service</h5>\n<p>&nbsp;[/vc_column_text][vc_column_text]</p>\n<h5>4. Scalable</h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828762915{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?"][text_style size="20px" line_height="" color=""]craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us"][text_style size="20px" line_height="" color=""]+254 778 859 139 [/text_style][/icon_contact_info][/vc_column][vc_column width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454828804871{padding-top: 10px !important;padding-bottom: 15px !important;background-color: #e4e4e4 !important;}" fullwidth_row="yes"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[text_style size="24px" line_height="" color=""]Hire us. We''d love to hear about your awesome project[/text_style][spacer_wide width="20px"][button class="mybtn mybtn-big mybtn-olive" target="_blank" url="<a href="https://craftech.co.ke/contact-us-2/">#</a>" icon="pencil3" ]Get Started Today![/button]</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Home Service', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-12-03 11:24:09', '2018-12-03 08:24:09', '', 553, 'https://craftech.co.ke/2018/12/03/553-revision-v1/', 0, 'revision', '', 0),
(3479, 1, '2018-12-03 11:25:26', '2018-12-03 08:25:26', '<p>[vc_row fullwidth_row="yes" css=".vc_custom_1454831307231{padding-top: 55px !important;padding-bottom: 30px !important;}"][vc_column][vc_column_text][text_style size="20px" line_height="" color=Grey]What can we do for you and your business[/text_style][spacer height="10px"][text_style size="24px" line_height="34px" color="#545454"]Your business is growing and your IT infrastructure isn’t keeping up. You need IT solutions that match your growth plans? Then here is a few things we can do to ensure your business maintains standards that customers demand. Feel free to consult us on[/text_style][/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831180131{padding-top: 30px !important;padding-bottom: 60px !important;background-image: url(https://craftech.co.ke/wp-content/uploads/2014/07/home-biz-bg3.jpg?id=59) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/3"][box bg_color="#edeadf"]</p>\n<h4>[text_style size="" line_height="" color="#ce3f00"]Web Design, Development &amp;  Marketing<br />\n[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#dfe9ed"]</p>\n<h4>[text_style size="" line_height="" color="#00a5ce"]IT Support Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]&nbsp;[/box][/vc_column][vc_column width="1/3"][box bg_color="#e6eddf"]</p>\n<h4>[text_style size="" line_height="" color="#74ce00"]General ICT Consultation and Training Services[/text_style]</h4>\n<p>&nbsp;</p>\n<p>[spacer height="15px"]&nbsp;[/box][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830989293{padding-top: 15px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="pencil" icon_bg="#a9c5c8" icon_color="#ffffff" heading="ICT Consultancy Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="bucket" icon_bg="#c8c1a9" icon_color="#ffffff" heading="Computers, Peripherals and Accessories"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="browser" icon_bg="#c0c8a9" icon_color="#ffffff" heading="Web Design & Development"][/icon_feature][/vc_column][/vc_row][vc_row gap="30" fullwidth_row="yes" css=".vc_custom_1454830995831{padding-bottom: 45px !important;}"][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="cloud6" icon_bg="#c5a9c8" icon_color="#ffffff" heading="Network and Infrustructure Services"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="ribbon2" icon_bg="#a9adc8" icon_color="#ffffff" heading="Information Systems Security"][/icon_feature][/vc_column][vc_column width="1/3"][icon_feature feature_style="feature_icon_left" icon="lightbulb2" icon_bg="#a9c8c5" icon_color="#ffffff" heading="ICT Support Services & Infrustructure leasing"][/icon_feature][/vc_column][/vc_row]</p>\n', 'Services', '', 'inherit', 'closed', 'closed', '', '19-revision-v1', '', '', '2018-12-03 11:25:26', '2018-12-03 08:25:26', '', 19, 'https://craftech.co.ke/2018/12/03/19-revision-v1/', 0, 'revision', '', 0),
(3480, 1, '2018-12-03 11:26:45', '2018-12-03 08:26:45', '<p>[vc_row css=".vc_custom_1454831500869{padding-top: 60px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="pricetags" color="#00a5ce" size="64px"]</p>\n<h2 style="text-align: center;">99.999% Efficient services</h2>\n<p style="text-align: center;">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/4"][pricing title="Basic" currency="Ksh." price="2000" price_label="/month" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]One Branch[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<b>Phone Support</b>[/list_item][list_item]<b>Trouble Shooting</b>[/list_item][list_item]<strong> Cost covers basic repairs</strong>[/list_item][list_item]<strong>Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Silver" currency="Ksh" price="5000" price_label="/month" button_content="Talk to Us" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 1[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support up to two branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Basic Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts not Included</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Platinum" currency="Ksh." price="10000" price_label="/month" color="mybtn-green" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2" table="featured-table"][text_style size="18px" line_height="24px" color="#59ba47"]Branch + 2[/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support up to three branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Intermediate Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][vc_column width="1/4"][pricing title="Gold" currency="Ksh" price="40000" price_label="/month" button_content="TALK TO US" url="https://craftech.co.ke/contact-us-2"][text_style size="18px" line_height="24px" color="#59ba47"]Branch ++ [/text_style]</p>\n<p>[spacer height="15px"][list_pricing][list_item]<strong>Phone + Team Viewer Support to all branches</strong>[/list_item][list_item]<strong>Trouble Shooting</strong>[/list_item][list_item]<strong>Cost Covers Complex Repairs</strong>[/list_item][list_item]<strong>Rapid Resonse</strong>[/list_item][list_item<strong>][list_item]Loaner Laptop while we work on yours [/list_item][list_item]Parts replacement Covered ( in contract )</strong>[/list_item][/list_pricing][/pricing][/vc_column][/vc_row][vc_row css=".vc_custom_1454831571856{padding-top: 30px !important;padding-bottom: 25px !important;}"][vc_column][vc_column_text]</p>\n<p style="text-align: center;">[icon type="others-line-questionmark" color="#ce0027" size="64px"]</p>\n<p>[/vc_column_text][vc_column_text]</p>\n<h4 style="text-align: center;">Frequently Asked Questions</h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>1. What is lorem ipsum text?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>3. How liber tempor cum soluta nobis?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>5. What is lorem ipsum text?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][vc_column_inner width="1/2"][vc_column_text]</p>\n<h5>2. How liber tempor cum soluta nobis?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>4. What is lorem ipsum text?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][vc_column_text]</p>\n<h5>6. How liber tempor cum soluta nobis?</h5>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454831408109{padding-top: 30px !important;padding-bottom: 60px !important;background-color: #f4f4f4 !important;}" fullwidth_row="yes"][vc_column][vc_row_inner][vc_column_inner width="1/3"][icon_contact_info icon="email-mail-streamline" icon_color="#b8b8b8" heading="Ask Questions?" contact_info="info@example.com"][text_style size="20px" line_height="" color=""]Craftech@craftech.co.ke[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="others-line-phone2" icon_color="#b8b8b8" heading="Call Us" contact_info="+1 800 234 5678"][text_style size="20px" line_height="" color=""]+ 254 778 859 139[/text_style][/icon_contact_info][/vc_column_inner][vc_column_inner width="1/3"][icon_contact_info icon="speech-streamline-talk-user" icon_color="#b8b8b8" heading="Chat Online" contact_info="Mon - Fri: 10:00am to 6:00pm"][text_style size="20px" line_height="" color=""]Mon - Fri: 07:00am to 5:00pm[/text_style][/icon_contact_info][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Pricing Variation 1', '', 'inherit', 'closed', 'closed', '', '1053-revision-v1', '', '', '2018-12-03 11:26:45', '2018-12-03 08:26:45', '', 1053, 'https://craftech.co.ke/2018/12/03/1053-revision-v1/', 0, 'revision', '', 0),
(3481, 1, '2018-12-03 11:31:19', '2018-12-03 08:31:19', '<p>[vc_row full_width="stretch_row" css=".vc_custom_1454832226651{background-image: url(http://wordpress.tanshcreative.com/quezal/wp-content/uploads/bg6.jpg?id=1355) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}" fullwidth_row="yes"][vc_column width="1/4"][/vc_column][vc_column width="1/4" css=".vc_custom_1454832264130{padding-top: 55px !important;padding-bottom: 25px !important;}"][vc_column_text]</p>\n<h4 style="text-align: right;">Give a Call</h4>\n<p style="text-align: right;">[text_style size="24px" line_height="30px" color=""]+254 778 859 139[/text_style]</p>\n<p>[/vc_column_text][/vc_column][vc_column width="1/4" css=".vc_custom_1454832271268{border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 1px !important;padding-top: 55px !important;padding-bottom: 25px !important;border-left-color: rgba(6,6,6,0.2) !important;border-left-style: solid !important;border-right-color: rgba(6,6,6,0.2) !important;border-right-style: solid !important;border-top-color: rgba(6,6,6,0.2) !important;border-top-style: solid !important;border-bottom-color: rgba(6,6,6,0.2) !important;border-bottom-style: solid !important;}"][vc_column_text]</p>\n<h4>Need Info?</h4>\n<p>[text_style size="24px" line_height="30px" color=""]Craftech@craftech.co.ke[/text_style][/vc_column_text][/vc_column][vc_column width="1/4"][/vc_column][/vc_row][vc_row css=".vc_custom_1454832188077{border-top-width: 1px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 15px !important;padding-bottom: 45px !important;border-left-color: #e4e4e4 !important;border-left-style: solid !important;border-right-color: #e4e4e4 !important;border-right-style: solid !important;border-top-color: #e4e4e4 !important;border-top-style: solid !important;border-bottom-color: #e4e4e4 !important;border-bottom-style: solid !important;}" fullwidth_row="yes"][vc_column width="1/6"][/vc_column][vc_column width="2/3"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h3 style="text-align: center;">Contact Form</h3>\n<p style="text-align: center;">[text_style size="24px" line_height="30px" color=""]Want to get in touch with us? No problem, fill out the form below and we will get back to you.[/text_style]</p>\n<p>[/vc_column_text][vc_column_text][contact-form-7 id="5" title="Contact form 1"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/6"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '2451-revision-v1', '', '', '2018-12-03 11:31:19', '2018-12-03 08:31:19', '', 2451, 'https://craftech.co.ke/2018/12/03/2451-revision-v1/', 0, 'revision', '', 0),
(3512, 1, '2020-03-06 11:26:03', '2020-03-06 08:26:03', '', 'Western Digital 1TB Hard Drive', 'Storage : 1 TB\r\n\r\nInterface : USB 3.0', 'publish', 'open', 'closed', '', 'western-digital-1tb-hard-drive', '', '', '2020-03-06 11:26:55', '2020-03-06 08:26:55', '', 0, 'https://craftech.co.ke/?post_type=product&#038;p=3512', 0, 'product', '', 0),
(3513, 1, '2020-03-06 11:21:20', '2020-03-06 08:21:20', '', '1TB 1', '', 'inherit', 'open', 'closed', '', '1tb-1', '', '', '2020-03-06 11:21:20', '2020-03-06 08:21:20', '', 3512, 'https://craftech.co.ke/wp-content/uploads/2020/03/1TB-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3514, 1, '2020-03-06 11:21:38', '2020-03-06 08:21:38', '', 'Western Digital', '', 'inherit', 'open', 'closed', '', '1tb-2-copy', '', '', '2020-03-06 11:23:16', '2020-03-06 08:23:16', '', 3512, 'https://craftech.co.ke/wp-content/uploads/2020/03/1tb-2-copy.png', 0, 'attachment', 'image/png', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_queue`
--

CREATE TABLE `wpfp_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attempts` tinyint(1) NOT NULL DEFAULT '0',
  `locked` tinyint(1) NOT NULL DEFAULT '0',
  `locked_at` datetime DEFAULT NULL,
  `available_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_revslider_css`
--

CREATE TABLE `wpfp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci,
  `hover` longtext COLLATE utf8mb4_unicode_ci,
  `advanced` longtext COLLATE utf8mb4_unicode_ci,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_revslider_css`
--

INSERT INTO `wpfp_revslider_css` VALUES
(1, '.tp-caption.medium_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","white-space":"nowrap"},"hover":""}', '{"color":"#fff","font-weight":"700","font-size":"20px","line-height":"20px","font-family":"Arial","padding":"2px 4px","margin":"0px","border-width":"0px","border-style":"none","background-color":"#888"}'),
(2, '.tp-caption.small_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","white-space":"nowrap"},"hover":""}', '{"color":"#fff","font-weight":"700","font-size":"14px","line-height":"20px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none"}'),
(3, '.tp-caption.medium_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","white-space":"nowrap"},"hover":""}', '{"color":"#fff","font-weight":"700","font-size":"20px","line-height":"20px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none"}'),
(4, '.tp-caption.large_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","white-space":"nowrap"},"hover":""}', '{"color":"#fff","font-weight":"700","font-size":"40px","line-height":"40px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none"}'),
(5, '.tp-caption.very_large_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","white-space":"nowrap","letter-spacing":"-2px"},"hover":""}', '{"color":"#fff","font-weight":"700","font-size":"60px","line-height":"60px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none"}'),
(6, '.tp-caption.very_big_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","white-space":"nowrap","padding-top":"1px"},"hover":""}', '{"color":"#fff","font-weight":"800","font-size":"60px","line-height":"60px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none","padding":"0px 4px","background-color":"#000"}'),
(7, '.tp-caption.very_big_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","white-space":"nowrap","padding-top":"1px"},"hover":""}', '{"color":"#000","font-weight":"700","font-size":"60px","line-height":"60px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none","padding":"0px 4px","background-color":"#fff"}'),
(8, '.tp-caption.modern_medium_fat', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","white-space":"nowrap"},"hover":""}', '{"color":"#000","font-weight":"800","font-size":"24px","line-height":"20px","font-family":"\\"Open Sans\\", sans-serif","margin":"0px","border-width":"0px","border-style":"none"}'),
(9, '.tp-caption.modern_medium_fat_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","white-space":"nowrap"},"hover":""}', '{"color":"#fff","font-weight":"800","font-size":"24px","line-height":"20px","font-family":"\\"Open Sans\\", sans-serif","margin":"0px","border-width":"0px","border-style":"none"}'),
(10, '.tp-caption.modern_medium_light', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","white-space":"nowrap"},"hover":""}', '{"color":"#000","font-weight":"300","font-size":"24px","line-height":"20px","font-family":"\\"Open Sans\\", sans-serif","margin":"0px","border-width":"0px","border-style":"none"}'),
(11, '.tp-caption.modern_big_bluebg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","letter-spacing":"0"},"hover":""}', '{"color":"#fff","font-weight":"800","font-size":"30px","line-height":"36px","font-family":"\\"Open Sans\\", sans-serif","padding":"3px 10px","margin":"0px","border-width":"0px","border-style":"none","background-color":"#4e5b6c"}'),
(12, '.tp-caption.modern_big_redbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","padding-top":"1px","letter-spacing":"0"},"hover":""}', '{"color":"#fff","font-weight":"300","font-size":"30px","line-height":"36px","font-family":"\\"Open Sans\\", sans-serif","padding":"3px 10px","margin":"0px","border-width":"0px","border-style":"none","background-color":"#de543e"}'),
(13, '.tp-caption.modern_small_text_dark', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","white-space":"nowrap"},"hover":""}', '{"color":"#555","font-size":"14px","line-height":"22px","font-family":"Arial","margin":"0px","border-width":"0px","border-style":"none"}'),
(14, '.tp-caption.boxshadow', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"-moz-box-shadow":"0px 0px 20px rgba(0, 0, 0, 0.5)","-webkit-box-shadow":"0px 0px 20px rgba(0, 0, 0, 0.5)","box-shadow":"0px 0px 20px rgba(0, 0, 0, 0.5)"},"hover":""}', '[]'),
(15, '.tp-caption.black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"color":"#000"}'),
(16, '.tp-caption.noshadow', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '[]'),
(17, '.tp-caption.thinheadline_dark', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none"},"hover":""}', '{"color":"rgba(0,0,0,0.85)","font-weight":"300","font-size":"30px","line-height":"30px","font-family":"\\"Open Sans\\"","background-color":"transparent"}'),
(18, '.tp-caption.thintext_dark', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none"},"hover":""}', '{"color":"rgba(0,0,0,0.85)","font-weight":"300","font-size":"16px","line-height":"26px","font-family":"\\"Open Sans\\"","background-color":"transparent"}'),
(19, '.tp-caption.largeblackbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}', '{"color":"#fff","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#000","padding":"0px 20px","border-radius":"0px"}'),
(20, '.tp-caption.largepinkbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}', '{"color":"#fff","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#db4360","padding":"0px 20px","border-radius":"0px"}'),
(21, '.tp-caption.largewhitebg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}', '{"color":"#000","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#fff","padding":"0px 20px","border-radius":"0px"}'),
(22, '.tp-caption.largegreenbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}', '{"color":"#fff","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#67ae73","padding":"0px 20px","border-radius":"0px"}'),
(23, '.tp-caption.excerpt', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none","letter-spacing":"-1.5px","width":"150px","white-space":"normal !important","height":"auto"},"hover":""}', '{"font-size":"36px","line-height":"36px","font-weight":"700","font-family":"Arial","color":"#ffffff","text-decoration":"none","background-color":"rgba(0, 0, 0, 1)","margin":"0px","padding":"1px 4px 0px 4px","border-width":"0px","border-color":"rgb(255, 255, 255)","border-style":"none"}'),
(24, '.tp-caption.large_bold_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"60px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(102, 102, 102)","text-decoration":"none","background-color":"transparent","margin":"0px","padding":"1px 4px 0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(25, '.tp-caption.medium_thin_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"34px","line-height":"30px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(102, 102, 102)","text-decoration":"none","background-color":"transparent","padding":"1px 4px 0px","margin":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(26, '.tp-caption.small_thin_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"18px","line-height":"26px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(117, 117, 117)","text-decoration":"none","background-color":"transparent","padding":"1px 4px 0px","margin":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(27, '.tp-caption.lightgrey_divider', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"width":"370px","height":"3px","background-position":"initial initial","background-repeat":"initial initial"},"hover":""}', '{"text-decoration":"none","background-color":"rgba(235, 235, 235, 1)","border-width":"0px","border-color":"rgb(34, 34, 34)","border-style":"none"}'),
(28, '.tp-caption.large_bold_darkblue', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"58px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(52, 73, 94)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(29, '.tp-caption.medium_bg_darkblue', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(52, 73, 94)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(30, '.tp-caption.medium_bold_red', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"24px","line-height":"30px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(227, 58, 12)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(31, '.tp-caption.medium_light_red', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"21px","line-height":"26px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(227, 58, 12)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(32, '.tp-caption.medium_bg_red', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(227, 58, 12)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(33, '.tp-caption.medium_bold_orange', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"24px","line-height":"30px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(243, 156, 18)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(34, '.tp-caption.medium_bg_orange', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(243, 156, 18)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(35, '.tp-caption.grassfloor', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"width":"4000px","height":"150px"},"hover":""}', '{"text-decoration":"none","background-color":"rgba(160, 179, 151, 1)","border-width":"0px","border-color":"rgb(34, 34, 34)","border-style":"none"}'),
(36, '.tp-caption.large_bold_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"58px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(37, '.tp-caption.medium_light_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"30px","line-height":"36px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(38, '.tp-caption.mediumlarge_light_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"34px","line-height":"40px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(39, '.tp-caption.mediumlarge_light_white_center', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"34px","line-height":"40px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"#ffffff","text-decoration":"none","background-color":"transparent","padding":"0px 0px 0px 0px","text-align":"center","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(40, '.tp-caption.medium_bg_asbestos', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(127, 140, 141)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(41, '.tp-caption.medium_light_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"30px","line-height":"36px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(0, 0, 0)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(42, '.tp-caption.large_bold_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"58px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(0, 0, 0)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(43, '.tp-caption.mediumlarge_light_darkblue', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"34px","line-height":"40px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(52, 73, 94)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(44, '.tp-caption.small_light_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"17px","line-height":"28px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(45, '.tp-caption.roundedimage', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"border-width":"0px","border-color":"rgb(34, 34, 34)","border-style":"none"}'),
(46, '.tp-caption.large_bg_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":[],"hover":""}', '{"font-size":"40px","line-height":"40px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(0, 0, 0)","padding":"10px 20px 15px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}'),
(47, '.tp-caption.mediumwhitebg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"30px","line-height":"30px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(0, 0, 0)","text-decoration":"none","background-color":"rgb(255, 255, 255)","padding":"5px 15px 10px","border-width":"0px","border-color":"rgb(0, 0, 0)","border-style":"none"}'),
(48, '.tp-caption.MarkerDisplay', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ff0000","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0px","0px","0px","0px"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-style":"normal","font-family":"Permanent Marker","padding":"0px 0px 0px 0px","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"#000000","border-style":"none","border-width":"0px","border-radius":"0px 0px 0px 0px","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(49, '.tp-caption.Restaurant-Display', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"idle":"","hover":""}', '{"color":"#ffffff","font-size":"120px","line-height":"120px","font-weight":"700","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(50, '.tp-caption.Restaurant-Cursive', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","font-size":"30px","line-height":"30px","font-weight":"400","font-style":"normal","font-family":"Nothing you could do","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(51, '.tp-caption.Restaurant-ScrollDownText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","font-size":"17px","line-height":"17px","font-weight":"400","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(52, '.tp-caption.Restaurant-Description', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#ffffff","font-size":"20px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(53, '.tp-caption.Restaurant-Price', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#ffffff","font-size":"30px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(54, '.tp-caption.Restaurant-Menuitem', '{"hover":"false","type":"text","version":"5.0","translated":"5"}', '{"color":"#000000","color-transparency":"1","text-decoration":"none","background-color":"#ffffff","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"500","easing":"Power2.easeInOut"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"17px","line-height":"17px","font-weight":"400","font-style":"normal","font-family":"Roboto","padding":["10px","30px","10px","30px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(55, '.tp-caption.Furniture-LogoText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"text-shadow":"none"},"hover":""}', '{"color":"#e6cfa3","color-transparency":"1","font-size":"160px","line-height":"150px","font-weight":"300","font-style":"normal","font-family":"\\"Raleway\\"","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(56, '.tp-caption.Furniture-Plus', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["30px","30px","30px","30px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0.5","easing":"Linear.easeNone"}', '{"idle":{"text-shadow":"none","box-shadow":"rgba(0,0,0,0.1) 0 1px 3px"},"hover":""}', '{"color":"#e6cfa3","color-transparency":"1","font-size":"20","line-height":"20px","font-weight":"400","font-style":"normal","font-family":"\\"Raleway\\"","padding":["6px","7px","4px","7px"],"text-decoration":"none","background-color":"#ffffff","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["30px","30px","30px","30px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(57, '.tp-caption.Furniture-Title', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"text-shadow":"none","letter-spacing":"3px"},"hover":""}', '{"color":"#000000","color-transparency":"1","font-size":"20px","line-height":"20px","font-weight":"700","font-style":"normal","font-family":"\\"Raleway\\"","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(58, '.tp-caption.Furniture-Subtitle', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"text-shadow":"none"},"hover":""}', '{"color":"#000000","color-transparency":"1","font-size":"17px","line-height":"20px","font-weight":"300","font-style":"normal","font-family":"\\"Raleway\\"","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(59, '.tp-caption.Gym-Display', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"80px","line-height":"70px","font-weight":"900","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(60, '.tp-caption.Gym-Subline', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"5px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"30px","line-height":"30px","font-weight":"100","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(61, '.tp-caption.Gym-SmallText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"text-shadow":"none"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"17px","line-height":"22","font-weight":"300","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(62, '.tp-caption.Fashion-SmallText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"12px","line-height":"20px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(63, '.tp-caption.Fashion-BigDisplay', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#000000","color-transparency":"1","font-size":"60px","line-height":"60px","font-weight":"900","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(64, '.tp-caption.Fashion-TextBlock', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#000000","color-transparency":"1","font-size":"20px","line-height":"40px","font-weight":"400","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(65, '.tp-caption.Sports-Display', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"13px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"130px","line-height":"130px","font-weight":"100","font-style":"normal","font-family":"\\"Raleway\\"","padding":"0 0 0 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(66, '.tp-caption.Sports-DisplayFat', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":[""],"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"130px","line-height":"130px","font-weight":"900","font-style":"normal","font-family":"\\"Raleway\\"","padding":"0 0 0 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(67, '.tp-caption.Sports-Subline', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"4px"},"hover":""}', '{"color":"#000000","color-transparency":"1","font-size":"32px","line-height":"32px","font-weight":"400","font-style":"normal","font-family":"\\"Raleway\\"","padding":"0 0 0 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(68, '.tp-caption.Instagram-Caption', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"20px","line-height":"20px","font-weight":"900","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(69, '.tp-caption.News-Title', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"70px","line-height":"60px","font-weight":"400","font-style":"normal","font-family":"Roboto Slab","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(70, '.tp-caption.News-Subtitle', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"0.65","text-decoration":"none","background-color":"#ffffff","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"solid","border-width":"0px","border-radius":["0","0","0px","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"300","easing":"Power3.easeInOut"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"15px","line-height":"24px","font-weight":"300","font-style":"normal","font-family":"Roboto Slab","padding":["0","0","0","0"],"text-decoration":"none","background-color":"#ffffff","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(71, '.tp-caption.Photography-Display', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"5px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"80px","line-height":"70px","font-weight":"100","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(72, '.tp-caption.Photography-Subline', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#777777","color-transparency":"1","font-size":"20px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(73, '.tp-caption.Photography-ImageHover', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"0.5","scalex":"0.8","scaley":"0.8","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"1000","easing":"Power3.easeInOut"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"20","line-height":"22","font-weight":"400","font-style":"normal","font-family":"","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"#ffffff","border-transparency":"0","border-style":"none","border-width":"0px","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(74, '.tp-caption.Photography-Menuitem', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#00ffde","background-transparency":"0.65","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"200","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"20px","line-height":"20px","font-weight":"300","font-style":"normal","font-family":"Raleway","padding":["3px","5px","3px","8px"],"text-decoration":"none","background-color":"#000000","background-transparency":"0.65","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(75, '.tp-caption.Photography-Textblock', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#fff","color-transparency":"1","font-size":"17px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(76, '.tp-caption.Photography-Subline-2', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#ffffff","color-transparency":"0.35","font-size":"20px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(77, '.tp-caption.Photography-ImageHover2', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"0.5","scalex":"0.8","scaley":"0.8","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"500","easing":"Back.easeOut"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"20","line-height":"22","font-weight":"400","font-style":"normal","font-family":"Arial","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"#ffffff","border-transparency":"0","border-style":"none","border-width":"0px","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(78, '.tp-caption.WebProduct-Title', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#333333","color-transparency":"1","font-size":"90px","line-height":"90px","font-weight":"100","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}');
INSERT INTO `wpfp_revslider_css` VALUES
(79, '.tp-caption.WebProduct-SubTitle', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#999999","color-transparency":"1","font-size":"15px","line-height":"20px","font-weight":"400","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(80, '.tp-caption.WebProduct-Content', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#999999","color-transparency":"1","font-size":"16px","line-height":"24px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}'),
(81, '.tp-caption.WebProduct-Menuitem', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#999999","color-transparency":"1","text-decoration":"none","background-color":"#ffffff","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"200","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"15px","line-height":"20px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":["3px","5px","3px","8px"],"text-decoration":"none","text-align":"left","background-color":"#333333","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(82, '.tp-caption.WebProduct-Title-Light', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#fff","color-transparency":"1","font-size":"90px","line-height":"90px","font-weight":"100","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(83, '.tp-caption.WebProduct-SubTitle-Light', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"0.35","font-size":"15px","line-height":"20px","font-weight":"400","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","parallax":"-"}'),
(84, '.tp-caption.WebProduct-Content-Light', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"0.65","font-size":"16px","line-height":"24px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["0","0","0","0"],"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","parallax":"-"}'),
(85, '.tp-caption.FatRounded', '{"hover":"true","type":"text","version":"5.0","translated":"5"}', '{"color":"#fff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"1","border-color":"#d3d3d3","border-transparency":"1","border-style":"none","border-width":"0px","border-radius":["50px","50px","50px","50px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Linear.easeNone"}', '{"idle":{"text-shadow":"none"},"hover":""}', '{"color":"#fff","color-transparency":"1","font-size":"30px","line-height":"30px","font-weight":"900","font-style":"normal","font-family":"Raleway","padding":["20px","22px","20px","25px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0.5","border-color":"#d3d3d3","border-transparency":"1","border-style":"none","border-width":"0px","border-radius":["50px","50px","50px","50px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(86, '.tp-caption.NotGeneric-Title', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"[object Object]","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"70px","line-height":"70px","font-weight":"800","font-style":"normal","font-family":"Raleway","padding":"10px 0px 10px 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(87, '.tp-caption.NotGeneric-SubTitle', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"4px","text-align":"left"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"13px","line-height":"20px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":"0 0 0 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(88, '.tp-caption.NotGeneric-CallToAction', '{"hover":"true","translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1","border-radius":"0px 0px 0px 0px","opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power3.easeOut"}', '{"idle":{"letter-spacing":"3px","text-align":"left"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"14px","line-height":"14px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":"10px 30px 10px 30px","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.5","border-style":"solid","border-width":"1","border-radius":"0px 0px 0px 0px","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(89, '.tp-caption.NotGeneric-Icon', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"default","speed":"300","easing":"Power3.easeOut"}', '{"idle":{"letter-spacing":"3px","text-align":"left"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"30px","line-height":"30px","font-weight":"400","font-style":"normal","font-family":"Raleway","padding":"0px 0px 0px 0px","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0","border-style":"solid","border-width":"0px","border-radius":"0px 0px 0px 0px","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(90, '.tp-caption.NotGeneric-Menuitem', '{"hover":"true","translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1px","border-radius":"0px 0px 0px 0px","opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"idle":{"letter-spacing":"3px","text-align":"left"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"14px","line-height":"14px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":"27px 30px 27px 30px","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.15","border-style":"solid","border-width":"1px","border-radius":"0px 0px 0px 0px","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(91, '.tp-caption.MarkerStyle', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"text-align":"left","0":""},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"17px","line-height":"30px","font-weight":"100","font-style":"normal","font-family":"\\"Permanent Marker\\"","padding":"0 0 0 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(92, '.tp-caption.Gym-Menuitem', '{"hover":"true","type":"text","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"1","border-color":"#ffffff","border-transparency":"0.25","border-style":"solid","border-width":"2px","border-radius":["3px","3px","3px","3px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"200","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"20px","line-height":"20px","font-weight":"300","font-style":"normal","font-family":"Raleway","padding":["3px","5px","3px","8px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"1","border-color":"#ffffff","border-transparency":"0","border-style":"solid","border-width":"2px","border-radius":["3px","3px","3px","3px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(93, '.tp-caption.Newspaper-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#000000","color-transparency":"1","text-decoration":"none","background-color":"#FFFFFF","background-transparency":"1","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1px","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"13px","line-height":"17px","font-weight":"700","font-style":"normal","font-family":"Roboto","padding":["12px","35px","12px","35px"],"text-decoration":"none","text-align":"left","background-color":"#ffffff","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.25","border-style":"solid","border-width":"1px","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(94, '.tp-caption.Newspaper-Subtitle', '{"hover":"false","type":"text","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#a8d8ee","color-transparency":"1","font-size":"15px","line-height":"20px","font-weight":"900","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(95, '.tp-caption.Newspaper-Title', '{"hover":"false","type":"text","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#fff","color-transparency":"1","font-size":"50px","line-height":"55px","font-weight":"400","font-style":"normal","font-family":"\\"Roboto Slab\\"","padding":["0","0","10px","0"],"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(96, '.tp-caption.Newspaper-Title-Centered', '{"hover":"false","type":"text","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#fff","color-transparency":"1","font-size":"50px","line-height":"55px","font-weight":"400","font-style":"normal","font-family":"\\"Roboto Slab\\"","padding":["0","0","10px","0"],"text-decoration":"none","text-align":"center","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(97, '.tp-caption.Hero-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#000000","color-transparency":"1","text-decoration":"none","background-color":"#ffffff","background-transparency":"1","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"14px","line-height":"14px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":["10px","30px","10px","30px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.5","border-style":"solid","border-width":"1","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(98, '.tp-caption.Video-Title', '{"hover":"false","type":"text","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#fff","color-transparency":"1","font-size":"30px","line-height":"30px","font-weight":"900","font-style":"normal","font-family":"Raleway","padding":["5px","5px","5px","5px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"-20%","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(99, '.tp-caption.Video-SubTitle', '{"hover":"false","type":"text","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"0","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"12px","line-height":"12px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["5px","5px","5px","5px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0.35","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"-20%","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(100, '.tp-caption.NotGeneric-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"idle":{"letter-spacing":"3px","text-align":"left"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"14px","line-height":"14px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":["10px","30px","10px","30px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.5","border-style":"solid","border-width":"1","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(101, '.tp-caption.NotGeneric-BigButton', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1px","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"14px","line-height":"14px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":["27px","30px","27px","30px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.15","border-style":"solid","border-width":"1px","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(102, '.tp-caption.WebProduct-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#333333","color-transparency":"1","text-decoration":"none","background-color":"#ffffff","background-transparency":"1","border-color":"#000000","border-transparency":"1","border-style":"none","border-width":"2","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"300","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"1px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"16px","line-height":"48px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["0px","40px","0px","40px"],"text-decoration":"none","text-align":"left","background-color":"#333333","background-transparency":"1","border-color":"#000000","border-transparency":"1","border-style":"none","border-width":"2","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(103, '.tp-caption.Restaurant-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffe081","border-transparency":"1","border-style":"solid","border-width":"2","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"300","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"3px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"17px","line-height":"17px","font-weight":"500","font-style":"normal","font-family":"Roboto","padding":["12px","35px","12px","35px"],"text-decoration":"none","text-align":"left","background-color":"#0a0a0a","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.5","border-style":"solid","border-width":"2","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(104, '.tp-caption.Gym-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#72a800","background-transparency":"1","border-color":"#000000","border-transparency":"0","border-style":"solid","border-width":"0","border-radius":["30px","30px","30px","30px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"idle":{"letter-spacing":"1px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"15px","line-height":"15px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["13px","35px","13px","35px"],"text-decoration":"none","text-align":"left","background-color":"#8bc027","background-transparency":"1","border-color":"#000000","border-transparency":"0","border-style":"solid","border-width":"0","border-radius":["30px","30px","30px","30px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(105, '.tp-caption.Gym-Button-Light', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#72a800","background-transparency":"0","border-color":"#8bc027","border-transparency":"1","border-style":"solid","border-width":"2px","border-radius":["30px","30px","30px","30px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Power2.easeInOut"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"15px","line-height":"15px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["12px","35px","12px","35px"],"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.25","border-style":"solid","border-width":"2px","border-radius":["30px","30px","30px","30px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(106, '.tp-caption.Sports-Button-Light', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"2","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"500","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"17px","line-height":"17px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["12px","35px","12px","35px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.5","border-style":"solid","border-width":"2","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(107, '.tp-caption.Sports-Button-Red', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"1","border-color":"#000000","border-transparency":"1","border-style":"solid","border-width":"2","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"500","easing":"Linear.easeNone"}', '{"idle":{"letter-spacing":"2px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"17px","line-height":"17px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["12px","35px","12px","35px"],"text-decoration":"none","text-align":"left","background-color":"#db1c22","background-transparency":"1","border-color":"#db1c22","border-transparency":"0","border-style":"solid","border-width":"2px","border-radius":["0px","0px","0px","0px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(108, '.tp-caption.Photography-Button', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1px","border-radius":["30px","30px","30px","30px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"auto","speed":"300","easing":"Power3.easeOut"}', '{"idle":{"letter-spacing":"1px"},"hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"15px","line-height":"15px","font-weight":"600","font-style":"normal","font-family":"Raleway","padding":["13px","35px","13px","35px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.25","border-style":"solid","border-width":"1px","border-radius":["30px","30px","30px","30px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(109, '.tp-caption.Newspaper-Button-2', '{"hover":"true","type":"button","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"2","border-radius":["3px","3px","3px","3px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","pointer_events":"auto","css_cursor":"pointer","speed":"300","easing":"Linear.easeNone"}', '{"idle":"","hover":""}', '{"color":"#ffffff","color-transparency":"1","font-size":"15px","line-height":"15px","font-weight":"900","font-style":"normal","font-family":"Roboto","padding":["10px","30px","10px","30px"],"text-decoration":"none","text-align":"left","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.5","border-style":"solid","border-width":"2","border-radius":["3px","3px","3px","3px"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"}'),
(110, '.tp-caption.custom_white_36px', '{"translated":5,"type":"text","version":"custom"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"30px","line-height":"36px","font-weight":"300","font-family":"Roboto","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 255, 255)","border-style":"none"}'),
(111, '.tp-caption.custom_white_16px', '{"translated":5,"type":"text","version":"custom"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"16px","line-height":"22px","font-weight":"300","font-family":"Roboto","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 255, 255)","border-style":"dotted"}'),
(112, '.tp-caption.custom_heading_black_24px', '{"translated":5,"type":"text","version":"custom"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"24px","line-height":"32px","font-family":"\\"Patua One\\"","color":"rgb(6, 6, 6)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(0, 0, 0)","border-style":"none"}'),
(113, '.tp-caption.custom_black_16px', '{"translated":5,"type":"text","version":"custom"}', 'null', '{"idle":{"text-shadow":"none"},"hover":""}', '{"font-size":"16px","line-height":"22px","font-weight":"300","font-family":"Roboto","color":"rgb(84, 84, 84)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 255, 255)","border-style":"dotted"}');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_revslider_layer_animations`
--

CREATE TABLE `wpfp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_revslider_navigations`
--

CREATE TABLE `wpfp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_revslider_sliders`
--

CREATE TABLE `wpfp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8mb4_unicode_ci,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_revslider_sliders`
--

INSERT INTO `wpfp_revslider_sliders` VALUES
(1, 'home-biz', 'home-biz', '{"hero_active":"-1","source_type":"gallery","instagram-count":"","instagram-access-token":"","instagram-user-id":"","flickr-count":"","flickr-api-key":"","flickr-type":"publicphotos","flickr-user-url":"","flickr-photoset":"","flickr-photoset-select":"","flickr-gallery-url":"","flickr-group-url":"","facebook-count":"","facebook-transient":"1200","facebook-page-url":"","facebook-type-source":"timeline","facebook-app-id":"","facebook-app-secret":"","twitter-count":"","twitter-transient":"1200","twitter-user-id":"","twitter-image-only":"off","twitter-include-retweets":"off","twitter-exclude-replies":"off","twitter-consumer-key":"","twitter-consumer-secret":"","twitter-access-token":"","twitter-access-secret":"","youtube-count":"","youtube-api":"","youtube-channel-id":"","youtube-type-source":"channel","youtube-playlist":"","youtube-playlist-select":"","vimeo-count":"","vimeo-type-source":"user","vimeo-username":"","vimeo-groupname":"","vimeo-albumid":"","vimeo-channelname":"","posts_list":"","post_types":"post","post_category":"","post_sortby":"ID","posts_sort_direction":"DESC","max_slider_posts":"30","excerpt_limit":"55","title":"home-biz","alias":"home-biz","shortcode":"[rev_slider alias=\\\\\\"home-biz\\\\\\"]","slider-type":"standard","slider_type":"fullwidth","width":"1170","height":"580","width_notebook":"1024","height_notebook":"768","enable_custom_size_notebook":"off","width_tablet":"778","height_tablet":"960","enable_custom_size_tablet":"off","width_mobile":"480","height_mobile":"720","enable_custom_size_iphone":"off","full_screen_align_force":"off","fullscreen_min_height":"","autowidth_force":"off","fullscreen_offset_container":"","fullscreen_offset_size":"","main_overflow_hidden":"off","auto_height":"off","min_height":"","max_width":"","force_full_width":"on","next_slide_on_window_focus":"off","disable_focus_listener":"off","delay":"9000","start_js_after_delay":"0","def-transitions":"fade","def-transition_duration":"300","def-image_source_type":"full","def-background_fit":"cover","def-bg_fit_x":"100","def-bg_fit_y":"100","def-bg_position":"center center","def-bg_position_x":"0","def-bg_position_y":"0","def-bg_repeat":"no-repeat","def-kenburn_effect":"off","def-kb_start_fit":"100","def-kb_easing":"Linear.easeNone","def-kb_end_fit":"100","def-kb_start_offset_x":"0","def-kb_start_offset_y":"0","def-kb_end_offset_x":"0","def-kb_end_offset_y":"0","def-kb_start_rotate":"0","def-kb_end_rotate":"0","def-kb_duration":"10000","0":"&lear","start_with_slide_enable":"off","start_with_slide":"1","first_transition_active":"off","first_transition_type":"fade","first_transition_duration":"300","first_transition_slot_amount":"7","stop_on_hover":"off","stop_slider":"off","stop_after_loops":"0","stop_at_slide":"2","shuffle":"off","loop_slide":"off","label_viewport":"off","viewport_start":"wait","viewport_area":"80","enable_progressbar":"off","show_timerbar":"top","progress_height":"5","progress_opa":"15","progressbar_color":"#000000","disable_on_mobile":"off","disable_kenburns_on_mobile":"off","hide_slider_under":"0","hide_defined_layers_under":"0","hide_all_layers_under":"0","shadow_type":"0","background_dotted_overlay":"none","background_color":"#060606","padding":"0","show_background_image":"off","background_image":"http:\\/\\/efieldsmedia.com\\/staging-Quezal\\/wp-content\\/","bg_fit":"cover","bg_repeat":"no-repeat","bg_position":"center top","position":"center","margin_top":"0","margin_bottom":"0","margin_left":"0","margin_right":"0","use_spinner":"2","spinner_color":"#FFFFFF","enable_arrows":"off","navigation_arrow_style":"round","arrows_always_on":"true","hide_arrows":"200","hide_arrows_mobile":"1200","hide_arrows_on_mobile":"off","arrows_under_hidden":"0","hide_arrows_over":"off","arrows_over_hidden":"0","leftarrow_align_hor":"left","leftarrow_align_vert":"center","leftarrow_offset_hor":"20","leftarrow_offset_vert":"0","rightarrow_align_hor":"right","rightarrow_align_vert":"center","rightarrow_offset_hor":"20","rightarrow_offset_vert":"0","enable_bullets":"off","navigation_bullets_style":"round","bullets_space":"5","bullets_direction":"horizontal","bullets_always_on":"true","hide_bullets":"200","hide_bullets_mobile":"1200","hide_bullets_on_mobile":"off","bullets_under_hidden":"0","hide_bullets_over":"off","bullets_over_hidden":"0","bullets_align_hor":"center","bullets_align_vert":"bottom","bullets_offset_hor":"0","bullets_offset_vert":"0","enable_thumbnails":"on","thumbnails_padding":"5","span_thumbnails_wrapper":"off","thumbnails_wrapper_color":"transparent","thumbnails_wrapper_opacity":"100","thumbnails_style":"custom","thumb_amount":"3","thumbnails_space":"0","thumbnail_direction":"horizontal","thumb_width":"270","thumb_height":"70","thumb_width_min":"100","thumbs_always_on":"true","hide_thumbs":"200","hide_thumbs_mobile":"1200","hide_thumbs_on_mobile":"off","thumbs_under_hidden":"0","hide_thumbs_over":"off","thumbs_over_hidden":"0","thumbnails_inner_outer":"inner","thumbnails_align_hor":"center","thumbnails_align_vert":"bottom","thumbnails_offset_hor":"0","thumbnails_offset_vert":"0","enable_tabs":"off","tabs_padding":"5","span_tabs_wrapper":"off","tabs_wrapper_color":"transparent","tabs_wrapper_opacity":"5","tabs_style":"round","tabs_amount":"5","tabs_space":"5","tabs_direction":"horizontal","tabs_width":"100","tabs_height":"50","tabs_width_min":"100","tabs_always_on":"false","hide_tabs":"200","hide_tabs_mobile":"1200","hide_tabs_on_mobile":"off","tabs_under_hidden":"0","hide_tabs_over":"off","tabs_over_hidden":"0","tabs_inner_outer":"inner","tabs_align_hor":"center","tabs_align_vert":"bottom","tabs_offset_hor":"0","tabs_offset_vert":"20","touchenabled":"on","drag_block_vertical":"off","swipe_velocity":"0.7","swipe_min_touches":"1","swipe_direction":"horizontal","keyboard_navigation":"off","keyboard_direction":"horizontal","mousescroll_navigation":"off","previewimage_width":"270","previewimage_height":"70","carousel_infinity":"off","carousel_space":"0","carousel_borderr":"0","carousel_borderr_unit":"px","carousel_padding_top":"0","carousel_padding_bottom":"0","carousel_maxitems":"3","carousel_stretch":"off","carousel_fadeout":"on","carousel_varyfade":"off","carousel_rotation":"off","carousel_varyrotate":"off","carousel_maxrotation":"0","carousel_scale":"off","carousel_varyscale":"off","carousel_scaledown":"50","carousel_hposition":"center","carousel_vposition":"center","use_parallax":"off","disable_parallax_mobile":"off","parallax_type":"mouse","parallax_origo":"enterpoint","parallax_speed":"400","parallax_level_1":"5","parallax_level_2":"10","parallax_level_3":"15","parallax_level_4":"20","parallax_level_5":"25","parallax_level_6":"30","parallax_level_7":"35","parallax_level_8":"40","parallax_level_9":"45","parallax_level_10":"50","lazy_load_type":"all","seo_optimization":"none","simplify_ie8_ios4":"off","show_alternative_type":"off","show_alternate_image":"","jquery_noconflict":"on","js_to_body":"false","output_type":"none","jquery_debugmode":"off","google_font":["&lt;link href=&#039;http:\\/\\/fonts.googleapis.com\\/css?family=Roboto:400,300,500,700,400italic,500italic,700italic&#039; rel=&#039;stylesheet&#039; type=&#039;text\\/css&#039;&gt;","&lt;link href=&#039;http:\\/\\/fonts.googleapis.com\\/css?family=Patua+One&#039; rel=&#039;stylesheet&#039; type=&#039;text\\/css&#039;&gt;"],"custom_css":"","custom_javascript":"","1":{"1":"&lt;link href=&#039;http:\\/\\/fonts.googleapis.com\\/css?family=Patua+One&#039; rel=&#039;stylesheet&#039; type=&#039;text\\/css&#039;&gt;"},"version":""}', '{"version":"5.0.7"}', ''),
(2, 'home-biz2', 'home-biz2', '{"title":"home-biz2","alias":"home-biz2","shortcode":"[rev_slider home-biz2]","source_type":"gallery","post_types":"post","post_category":"category_1","post_sortby":"ID","posts_sort_direction":"DESC","max_slider_posts":"30","excerpt_limit":"55","slider_template_id":"","posts_list":"","slider_type":"fullwidth","fullscreen_offset_container":"","fullscreen_offset_size":"","fullscreen_min_height":"","full_screen_align_force":"off","auto_height":"off","force_full_width":"on","width":"1170","height":"570","responsitive_w1":"940","responsitive_sw1":"770","responsitive_w2":"780","responsitive_sw2":"500","responsitive_w3":"510","responsitive_sw3":"310","responsitive_w4":"0","responsitive_sw4":"0","responsitive_w5":"0","responsitive_sw5":"0","responsitive_w6":"0","responsitive_sw6":"0","delay":"9000","shuffle":"off","lazy_load":"on","use_wpml":"off","stop_slider":"off","stop_after_loops":0,"stop_at_slide":2,"load_googlefont":"true","google_font":["<link href=\\\\''http:\\/\\/fonts.googleapis.com\\/css?family=Roboto:400,300,500,700,400italic,500italic,700italic\\\\'' rel=\\\\''stylesheet\\\\'' type=\\\\''text\\/css\\\\''>","<link href=\\\\''http:\\/\\/fonts.googleapis.com\\/css?family=Patua+One\\\\'' rel=\\\\''stylesheet\\\\'' type=\\\\''text\\/css\\\\''>"],"position":"center","margin_top":0,"margin_bottom":0,"margin_left":0,"margin_right":0,"shadow_type":"0","show_timerbar":"top","padding":0,"background_color":"","background_dotted_overlay":"none","show_background_image":"false","background_image":"http:\\/\\/efieldsmedia.com\\/staging-Quezal\\/wp-content\\/","bg_fit":"cover","bg_repeat":"no-repeat","bg_position":"center top","use_parallax":"on","disable_parallax_mobile":"off","parallax_type":"scroll","parallax_bg_freeze":"off","parallax_level_1":"5","parallax_level_2":"10","parallax_level_3":"15","parallax_level_4":"20","parallax_level_5":"25","parallax_level_6":"30","parallax_level_7":"35","parallax_level_8":"40","parallax_level_9":"45","parallax_level_10":"50","use_spinner":"2","spinner_color":"#FFFFFF","stop_on_hover":"on","keyboard_navigation":"off","hide_thumbs":200,"leftarrow_align_hor":"left","leftarrow_align_vert":"center","leftarrow_offset_hor":20,"leftarrow_offset_vert":0,"rightarrow_align_hor":"right","rightarrow_align_vert":"center","rightarrow_offset_hor":20,"rightarrow_offset_vert":0,"thumb_width":100,"thumb_height":50,"thumb_amount":5,"touchenabled":"on","swipe_velocity":0.7,"swipe_min_touches":1,"swipe_max_touches":1,"drag_block_vertical":"false","disable_on_mobile":"off","hide_slider_under":0,"hide_defined_layers_under":0,"hide_all_layers_under":0,"hide_arrows_on_mobile":"off","hide_bullets_on_mobile":"off","hide_thumbs_on_mobile":"off","hide_thumbs_under_resolution":0,"hide_thumbs_delay_mobile":1500,"loop_slide":"loop","start_with_slide":"1","first_transition_type":"fade","first_transition_duration":300,"first_transition_slot_amount":7,"reset_transitions":"","reset_transition_duration":0,"0":"Execute settings on all slides","jquery_noconflict":"on","js_to_body":"false","output_type":"none","custom_css":"","custom_javascript":"","template":"false","1":{"1":"<link href=\\\\''http:\\/\\/fonts.googleapis.com\\/css?family=Patua+One\\\\'' rel=\\\\''stylesheet\\\\'' type=\\\\''text\\/css\\\\''>"},"version":"","enable_arrows":"on","navigation_arrow_style":"preview2","navigation_bullets_style":"preview2","arrows_always_on":"false","bullets_always_on":"false","thumbs_always_on":"false","hide_arrows":200,"hide_bullets":200,"bullets_align_vert":"bottom","thumbnails_align_vert":"bottom","bullets_align_hor":"center","thumbnails_align_hor":"center","bullets_offset_hor":"0","thumbnails_offset_hor":"0","bullets_offset_vert":60,"thumbnails_offset_vert":60,"enable_progressbar":"off"}', '{"version":"5.0.7"}', ''),
(3, 'the-process', 'the-process', '{"hero_active":"-1","source_type":"gallery","instagram-count":"","instagram-access-token":"","instagram-user-id":"","flickr-count":"","flickr-api-key":"","flickr-type":"publicphotos","flickr-user-url":"","flickr-photoset":"","flickr-photoset-select":"","flickr-gallery-url":"","flickr-group-url":"","facebook-count":"","facebook-transient":"1200","facebook-page-url":"","facebook-type-source":"timeline","facebook-app-id":"","facebook-app-secret":"","twitter-count":"","twitter-transient":"1200","twitter-user-id":"","twitter-image-only":"off","twitter-include-retweets":"off","twitter-exclude-replies":"off","twitter-consumer-key":"","twitter-consumer-secret":"","twitter-access-token":"","twitter-access-secret":"","youtube-count":"","youtube-api":"","youtube-channel-id":"","youtube-type-source":"channel","youtube-playlist":"","youtube-playlist-select":"","vimeo-count":"","vimeo-type-source":"user","vimeo-username":"","vimeo-groupname":"","vimeo-albumid":"","vimeo-channelname":"","posts_list":"","post_types":"post","post_category":"","post_sortby":"ID","posts_sort_direction":"DESC","max_slider_posts":"30","excerpt_limit":"55","title":"the-process","alias":"the-process","shortcode":"[rev_slider alias=\\\\\\"the-process\\\\\\"]","slider-type":"standard","slider_type":"fullwidth","width":"1170","height":"230","width_notebook":"1024","height_notebook":"768","enable_custom_size_notebook":"off","width_tablet":"778","height_tablet":"960","enable_custom_size_tablet":"off","width_mobile":"480","height_mobile":"720","enable_custom_size_iphone":"off","full_screen_align_force":"off","fullscreen_min_height":"","autowidth_force":"off","fullscreen_offset_container":"","fullscreen_offset_size":"","main_overflow_hidden":"off","auto_height":"off","min_height":"","max_width":"","force_full_width":"on","next_slide_on_window_focus":"off","disable_focus_listener":"off","delay":"7000","start_js_after_delay":"0","def-transitions":"fade","def-transition_duration":"300","def-image_source_type":"full","def-background_fit":"cover","def-bg_fit_x":"100","def-bg_fit_y":"100","def-bg_position":"center center","def-bg_position_x":"0","def-bg_position_y":"0","def-bg_repeat":"no-repeat","def-kenburn_effect":"off","def-kb_start_fit":"100","def-kb_easing":"Linear.easeNone","def-kb_end_fit":"100","def-kb_start_offset_x":"0","def-kb_start_offset_y":"0","def-kb_end_offset_x":"0","def-kb_end_offset_y":"0","def-kb_start_rotate":"0","def-kb_end_rotate":"0","def-kb_duration":"10000","0":"&lear","start_with_slide_enable":"off","start_with_slide":"1","first_transition_active":"off","first_transition_type":"fade","first_transition_duration":"300","first_transition_slot_amount":"7","stop_on_hover":"off","stop_slider":"off","stop_after_loops":"0","stop_at_slide":"2","shuffle":"off","loop_slide":"off","label_viewport":"off","viewport_start":"wait","viewport_area":"80","enable_progressbar":"on","show_timerbar":"top","progress_height":"5","progress_opa":"15","progressbar_color":"#000000","disable_on_mobile":"off","disable_kenburns_on_mobile":"off","hide_slider_under":"0","hide_defined_layers_under":"0","hide_all_layers_under":"0","shadow_type":"0","background_dotted_overlay":"none","background_color":"","padding":"0","show_background_image":"off","background_image":"http:\\/\\/efieldsmedia.com\\/staging-Quezal\\/wp-content\\/","bg_fit":"cover","bg_repeat":"no-repeat","bg_position":"center top","position":"center","margin_top":"0","margin_bottom":"0","margin_left":"0","margin_right":"0","use_spinner":"2","spinner_color":"#FFFFFF","enable_arrows":"off","navigation_arrow_style":"","arrows_always_on":"false","hide_arrows":"200","hide_arrows_mobile":"1200","hide_arrows_on_mobile":"off","arrows_under_hidden":"0","hide_arrows_over":"off","arrows_over_hidden":"0","leftarrow_align_hor":"left","leftarrow_align_vert":"center","leftarrow_offset_hor":"20","leftarrow_offset_vert":"0","rightarrow_align_hor":"right","rightarrow_align_vert":"center","rightarrow_offset_hor":"20","rightarrow_offset_vert":"0","enable_bullets":"off","navigation_bullets_style":"round","bullets_space":"5","bullets_direction":"horizontal","bullets_always_on":"false","hide_bullets":"200","hide_bullets_mobile":"1200","hide_bullets_on_mobile":"off","bullets_under_hidden":"0","hide_bullets_over":"off","bullets_over_hidden":"0","bullets_align_hor":"center","bullets_align_vert":"bottom","bullets_offset_hor":"0","bullets_offset_vert":"20","enable_thumbnails":"off","thumbnails_padding":"5","span_thumbnails_wrapper":"off","thumbnails_wrapper_color":"transparent","thumbnails_wrapper_opacity":"100","thumbnails_style":"round","thumb_amount":"5","thumbnails_space":"5","thumbnail_direction":"horizontal","thumb_width":"100","thumb_height":"50","thumb_width_min":"100","thumbs_always_on":"false","hide_thumbs":"200","hide_thumbs_mobile":"1200","hide_thumbs_on_mobile":"off","thumbs_under_hidden":"0","hide_thumbs_over":"off","thumbs_over_hidden":"0","thumbnails_inner_outer":"inner","thumbnails_align_hor":"center","thumbnails_align_vert":"bottom","thumbnails_offset_hor":"0","thumbnails_offset_vert":"20","enable_tabs":"off","tabs_padding":"5","span_tabs_wrapper":"off","tabs_wrapper_color":"transparent","tabs_wrapper_opacity":"5","tabs_style":"round","tabs_amount":"5","tabs_space":"5","tabs_direction":"horizontal","tabs_width":"100","tabs_height":"50","tabs_width_min":"100","tabs_always_on":"false","hide_tabs":"200","hide_tabs_mobile":"1200","hide_tabs_on_mobile":"off","tabs_under_hidden":"0","hide_tabs_over":"off","tabs_over_hidden":"0","tabs_inner_outer":"inner","tabs_align_hor":"center","tabs_align_vert":"bottom","tabs_offset_hor":"0","tabs_offset_vert":"20","touchenabled":"on","drag_block_vertical":"off","swipe_velocity":"0.7","swipe_min_touches":"1","swipe_direction":"horizontal","keyboard_navigation":"off","keyboard_direction":"horizontal","mousescroll_navigation":"off","previewimage_width":"100","previewimage_height":"50","carousel_infinity":"off","carousel_space":"0","carousel_borderr":"0","carousel_borderr_unit":"px","carousel_padding_top":"0","carousel_padding_bottom":"0","carousel_maxitems":"3","carousel_stretch":"off","carousel_fadeout":"on","carousel_varyfade":"off","carousel_rotation":"off","carousel_varyrotate":"off","carousel_maxrotation":"0","carousel_scale":"off","carousel_varyscale":"off","carousel_scaledown":"50","carousel_hposition":"center","carousel_vposition":"center","use_parallax":"off","disable_parallax_mobile":"off","parallax_type":"mouse","parallax_origo":"enterpoint","parallax_speed":"400","parallax_level_1":"5","parallax_level_2":"10","parallax_level_3":"15","parallax_level_4":"20","parallax_level_5":"25","parallax_level_6":"30","parallax_level_7":"35","parallax_level_8":"40","parallax_level_9":"45","parallax_level_10":"50","lazy_load_type":"none","seo_optimization":"none","simplify_ie8_ios4":"off","show_alternative_type":"off","show_alternate_image":"","jquery_noconflict":"on","js_to_body":"false","output_type":"none","jquery_debugmode":"off","google_font":["&lt;link href=&#039;http:\\/\\/fonts.googleapis.com\\/css?family=PT+Sans+Narrow:400,700&#039; rel=&#039;stylesheet&#039; type=&#039;text\\/css&#039;&gt;"],"custom_css":"","custom_javascript":"","version":""}', '{"version":"5.0.7"}', ''),
(4, 'gallery-post-slider', 'gallery-post-slider', '{"title":"gallery-post-slider","alias":"gallery-post-slider","shortcode":"[rev_slider gallery-post-slider]","source_type":"gallery","post_types":"post","post_category":"category_17","post_sortby":"ID","posts_sort_direction":"DESC","max_slider_posts":"30","excerpt_limit":"55","slider_template_id":"","posts_list":"","slider_type":"fullwidth","fullscreen_offset_container":"","fullscreen_offset_size":"","fullscreen_min_height":"","full_screen_align_force":"off","auto_height":"off","force_full_width":"off","width":"1170","height":"500","responsitive_w1":"940","responsitive_sw1":"770","responsitive_w2":"780","responsitive_sw2":"500","responsitive_w3":"510","responsitive_sw3":"310","responsitive_w4":"0","responsitive_sw4":"0","responsitive_w5":"0","responsitive_sw5":"0","responsitive_w6":"0","responsitive_sw6":"0","delay":"9000","shuffle":"off","lazy_load":"off","use_wpml":"off","stop_slider":"off","stop_after_loops":0,"stop_at_slide":2,"position":"center","margin_top":0,"margin_bottom":0,"margin_left":0,"margin_right":0,"shadow_type":"0","show_timerbar":"hide","padding":0,"background_color":"#E9E9E9","background_dotted_overlay":"none","show_background_image":"false","background_image":"http:\\/\\/efieldsmedia.com\\/staging-Quezal\\/wp-content\\/","bg_fit":"cover","bg_repeat":"no-repeat","bg_position":"center top","use_parallax":"off","disable_parallax_mobile":"off","parallax_type":"mouse","parallax_bg_freeze":"off","parallax_level_1":"5","parallax_level_2":"10","parallax_level_3":"15","parallax_level_4":"20","parallax_level_5":"25","parallax_level_6":"30","parallax_level_7":"35","parallax_level_8":"40","parallax_level_9":"45","parallax_level_10":"50","use_spinner":"2","spinner_color":"#FFFFFF","stop_on_hover":"on","keyboard_navigation":"off","navigation_style":"preview4","navigaion_type":"none","navigation_arrows":"solo","navigaion_always_on":"true","hide_thumbs":200,"navigaion_align_hor":"center","navigaion_align_vert":"bottom","navigaion_offset_hor":"0","navigaion_offset_vert":20,"leftarrow_align_hor":"left","leftarrow_align_vert":"center","leftarrow_offset_hor":20,"leftarrow_offset_vert":0,"rightarrow_align_hor":"right","rightarrow_align_vert":"center","rightarrow_offset_hor":20,"rightarrow_offset_vert":0,"thumb_width":100,"thumb_height":50,"thumb_amount":5,"touchenabled":"on","swipe_velocity":0.7,"swipe_min_touches":1,"swipe_max_touches":1,"drag_block_vertical":"false","disable_on_mobile":"off","hide_slider_under":0,"hide_defined_layers_under":0,"hide_all_layers_under":0,"hide_arrows_on_mobile":"off","hide_bullets_on_mobile":"off","hide_thumbs_on_mobile":"off","hide_thumbs_under_resolution":0,"hide_thumbs_delay_mobile":1500,"loop_slide":"loop","start_with_slide":"1","first_transition_type":"fade","first_transition_duration":300,"first_transition_slot_amount":7,"reset_transitions":"","reset_transition_duration":0,"0":"Execute settings on all slides","jquery_noconflict":"on","js_to_body":"false","output_type":"none","custom_css":"","custom_javascript":"","template":"false","version":""}', '{"version":"5.0.7"}', '');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_revslider_slides`
--

CREATE TABLE `wpfp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_revslider_slides`
--

INSERT INTO `wpfp_revslider_slides` VALUES
(1, 1, 1, '{"background_type":"image","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":"zoomout","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/thumb-1.png","slide_bg_color":"#060606","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center center","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-bg1.jpg","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":""}', '[{"style":"","text":"Image 1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/color-piece.png","left":-960,"top":0,"animation":"sfl","easing":"Back.easeIn","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":1920,"height":580,"serial":"0","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8500,"alt":"","scaleX":"1920","scaleY":"580","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"Image 2","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/quezal-symbol.png","left":0,"top":0,"animation":"randomrotate","easing":"easeOutElastic","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":146,"height":146,"serial":"1","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-pendulum","loop_easing":"Linear.easeNone","loop_speed":"2.2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"{-250,250}","x_end":"inherit","y_start":"{-150,150}","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"{-90,90}","x_rotate_end":"inherit","y_rotate_start":"{-90,90}","y_rotate_end":"inherit","z_rotate_start":"{-360,360}","z_rotate_end":"inherit","scale_x_start":"{0,1}","scale_x_end":"inherit","scale_y_start":"{0,1}","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"Welcome to Quezal","type":"text","left":220,"top":0,"animation":"sfb","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_36px","time":1100,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":262,"height":36,"serial":"2","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"inherit","x_end":"inherit","y_start":"50px","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"none","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"30px","line-height":"36px","font-family":"Roboto"}},{"text":"13 years of experience","type":"text","left":177,"top":0,"animation":"sft","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"0","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_36px","time":1400,"endtime":"4000","endspeed":300,"endanimation":"stb","endeasing":"Back.easeOut","corner_left":"nothing","corner_right":"nothing","width":382,"height":36,"serial":"3","endTimeFinal":4000,"endSpeedFinal":300,"realEndTime":4300,"timeLast":2900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":false,"x_start":"inherit","x_end":"inherit","y_start":"-50px","y_end":"50px","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"none","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"30px","line-height":"36px","font-family":"Roboto"}},{"text":"5 design awards","type":"text","left":262,"top":0,"animation":"sft","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_36px","time":4100,"endtime":"6700","endspeed":300,"endanimation":"stb","endeasing":"Back.easeOut","corner_left":"nothing","corner_right":"nothing","width":428,"height":36,"serial":"4","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":2900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":false,"x_start":"inherit","x_end":"inherit","y_start":"-50px","y_end":"50px","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"none","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"30px","line-height":"36px","font-family":"Roboto"}},{"text":"More than 4000+ projects","type":"text","left":131,"top":0,"animation":"sft","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_36px","time":6800,"endtime":"8700","endspeed":300,"endanimation":"stb","endeasing":"Back.easeOut","corner_left":"nothing","corner_right":"nothing","width":428,"height":36,"serial":"5","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":2200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"inherit","x_end":"inherit","y_start":"-50px","y_end":"50px","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"none","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"30px","line-height":"36px","font-family":"Roboto"}}]', '[]'),
(2, 1, 2, '{"background_type":"image","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":"zoomout","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/thumb-2.png","slide_bg_color":"#060606","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-bg2.jpg","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":""}', '[{"style":"","text":"half-curtain","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/color-piece.png","left":960,"top":0,"animation":"sfr","easing":"Back.easeIn","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":1920,"height":580,"serial":"0","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8500,"alt":"","scaleX":"1920","scaleY":"580","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"symbol","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/quezal-symbol.png","left":0,"top":0,"animation":"randomrotate","easing":"easeOutElastic","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":146,"height":146,"serial":"1","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-pendulum","loop_easing":"Linear.easeNone","loop_speed":"2.2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"{-250,250}","x_end":"inherit","y_start":"{-150,150}","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"{-90,90}","x_rotate_end":"inherit","y_rotate_start":"{-90,90}","y_rotate_end":"inherit","z_rotate_start":"{-360,360}","z_rotate_end":"inherit","scale_x_start":"{0,1}","scale_x_end":"inherit","scale_y_start":"{0,1}","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon1.png","left":0,"top":137,"animation":"skewfromrightshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1100,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"2","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"-85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon2","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon2.png","left":647,"top":167,"animation":"skewfromrightshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1700,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"3","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"-85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon3","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon3.png","left":432,"top":0,"animation":"skewfromrightshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":2300,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"4","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":6700,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"-85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon4","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon4.png","left":646,"top":357,"animation":"skewfromrightshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":2900,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"5","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":6100,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"-85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon5","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon5.png","left":0,"top":137,"animation":"skewfromrightshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"bottom","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":3500,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"6","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":5500,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"-85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon6","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon6.png","left":468,"top":357,"animation":"skewfromleftshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":4100,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"7","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":4900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon7","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon7.png","left":432,"top":0,"animation":"skewfromleftshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":4700,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"8","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":4300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz-icon8","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-icon8.png","left":467,"top":167,"animation":"skewfromleftshort","easing":"Power3.easeInOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":5300,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":56,"height":56,"serial":"9","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":3700,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-200px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"85px","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"documentation","type":"text","left":0,"top":88,"animation":"sft","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":1400,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":110,"height":22,"serial":"10","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7600,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"inherit","x_end":"inherit","y_start":"-50px","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"retina ready graphics","type":"text","left":250,"top":0,"animation":"sfr","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":2600,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":151,"height":22,"serial":"11","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":6400,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"customize at ease","type":"text","left":271,"top":0,"animation":"sfl","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":5000,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":129,"height":22,"serial":"12","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":4000,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"-50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"unlimited colors","type":"text","left":0,"top":89,"animation":"sfb","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"bottom","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":3800,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":115,"height":22,"serial":"13","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":5200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"inherit","x_end":"inherit","y_start":"50px","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"you''ll love it","type":"text","left":735,"top":401,"animation":"sfr","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":3200,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":83,"height":22,"serial":"14","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":5800,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"flexible design","type":"text","left":333,"top":151,"animation":"sfl","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":5600,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":102,"height":22,"serial":"15","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":3400,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"-50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"filterable gallery","type":"text","left":321,"top":401,"animation":"sfl","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":4400,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":113,"height":22,"serial":"16","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":4600,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"-50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}},{"text":"translation ready","type":"text","left":733,"top":152,"animation":"sfr","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":2000,"endtime":"","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":121,"height":22,"serial":"17","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7000,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px"},"inline":[],"deformation-hover":[],"static_styles":{"color":"#ffffff","font-weight":"300","font-size":"16px","line-height":"22px","font-family":"Roboto"}}]', '[]');
INSERT INTO `wpfp_revslider_slides` VALUES
(3, 1, 3, '{"background_type":"image","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":["zoomout"],"0":"Remove","slot_amount":["7"],"transition_rotation":["0"],"transition_duration":["300"],"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/thumb-3.png","slide_bg_color":"#060606","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center center","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/home-biz-bg3.jpg","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","rs-gallery-type":"gallery","bg_external":"","bg_color":"#060606","slide_bg_youtube":"","slide_bg_vimeo":"","slide_bg_html_mpeg":"","slide_bg_html_webm":"","slide_bg_html_ogv":"","image_source_type":"full","alt_option":"media_library","alt_attr":"","ext_width":"1920","ext_height":"1080","video_force_cover":"on","video_dotted_overlay":"none","video_ratio":"16:9","video_start_at":"","video_end_at":"","video_loop":"none","video_nextslide":"off","video_force_rewind":"on","video_mute":"on","video_volume":"","video_speed":"1","slide_parallax_level":"-","kb_start_offset_x":"0","kb_end_offset_x":"0","kb_start_offset_y":"0","kb_end_offset_y":"0","kb_start_rotate":"0","kb_end_rotate":"0","thumb_dimension":"slider","transition_ease_in":["default"],"transition_ease_out":["default"],"params_1":"","params_1_chars":"10","params_2":"","params_2_chars":"10","params_3":"","params_3_chars":"10","params_4":"","params_4_chars":"10","params_5":"","params_5_chars":"10","params_6":"","params_6_chars":"10","params_7":"","params_7_chars":"10","params_8":"","params_8_chars":"10","params_9":"","params_9_chars":"10","params_10":"","params_10_chars":"10","slide_description":""}', '[{"style":"","text":"Image 1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/color-piece.png","left":{"desktop":-960},"top":{"desktop":0},"animation":"sfl","easing":"Back.easeIn","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":{"desktop":"auto"},"max_width":{"desktop":"auto"},"whitespace":{"desktop":"nowrap"},"speed":300,"align_hor":{"desktop":"center"},"align_vert":{"desktop":"middle"},"hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":9300,"endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":1920,"height":580,"serial":0,"timeLast":8500,"alt":"","scaleX":"1920","scaleY":"580","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"","padding":[0,0,0,0],"font-style":"normal","color-transparency":1,"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":1,"border-color":"transparent","border-transparency":1,"border-style":"none","border-width":"0","border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_origin_x":50,"2d_origin_y":50,"pers":600,"corner_left":"nothing","corner_right":"nothing"},"subtype":"","specialsettings":{},"internal_class":"","hover":false,"alias":"image 1","mask_start":false,"mask_end":false,"x_start_reverse":false,"y_start_reverse":false,"x_end_reverse":false,"y_end_reverse":false,"x_rotate_start_reverse":false,"y_rotate_start_reverse":false,"z_rotate_start_reverse":false,"x_rotate_end_reverse":false,"y_rotate_end_reverse":false,"z_rotate_end_reverse":false,"scale_x_start_reverse":false,"scale_y_start_reverse":false,"scale_x_end_reverse":false,"scale_y_end_reverse":false,"skew_x_start_reverse":false,"skew_y_start_reverse":false,"skew_x_end_reverse":false,"skew_y_end_reverse":false,"mask_x_start_reverse":false,"mask_y_start_reverse":false,"mask_x_end_reverse":false,"mask_y_end_reverse":false,"mask_x_start":0,"mask_y_start":0,"mask_speed_start":"inherit","mask_ease_start":"inherit","mask_x_end":0,"mask_y_end":0,"mask_speed_end":"inherit","mask_ease_end":"inherit","alt_option":"media_library","video_width":{"desktop":480},"video_height":{"desktop":360},"seo-optimized":false,"visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","cover_mode":"custom","static_styles":{"font-size":{"desktop":20},"line-height":{"desktop":22},"font-weight":{"desktop":400},"color":{"desktop":"#ffffff"}},"x_origin_start":"inherit","y_origin_start":"inherit","x_origin_end":"inherit","y_origin_end":"inherit","pers_start":"inherit","pers_end":"inherit","deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":0,"border-color":"transparent","border-transparency":"1","border-style":"none","border-width":0,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","unique_id":1},{"style":"","text":"Image 2","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz\\/quezal-symbol.png","left":{"desktop":0},"top":{"desktop":0},"animation":"randomrotate","easing":"easeOutElastic","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":{"desktop":"auto"},"max_width":{"desktop":"auto"},"whitespace":{"desktop":"nowrap"},"speed":300,"align_hor":{"desktop":"center"},"align_vert":{"desktop":"middle"},"hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":9300,"endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":146,"height":146,"serial":1,"timeLast":8200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-pendulum","loop_easing":"Linear.easeNone","loop_speed":"2.2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"{-250,250}","x_end":"inherit","y_start":"{-150,150}","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"{-90,90}","x_rotate_end":"inherit","y_rotate_start":"{-90,90}","y_rotate_end":"inherit","z_rotate_start":"{-360,360}","z_rotate_end":"inherit","scale_x_start":"{0,1}","scale_x_end":"inherit","scale_y_start":"{0,1}","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"","padding":[0,0,0,0],"font-style":"normal","color-transparency":1,"text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":1,"border-color":"transparent","border-transparency":1,"border-style":"none","border-width":"0","border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_origin_x":50,"2d_origin_y":50,"pers":600,"corner_left":"nothing","corner_right":"nothing"},"subtype":"","specialsettings":{},"internal_class":"","hover":false,"alias":"image 2","mask_start":false,"mask_end":false,"x_start_reverse":false,"y_start_reverse":false,"x_end_reverse":false,"y_end_reverse":false,"x_rotate_start_reverse":false,"y_rotate_start_reverse":false,"z_rotate_start_reverse":false,"x_rotate_end_reverse":false,"y_rotate_end_reverse":false,"z_rotate_end_reverse":false,"scale_x_start_reverse":false,"scale_y_start_reverse":false,"scale_x_end_reverse":false,"scale_y_end_reverse":false,"skew_x_start_reverse":false,"skew_y_start_reverse":false,"skew_x_end_reverse":false,"skew_y_end_reverse":false,"mask_x_start_reverse":false,"mask_y_start_reverse":false,"mask_x_end_reverse":false,"mask_y_end_reverse":false,"mask_x_start":0,"mask_y_start":0,"mask_speed_start":"inherit","mask_ease_start":"inherit","mask_x_end":0,"mask_y_end":0,"mask_speed_end":"inherit","mask_ease_end":"inherit","alt_option":"media_library","video_width":{"desktop":480},"video_height":{"desktop":360},"seo-optimized":false,"visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","cover_mode":"custom","static_styles":{"font-size":{"desktop":20},"line-height":{"desktop":22},"font-weight":{"desktop":400},"color":{"desktop":"#ffffff"}},"x_origin_start":"inherit","y_origin_start":"inherit","x_origin_end":"inherit","y_origin_end":"inherit","pers_start":"inherit","pers_end":"inherit","deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":0,"border-color":"transparent","border-transparency":"1","border-style":"none","border-width":0,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","unique_id":2},{"text":"Have an exciting project <\\/br>\\nfor us? Awesome! We\\u2019d love <\\/br>\\nto hear about it!","type":"text","left":{"desktop":80},"top":{"desktop":0},"animation":"sfl","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":{"desktop":"auto"},"max_width":{"desktop":"auto"},"whitespace":{"desktop":"nowrap"},"speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"middle"},"hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_36px","time":1100,"endtime":9300,"endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":488,"height":126,"serial":2,"timeLast":7900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"-50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"none","border-width":"0px","padding":[0,0,0,0],"font-style":"normal","color-transparency":1,"text-align":"left","border-transparency":1,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_origin_x":50,"2d_origin_y":50,"pers":600,"corner_left":"nothing","corner_right":"nothing"},"inline":[],"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":0,"border-color":"transparent","border-transparency":"1","border-style":"none","border-width":0,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"","easing":"Linear.easeNone","css_cursor":"auto"},"static_styles":{"color":{"desktop":"#ffffff"},"font-weight":{"desktop":"300"},"font-size":{"desktop":"30px"},"line-height":{"desktop":"36px"},"font-family":"Roboto"},"subtype":"","specialsettings":{},"internal_class":"","hover":false,"alias":"have an exciting pro...","mask_start":false,"mask_end":false,"x_start_reverse":false,"y_start_reverse":false,"x_end_reverse":false,"y_end_reverse":false,"x_rotate_start_reverse":false,"y_rotate_start_reverse":false,"z_rotate_start_reverse":false,"x_rotate_end_reverse":false,"y_rotate_end_reverse":false,"z_rotate_end_reverse":false,"scale_x_start_reverse":false,"scale_y_start_reverse":false,"scale_x_end_reverse":false,"scale_y_end_reverse":false,"skew_x_start_reverse":false,"skew_y_start_reverse":false,"skew_x_end_reverse":false,"skew_y_end_reverse":false,"mask_x_start_reverse":false,"mask_y_start_reverse":false,"mask_x_end_reverse":false,"mask_y_end_reverse":false,"mask_x_start":0,"mask_y_start":0,"mask_speed_start":"inherit","mask_ease_start":"inherit","mask_x_end":0,"mask_y_end":0,"mask_speed_end":"inherit","mask_ease_end":"inherit","alt_option":"media_library","video_width":{"desktop":480},"video_height":{"desktop":360},"seo-optimized":false,"visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","cover_mode":"custom","x_origin_start":"inherit","y_origin_start":"inherit","x_origin_end":"inherit","y_origin_end":"inherit","pers_start":"inherit","pers_end":"inherit","visible":true,"animation_overwrite":"wait","trigger_memory":"keep","unique_id":3},{"text":"[button class=\\"mybtn mybtn-big mybtn-green\\" target=\\"_blank\\" url=\\"#\\" icon=\\"checkmark4\\" ]Get Started Now[\\/button]","type":"text","left":{"desktop":720},"top":{"desktop":233},"animation":"sft","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":{"desktop":"auto"},"max_width":{"desktop":"671"},"whitespace":{"desktop":"normal"},"speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"top"},"hiddenunder":false,"resizeme":true,"link_slide":"nothing","scrollunder_offset":"","style":"black","time":1400,"endtime":9300,"endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":706,"height":18,"serial":3,"timeLast":7600,"alt":"","scaleX":{"desktop":""},"scaleY":{"desktop":""},"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":-20,"loop_enddeg":20,"loop_xorigin":50,"loop_yorigin":50,"loop_xstart":0,"loop_xend":0,"loop_ystart":0,"loop_yend":0,"loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"inherit","x_end":"inherit","y_start":"-50px","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Arial","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing"},"inline":[],"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","easing":"Linear.easeNone","css_cursor":"auto"},"static_styles":{"color":{"desktop":"#000"},"font-size":{"desktop":""},"line-height":{"desktop":""},"font-weight":{"desktop":"100"}},"subtype":"","specialsettings":{},"internal_class":"","hover":false,"alias":"[button class=","mask_start":false,"mask_end":false,"x_start_reverse":false,"y_start_reverse":false,"x_end_reverse":false,"y_end_reverse":false,"x_rotate_start_reverse":false,"y_rotate_start_reverse":false,"z_rotate_start_reverse":false,"x_rotate_end_reverse":false,"y_rotate_end_reverse":false,"z_rotate_end_reverse":false,"scale_x_start_reverse":false,"scale_y_start_reverse":false,"scale_x_end_reverse":false,"scale_y_end_reverse":false,"skew_x_start_reverse":false,"skew_y_start_reverse":false,"skew_x_end_reverse":false,"skew_y_end_reverse":false,"mask_x_start_reverse":false,"mask_y_start_reverse":false,"mask_x_end_reverse":false,"mask_y_end_reverse":false,"mask_x_start":"0","mask_y_start":"0","mask_x_end":"0","mask_y_end":"0","alt_option":"media_library","video_width":{"desktop":"480"},"video_height":{"desktop":"360"},"seo-optimized":false,"visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","cover_mode":"custom","x_origin_start":"50","y_origin_start":"50","x_origin_end":"50","y_origin_end":"50","visible":true,"animation_overwrite":"wait","trigger_memory":"keep","unique_id":4,"autolinebreak":true,"layer_action":{"tooltip_event":[],"action":[],"image_link":[],"link_open_in":[],"jump_to_slide":[],"scrollunder_offset":[],"actioncallback":[],"layer_target":[],"link_type":[],"action_delay":[],"toggle_layer_type":[],"toggle_class":[]}},{"text":"or give us a call","type":"text","left":{"desktop":793},"top":{"desktop":289},"animation":"tp-fade","easing":"Back.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":{"desktop":"auto"},"max_width":{"desktop":"auto"},"whitespace":{"desktop":"nowrap"},"speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"top"},"hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_16px","time":1700,"endtime":9300,"endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":109,"height":22,"serial":4,"timeLast":7300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"inherit","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"dotted","border-width":"0px","padding":[0,0,0,0],"font-style":"normal","color-transparency":1,"text-align":"left","border-transparency":1,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_origin_x":50,"2d_origin_y":50,"pers":600,"corner_left":"nothing","corner_right":"nothing"},"inline":[],"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":0,"border-color":"transparent","border-transparency":"1","border-style":"none","border-width":0,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"","easing":"Linear.easeNone","css_cursor":"auto"},"static_styles":{"color":{"desktop":"#ffffff"},"font-weight":{"desktop":"300"},"font-size":{"desktop":"16px"},"line-height":{"desktop":"22px"},"font-family":"Roboto"},"subtype":"","specialsettings":{},"internal_class":"","hover":false,"alias":"or give us a call","mask_start":false,"mask_end":false,"x_start_reverse":false,"y_start_reverse":false,"x_end_reverse":false,"y_end_reverse":false,"x_rotate_start_reverse":false,"y_rotate_start_reverse":false,"z_rotate_start_reverse":false,"x_rotate_end_reverse":false,"y_rotate_end_reverse":false,"z_rotate_end_reverse":false,"scale_x_start_reverse":false,"scale_y_start_reverse":false,"scale_x_end_reverse":false,"scale_y_end_reverse":false,"skew_x_start_reverse":false,"skew_y_start_reverse":false,"skew_x_end_reverse":false,"skew_y_end_reverse":false,"mask_x_start_reverse":false,"mask_y_start_reverse":false,"mask_x_end_reverse":false,"mask_y_end_reverse":false,"mask_x_start":0,"mask_y_start":0,"mask_speed_start":"inherit","mask_ease_start":"inherit","mask_x_end":0,"mask_y_end":0,"mask_speed_end":"inherit","mask_ease_end":"inherit","alt_option":"media_library","video_width":{"desktop":480},"video_height":{"desktop":360},"seo-optimized":false,"visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","cover_mode":"custom","x_origin_start":"inherit","y_origin_start":"inherit","x_origin_end":"inherit","y_origin_end":"inherit","pers_start":"inherit","pers_end":"inherit","visible":true,"animation_overwrite":"wait","trigger_memory":"keep","unique_id":5},{"text":"123-456-7890","type":"text","left":{"desktop":752},"top":{"desktop":316},"animation":"sfb","easing":"Bounce.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":{"desktop":"auto"},"max_width":{"desktop":"auto"},"whitespace":{"desktop":"nowrap"},"speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"top"},"hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_white_36px","time":2000,"endtime":9300,"endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":190,"height":36,"serial":5,"timeLast":7000,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"1","endWithSlide":true,"x_start":"inherit","x_end":"inherit","y_start":"50px","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-","font-family":"Roboto","text-decoration":"none","background-color":"transparent","background-transparency":100,"border-color":"#ffffff","border-style":"none","border-width":"0px","padding":[0,0,0,0],"font-style":"normal","color-transparency":1,"text-align":"left","border-transparency":1,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_origin_x":50,"2d_origin_y":50,"pers":600,"corner_left":"nothing","corner_right":"nothing"},"inline":[],"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":0,"border-color":"transparent","border-transparency":"1","border-style":"none","border-width":0,"border-radius":[0,0,0,0],"x":0,"y":0,"z":0,"skewx":0,"skewy":0,"scalex":1,"scaley":1,"opacity":1,"xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"","easing":"Linear.easeNone","css_cursor":"auto"},"static_styles":{"color":{"desktop":"#ffffff"},"font-weight":{"desktop":"300"},"font-size":{"desktop":"30px"},"line-height":{"desktop":"36px"},"font-family":"Roboto"},"subtype":"","specialsettings":{},"internal_class":"","hover":false,"alias":"123-456-7890","mask_start":false,"mask_end":false,"x_start_reverse":false,"y_start_reverse":false,"x_end_reverse":false,"y_end_reverse":false,"x_rotate_start_reverse":false,"y_rotate_start_reverse":false,"z_rotate_start_reverse":false,"x_rotate_end_reverse":false,"y_rotate_end_reverse":false,"z_rotate_end_reverse":false,"scale_x_start_reverse":false,"scale_y_start_reverse":false,"scale_x_end_reverse":false,"scale_y_end_reverse":false,"skew_x_start_reverse":false,"skew_y_start_reverse":false,"skew_x_end_reverse":false,"skew_y_end_reverse":false,"mask_x_start_reverse":false,"mask_y_start_reverse":false,"mask_x_end_reverse":false,"mask_y_end_reverse":false,"mask_x_start":0,"mask_y_start":0,"mask_speed_start":"inherit","mask_ease_start":"inherit","mask_x_end":0,"mask_y_end":0,"mask_speed_end":"inherit","mask_ease_end":"inherit","alt_option":"media_library","video_width":{"desktop":480},"video_height":{"desktop":360},"seo-optimized":false,"visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","cover_mode":"custom","x_origin_start":"inherit","y_origin_start":"inherit","x_origin_end":"inherit","y_origin_end":"inherit","pers_start":"inherit","pers_end":"inherit","visible":true,"animation_overwrite":"wait","trigger_memory":"keep","unique_id":6}]', '[""]'),
(4, 2, 1, '{"background_type":"trans","title":"Perfect for Retina Devices","state":"published","date_from":"","date_to":"","slide_transition":"flyin","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"normal","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-bg1.jpg","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","slide_parallax_level":"1"}', '[{"style":"","text":"home-biz2-bg1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-bg1.jpg","left":0,"top":0,"animation":"tp-fade","easing":"Power0.easeIn","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":1920,"height":540,"serial":"0","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8500,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"1","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"inherit","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"1"}},{"style":"","text":"home-biz2-cinema-display","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-cinema-display.png","left":10,"top":0,"animation":"lfl","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":553,"height":421,"serial":"1","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"left","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"inherit","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"Perfect for Retina Devices","type":"text","left":594,"top":162,"animation":"sfr","easing":"Power2.easeOut","split":"words","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_heading_black_24px","time":1100,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":273,"height":32,"serial":"2","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"A groundbreaking Retina display is so sharp <\\/br>\\nthat the human eye is unable to <\\/br>\\ndistinguish between pixels. <\\/br>","type":"text","left":594,"top":210,"animation":"sfr","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_black_16px","time":1400,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":255,"height":55,"serial":"3","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7600,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz2-spect","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-spect.png","left":30,"top":20,"animation":"lfr","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"bottom","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1700,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":282,"height":119,"serial":"4","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-wave","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"right","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"inherit","opacity_end":"inherit","deformation":{"parallax":"-"}}]', '""'),
(5, 2, 2, '{"background_type":"trans","title":"Unlimited Colors","state":"published","date_from":"","date_to":"","slide_transition":"flyin","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"normal","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-bg1.jpg","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","slide_parallax_level":"1"}', '[{"style":"","text":"home-biz2-bg1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-bg2.jpg","left":0,"top":0,"animation":"tp-fade","easing":"Power0.easeIn","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":1920,"height":540,"serial":"0","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8500,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"inherit","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz2-macbook","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-macbook.png","left":10,"top":0,"animation":"lfl","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":560,"height":325,"serial":"1","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"left","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"inherit","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"Unlimited Colors","type":"text","left":594,"top":162,"animation":"sfr","easing":"Power2.easeOut","split":"words","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_heading_black_24px","time":1100,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":273,"height":32,"serial":"2","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"Choose from millions of colors <\\/br>\\neasily change the look and <\\/br>\\nfeel of your site. <\\/br>","type":"text","left":594,"top":210,"animation":"sfr","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_black_16px","time":1400,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":255,"height":55,"serial":"3","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7600,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz2-spect","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-origami.png","left":30,"top":20,"animation":"lfr","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"bottom","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1700,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":227,"height":242,"serial":"4","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-wave","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"right","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"inherit","opacity_end":"inherit","deformation":{"parallax":"-"}}]', '""');
INSERT INTO `wpfp_revslider_slides` VALUES
(6, 2, 3, '{"background_type":"trans","title":"Reliable Options Framework","state":"published","date_from":"","date_to":"","slide_transition":"flyin","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"normal","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-bg1.jpg","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","slide_parallax_level":"1"}', '[{"style":"","text":"home-biz2-bg1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-bg3.jpg","left":0,"top":0,"animation":"tp-fade","easing":"Power0.easeIn","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"center","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":1920,"height":540,"serial":"0","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8700,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"inherit","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz2-cinema-display","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-iPad.png","left":10,"top":30,"animation":"lfl","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":558,"height":451,"serial":"1","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":8200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"left","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"inherit","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"Reliable Options Framework","type":"text","left":594,"top":162,"animation":"sfr","easing":"Power2.easeOut","split":"words","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_heading_black_24px","time":1100,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":273,"height":32,"serial":"2","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"text":"Simple, truly extensible options framework <\\/br>\\n for WordPress themes  <\\/br>\\nand plugins. <\\/br>","type":"text","left":594,"top":210,"animation":"sfr","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"top","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","style":"custom_black_16px","time":1400,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":255,"height":55,"serial":"3","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7600,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"x_start":"50px","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"inherit","deformation":{"parallax":"-"}},{"style":"","text":"home-biz2-spect","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/home-biz2\\/home-biz2-browserWindow.png","left":30,"top":20,"animation":"lfr","easing":"Power2.easeOut","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"right","align_vert":"bottom","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1700,"endtime":"8700","endspeed":300,"endanimation":"auto","endeasing":"nothing","corner_left":"nothing","corner_right":"nothing","width":357,"height":197,"serial":"4","endTimeFinal":8700,"endSpeedFinal":300,"realEndTime":9000,"timeLast":7300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-wave","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","static_start":"1","static_end":"2","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"right","x_end":"inherit","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"inherit","opacity_end":"inherit","deformation":{"parallax":"-"}}]', '""'),
(7, 3, 1, '{"background_type":"trans","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":"","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/","save_performance":"off","class_attr":"","id_attr":"","attr_attr":"","data_attr":""}', '[{"style":"","text":"process-img1","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/process-img1.png","left":40,"top":0,"animation":"sfl","easing":"easeInSine","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":500,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":170,"height":170,"serial":"0","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":6500,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","static_end":"1","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"arrow","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/arrow.png","left":230,"top":0,"animation":"sfl","easing":"easeOutBack","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":800,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":20,"height":20,"serial":"1","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":6200,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-slideloop","loop_easing":"Power3.easeInOut","loop_speed":"1","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"-5","loop_xend":"5","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"process-img2","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/process-img2.png","left":270,"top":0,"animation":"sfl","easing":"easeInSine","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1100,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":170,"height":170,"serial":"2","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":5900,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","static_end":"1","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"arrow","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/arrow.png","left":460,"top":0,"animation":"sfl","easing":"easeOutBack","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1400,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":20,"height":20,"serial":"3","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":5600,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-slideloop","loop_easing":"Power3.easeInOut","loop_speed":"1","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"-5","loop_xend":"5","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"process-img3","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/process-img3.png","left":500,"top":0,"animation":"sfl","easing":"easeInSine","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":1700,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":170,"height":170,"serial":"4","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":5300,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","static_end":"1","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"arrow","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/arrow.png","left":690,"top":0,"animation":"sfl","easing":"easeOutBack","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":2000,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":20,"height":20,"serial":"5","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":5000,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-slideloop","loop_easing":"Power3.easeInOut","loop_speed":"1","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"-5","loop_xend":"5","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"process-img4","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/process-img4.png","left":730,"top":0,"animation":"sfl","easing":"easeInSine","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":2300,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":170,"height":170,"serial":"6","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":4700,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","static_end":"1","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"arrow","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/arrow.png","left":920,"top":0,"animation":"sfl","easing":"easeOutBack","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":2600,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":20,"height":20,"serial":"7","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":4400,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"rs-slideloop","loop_easing":"Power3.easeInOut","loop_speed":"1","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"-5","loop_xend":"5","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}},{"style":"","text":"process-img5","type":"image","image_url":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/the-process\\/process-img5.png","left":960,"top":0,"animation":"sfl","easing":"easeInSine","split":"none","endsplit":"none","splitdelay":"10","endsplitdelay":"10","max_height":"auto","max_width":"auto","whitespace":"nowrap","speed":300,"align_hor":"left","align_vert":"middle","hiddenunder":false,"resizeme":true,"link":"","link_open_in":"same","link_slide":"nothing","scrollunder_offset":"","time":2900,"endtime":"6700","endspeed":300,"endanimation":"str","endeasing":"easeInSine","corner_left":"nothing","corner_right":"nothing","width":170,"height":170,"serial":"8","endTimeFinal":6700,"endSpeedFinal":300,"realEndTime":7000,"timeLast":4100,"alt":"","scaleX":"","scaleY":"","scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","loop_animation":"none","loop_easing":"Power3.easeInOut","loop_speed":"2","loop_startdeg":"-20","loop_enddeg":"20","loop_xorigin":"50","loop_yorigin":"50","loop_xstart":"0","loop_xend":"0","loop_ystart":"0","loop_yend":"0","loop_zoomstart":"1","loop_zoomend":"1","loop_angle":"0","loop_radius":"10","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","parallax_level":"-","endWithSlide":true,"link_id":"","link_class":"","link_title":"","link_rel":"","static_end":"1","x_start":"-50px","x_end":"50px","y_start":"inherit","y_end":"inherit","z_start":"inherit","z_end":"inherit","x_rotate_start":"inherit","x_rotate_end":"inherit","y_rotate_start":"inherit","y_rotate_end":"inherit","z_rotate_start":"inherit","z_rotate_end":"inherit","scale_x_start":"inherit","scale_x_end":"inherit","scale_y_start":"inherit","scale_y_end":"inherit","skew_x_start":"inherit","skew_x_end":"inherit","skew_y_start":"inherit","skew_y_end":"inherit","opacity_start":"0","opacity_end":"0","deformation":{"parallax":"-"}}]', '[]'),
(8, 4, 1, '{"background_type":"image","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/gallery-post-slider\\/img6-1200x800.jpg","title":"Ingredients","state":"published","date_from":"","date_to":"","slide_transition":"","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","save_performance":"off","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center center","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"right center","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Back.easeIn"}', '[]', '""'),
(9, 4, 2, '{"background_type":"image","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/gallery-post-slider\\/img3-1200x800.jpg","title":"Dream Home","state":"published","date_from":"","date_to":"","slide_transition":"","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","save_performance":"off","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center center","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"left center","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Back.easeIn"}', '[]', '""'),
(10, 4, 3, '{"background_type":"image","image":"https:\\/\\/craftech.co.ke\\/wp-content\\/uploads\\/revslider\\/gallery-post-slider\\/img2-1200x800.jpg","title":"Cup of Coffee","state":"published","date_from":"","date_to":"","slide_transition":"","0":"Remove","slot_amount":7,"transition_rotation":0,"transition_duration":300,"delay":"","save_performance":"off","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"https:\\/\\/craftech.co.ke\\/wp-content\\/","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center center","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"left center","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Back.easeIn"}', '[]', '""');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_revslider_static_slides`
--

CREATE TABLE `wpfp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_termmeta`
--

CREATE TABLE `wpfp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_termmeta`
--

INSERT INTO `wpfp_termmeta` VALUES
(1, 31, 'product_count_product_tag', '1'),
(2, 32, 'product_count_product_tag', '0'),
(3, 34, 'product_count_product_tag', '0'),
(4, 35, 'product_count_product_tag', '0'),
(5, 37, 'product_count_product_tag', '0'),
(6, 38, 'product_count_product_tag', '0'),
(7, 39, 'product_count_product_tag', '0'),
(8, 40, 'product_count_product_tag', '0'),
(9, 43, 'product_count_product_tag', '0'),
(10, 44, 'product_count_product_tag', '0'),
(11, 45, 'product_count_product_tag', '0'),
(12, 48, 'product_count_product_tag', '0'),
(28, 46, 'product_count_product_tag', '0'),
(29, 15, 'product_count_product_cat', '0'),
(30, 64, 'product_count_product_tag', '1'),
(31, 65, 'product_count_product_tag', '1'),
(32, 66, 'product_count_product_tag', '1'),
(33, 67, 'product_count_product_tag', '1'),
(34, 68, 'order', '0'),
(35, 68, 'product_count_product_cat', '1'),
(36, 69, 'order', '0'),
(37, 69, 'product_count_product_cat', '1');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_terms`
--

CREATE TABLE `wpfp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_terms`
--

INSERT INTO `wpfp_terms` VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'simple', 'simple', 0),
(3, 'grouped', 'grouped', 0),
(4, 'variable', 'variable', 0),
(5, 'external', 'external', 0),
(6, 'exclude-from-search', 'exclude-from-search', 0),
(7, 'exclude-from-catalog', 'exclude-from-catalog', 0),
(8, 'featured', 'featured', 0),
(9, 'outofstock', 'outofstock', 0),
(10, 'rated-1', 'rated-1', 0),
(11, 'rated-2', 'rated-2', 0),
(12, 'rated-3', 'rated-3', 0),
(13, 'rated-4', 'rated-4', 0),
(14, 'rated-5', 'rated-5', 0),
(15, 'Uncategorized', 'uncategorized', 0),
(16, 'Audio', 'audio', 0),
(17, 'Graphics', 'graphics', 0),
(18, 'Identity', 'identity', 0),
(19, 'Motion', 'motion', 0),
(20, 'Web Development', 'web-development', 0),
(21, 'audio', 'audio-2', 0),
(22, 'graphics', 'graphics-2', 0),
(23, 'image', 'image', 0),
(24, 'ipsum', 'ipsum', 0),
(25, 'lorem', 'lorem', 0),
(26, 'mobile', 'mobile', 0),
(27, 'motion', 'motion-2', 0),
(28, 'photo', 'photo', 0),
(29, 'quote', 'quote', 0),
(30, 'standard', 'standard', 0),
(31, 'web', 'web-2', 0),
(32, 'Books', 'books', 0),
(33, 'Branding', 'branding', 0),
(34, 'business', 'business-2', 0),
(35, 'CMS', 'cms', 0),
(36, 'Design', 'design', 0),
(37, 'design', 'design-2', 0),
(38, 'development', 'development', 0),
(39, 'game', 'game', 0),
(40, 'HTML5', 'html5', 0),
(41, 'Marketing', 'marketing', 0),
(42, 'Photography', 'photography', 0),
(43, 'Programming', 'programming', 0),
(44, 'training', 'training', 0),
(45, 'video', 'video', 0),
(46, 'web', 'web-2', 0),
(47, 'WordPress', 'wordpress', 0),
(48, 'WordPress', 'wordpress', 0),
(54, 'Primary Menu', 'primary-menu', 0),
(55, 'Secondary Menu', 'secondary-menu', 0),
(56, 'Quote', 'post-format-quote', 0),
(57, 'Audio', 'post-format-audio', 0),
(58, 'Link', 'post-format-link', 0),
(59, 'Video', 'post-format-video', 0),
(60, 'Gallery', 'post-format-gallery', 0),
(61, 'Image', 'post-format-image', 0),
(62, 'woocommerce-db-updates', 'woocommerce-db-updates', 0),
(63, 'wc_update_product_lookup_tables', 'wc_update_product_lookup_tables', 0),
(64, 'Hard disk', 'hard-disk', 0),
(65, 'External Hard Disk', 'external-hard-disk', 0),
(66, 'HDD', 'hdd', 0),
(67, '1TB', '1tb', 0),
(68, 'Storage Devices', 'storage-devices', 0),
(69, 'Network Equipment', 'network-equipment', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_term_relationships`
--

CREATE TABLE `wpfp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_term_relationships`
--

INSERT INTO `wpfp_term_relationships` VALUES
(1, 1, 0),
(2870, 54, 0),
(3515, 69, 0),
(3515, 2, 0),
(3512, 68, 0),
(3512, 2, 0),
(3512, 64, 0),
(3512, 67, 0),
(3512, 65, 0),
(2950, 54, 0),
(3464, 54, 0),
(3512, 66, 0),
(3070, 54, 0),
(3072, 54, 0),
(3076, 54, 0),
(3077, 54, 0),
(3459, 54, 0),
(3458, 54, 0),
(1833, 24, 0),
(1833, 17, 0),
(1833, 18, 0),
(1833, 25, 0),
(1833, 56, 0),
(1834, 21, 0),
(1834, 16, 0),
(1834, 17, 0),
(1834, 18, 0),
(1834, 19, 0),
(1834, 23, 0),
(1834, 29, 0),
(1834, 30, 0),
(1834, 31, 0),
(1834, 57, 0),
(1835, 58, 0),
(1835, 18, 0),
(1835, 20, 0),
(1835, 26, 0),
(1835, 31, 0),
(1836, 23, 0),
(1836, 16, 0),
(1836, 17, 0),
(1836, 19, 0),
(1836, 26, 0),
(1836, 29, 0),
(1836, 59, 0),
(1837, 21, 0),
(1837, 16, 0),
(1837, 19, 0),
(1837, 27, 0),
(1837, 29, 0),
(1837, 59, 0),
(1838, 22, 0),
(1838, 17, 0),
(1838, 20, 0),
(1838, 25, 0),
(1838, 27, 0),
(1838, 28, 0),
(2690, 61, 0),
(2430, 60, 0),
(2430, 22, 0),
(2430, 23, 0),
(2430, 30, 0),
(2430, 18, 0),
(2430, 19, 0),
(2690, 17, 0),
(1223, 36, 0),
(1229, 41, 0),
(1236, 47, 0),
(1239, 33, 0),
(1246, 33, 0),
(1374, 42, 0),
(2735, 36, 0),
(2735, 42, 0),
(2736, 33, 0),
(2736, 36, 0),
(2737, 41, 0),
(2737, 47, 0),
(2738, 41, 0),
(2738, 42, 0),
(2739, 33, 0),
(2739, 41, 0),
(2739, 47, 0),
(2740, 33, 0),
(2740, 42, 0),
(2740, 47, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_term_taxonomy`
--

CREATE TABLE `wpfp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_term_taxonomy`
--

INSERT INTO `wpfp_term_taxonomy` VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'product_type', '', 0, 2),
(3, 3, 'product_type', '', 0, 0),
(4, 4, 'product_type', '', 0, 0),
(5, 5, 'product_type', '', 0, 0),
(6, 6, 'product_visibility', '', 0, 0),
(7, 7, 'product_visibility', '', 0, 0),
(8, 8, 'product_visibility', '', 0, 0),
(9, 9, 'product_visibility', '', 0, 0),
(10, 10, 'product_visibility', '', 0, 0),
(11, 11, 'product_visibility', '', 0, 0),
(12, 12, 'product_visibility', '', 0, 0),
(13, 13, 'product_visibility', '', 0, 0),
(14, 14, 'product_visibility', '', 0, 0),
(15, 15, 'product_cat', '', 0, 0),
(16, 16, 'category', '', 0, 3),
(17, 17, 'category', '', 0, 5),
(18, 18, 'category', '', 0, 4),
(19, 19, 'category', '', 0, 4),
(20, 20, 'category', '', 0, 2),
(21, 21, 'post_tag', '', 0, 2),
(22, 22, 'post_tag', '', 0, 2),
(23, 23, 'post_tag', '', 0, 3),
(24, 24, 'post_tag', '', 0, 1),
(25, 25, 'post_tag', '', 0, 2),
(26, 26, 'post_tag', '', 0, 2),
(27, 27, 'post_tag', '', 0, 2),
(28, 28, 'post_tag', '', 0, 1),
(29, 29, 'post_tag', '', 0, 3),
(30, 30, 'post_tag', '', 0, 2),
(31, 31, 'post_tag', '', 0, 2),
(32, 32, 'product_tag', '', 0, 0),
(33, 33, 'tcsn_portfoliotags', '', 0, 5),
(34, 34, 'product_tag', '', 0, 0),
(35, 35, 'product_tag', '', 0, 0),
(36, 36, 'tcsn_portfoliotags', '', 0, 3),
(37, 37, 'product_tag', '', 0, 0),
(38, 38, 'product_tag', '', 0, 0),
(39, 39, 'product_tag', '', 0, 0),
(40, 40, 'product_tag', '', 0, 0),
(41, 41, 'tcsn_portfoliotags', '', 0, 4),
(42, 42, 'tcsn_portfoliotags', '', 0, 4),
(43, 43, 'product_tag', '', 0, 0),
(44, 44, 'product_tag', '', 0, 0),
(45, 45, 'product_tag', '', 0, 0),
(46, 46, 'product_tag', '', 0, 0),
(47, 47, 'tcsn_portfoliotags', '', 0, 4),
(48, 48, 'product_tag', '', 0, 0),
(54, 54, 'nav_menu', '', 0, 9),
(55, 55, 'nav_menu', '', 0, 0),
(56, 56, 'post_format', '', 0, 1),
(57, 57, 'post_format', '', 0, 1),
(58, 58, 'post_format', '', 0, 1),
(59, 59, 'post_format', '', 0, 2),
(60, 60, 'post_format', '', 0, 1),
(61, 61, 'post_format', '', 0, 1),
(69, 69, 'product_cat', '', 0, 1),
(62, 62, 'action-group', '', 0, 0),
(63, 63, 'action-group', '', 0, 0),
(64, 64, 'product_tag', '', 0, 1),
(65, 65, 'product_tag', '', 0, 1),
(66, 66, 'product_tag', '', 0, 1),
(67, 67, 'product_tag', '', 0, 1),
(68, 68, 'product_cat', '', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_usermeta`
--

CREATE TABLE `wpfp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_usermeta`
--

INSERT INTO `wpfp_usermeta` VALUES
(1, 1, 'nickname', 'craftech'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpfp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(13, 1, 'wpfp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'wp496_privacy'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:"789a8101a305a2a44465ea9d6207b485daaa9a212c875c26d74ca5a2aa50455e";a:4:{s:10:"expiration";i:1591464874;s:2:"ip";s:12:"41.81.238.54";s:2:"ua";s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36";s:5:"login";i:1590255274;}}'),
(17, 1, 'wpfp_user-settings', 'mfold=o&libraryContent=browse&editor=tinymce&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=139px&edit_element_vcUIPanelTop=46px'),
(18, 1, 'wpfp_user-settings-time', '1543825462'),
(19, 1, 'wpfp_dashboard_quick_press_last_post_id', '3517'),
(20, 1, 'community-events-location', 'a:1:{s:2:"ip";s:13:"102.167.128.0";}'),
(21, 1, '_woocommerce_persistent_cart_1', 'a:1:{s:4:"cart";a:0:{}}'),
(22, 1, 'wc_last_active', '1590192000'),
(23, 1, 'nav_menu_recently_edited', '54'),
(24, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";i:4;s:15:"title-attribute";}'),
(25, 1, 'metaboxhidden_nav-menus', 'a:9:{i:0;s:21:"add-post-type-product";i:1;s:28:"add-post-type-tcsn_portfolio";i:2;s:30:"add-post-type-tcsn_testimonial";i:3;s:23:"add-post-type-tcsn_team";i:4;s:12:"add-post_tag";i:5;s:15:"add-post_format";i:6;s:15:"add-product_cat";i:7;s:15:"add-product_tag";i:8;s:22:"add-tcsn_portfoliotags";}'),
(26, 1, 'jetpack_tracks_anon_id', 'jetpack:PHGSKAeXey2KFXML12ukvfQm'),
(27, 1, 'wpfp_media_library_mode', 'list'),
(32, 1, '_woocommerce_tracks_anon_id', 'woo:jyob6rk331xuTye/4knfRKv7'),
(33, 1, 'closedpostboxes_product', 'a:0:{}'),
(34, 1, 'metaboxhidden_product', 'a:2:{i:0;s:10:"postcustom";i:1;s:7:"slugdiv";}'),
(35, 1, '_order_count', '1'),
(36, 1, 'dismissed_template_files_notice', '1'),
(37, 1, 'dismissed_maxmind_license_key_notice', '1'),
(38, 1, 'dismissed_update_notice', '1'),
(39, 1, 'wpcf7_hide_welcome_panel_on', 'a:1:{i:0;s:3:"5.1";}');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_users`
--

CREATE TABLE `wpfp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wpfp_users`
--

INSERT INTO `wpfp_users` VALUES
(1, 'craftech', '$P$BDBLVFyHasiu//Bk35TS8i2djyjXlB/', 'craftech', 'craftech@craftech.co.ke', '', '2018-12-03 05:06:10', '', 0, 'craftech');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_admin_notes`
--

CREATE TABLE `wpfp_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_wc_admin_notes`
--

INSERT INTO `wpfp_wc_admin_notes` VALUES
(1, 'wc-admin-orders-milestone', 'info', 'en_US', 'First order', 'Congratulations on getting your first order from a customer! Learn how to manage your orders.', 'trophy', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:21', NULL, 0),
(2, 'wc-admin-historical-data', 'update', 'en_US', 'WooCommerce Admin: Historical Analytics Data', 'To view your historical analytics data, you must process your existing orders and customers.', 'info', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:22', NULL, 0),
(3, 'wc-admin-welcome-note', 'info', 'en_US', 'New feature(s)', 'Welcome to the new WooCommerce experience! In this new release you''ll be able to have a glimpse of how your store is doing in the Dashboard, manage important aspects of your business (such as managing orders, stock, reviews) from anywhere in the interface, dive into your store data with a completely new Analytics section and more!', 'info', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:22', NULL, 0),
(4, 'wc-admin-wc-helper-connection', 'info', 'en_US', 'Connect to WooCommerce.com', 'Connect to get important product notifications and updates.', 'info', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:22', NULL, 0),
(5, 'wc-admin-store-notice-giving-feedback', 'info', 'en_US', 'Review your experience', 'If you like WooCommerce Admin please leave us a 5 star rating. A huge thanks in advance!', 'info', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:43', NULL, 0),
(6, 'wc-admin-mobile-app', 'info', 'en_US', 'Install Woo mobile app', 'Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.', 'phone', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:43', NULL, 0),
(7, 'wc-admin-facebook-extension', 'info', 'en_US', 'Market on Facebook', 'Grow your business by targeting the right people and driving sales with Facebook. You can install this free extension now.', 'thumbs-up', '{}', 'unactioned', 'woocommerce-admin', '2020-03-06 08:18:43', NULL, 0),
(8, 'wc-admin-store-notice-setting-moved', 'info', 'en_US', 'Looking for the Store Notice setting?', 'It can now be found in the Customizer.', 'info', '{}', 'unactioned', 'woocommerce-admin', '2020-05-23 21:31:50', NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_admin_note_actions`
--

CREATE TABLE `wpfp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_wc_admin_note_actions`
--

INSERT INTO `wpfp_wc_admin_note_actions` VALUES
(1, 1, 'learn-more', 'Learn more', 'https://docs.woocommerce.com/document/managing-orders/', 'actioned', 0),
(2, 2, 'get-started', 'Get Started', '?page=wc-admin&path=/analytics/settings&import=true', 'actioned', 1),
(3, 3, 'learn-more', 'Learn more', 'https://woocommerce.wordpress.com/', 'actioned', 0),
(4, 4, 'connect', 'Connect', '?page=wc-addons&section=helper', 'actioned', 0),
(5, 5, 'share-feedback', 'Review', 'https://wordpress.org/support/plugin/woocommerce-admin/reviews/?rate=5#new-post', 'actioned', 0),
(6, 6, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/', 'actioned', 0),
(7, 7, 'learn-more', 'Learn more', 'https://woocommerce.com/products/facebook/', 'unactioned', 0),
(8, 7, 'install-now', 'Install now', '', 'unactioned', 1),
(9, 8, 'open-customizer', 'Open Customizer', 'customize.php', 'actioned', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_category_lookup`
--

CREATE TABLE `wpfp_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_wc_category_lookup`
--

INSERT INTO `wpfp_wc_category_lookup` VALUES
(15, 15),
(68, 68),
(69, 69);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_customer_lookup`
--

CREATE TABLE `wpfp_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_wc_customer_lookup`
--

INSERT INTO `wpfp_wc_customer_lookup` VALUES
(1, 1, 'craftech', '', '', 'craftech@craftech.co.ke', '2020-05-23 00:00:00', '2018-12-03 05:06:10', '', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_download_log`
--

CREATE TABLE `wpfp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_order_coupon_lookup`
--

CREATE TABLE `wpfp_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_order_product_lookup`
--

CREATE TABLE `wpfp_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_order_stats`
--

CREATE TABLE `wpfp_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_order_tax_lookup`
--

CREATE TABLE `wpfp_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_product_meta_lookup`
--

CREATE TABLE `wpfp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(10,2) DEFAULT NULL,
  `max_price` decimal(10,2) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint(20) DEFAULT '0',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_wc_product_meta_lookup`
--

INSERT INTO `wpfp_wc_product_meta_lookup` VALUES
(25, '002', 0, 0, '99.00', '99.00', 0, NULL, 'instock', 0, '0.00', 0),
(24, '001', 0, 0, '69.00', '69.00', 1, NULL, 'instock', 0, '0.00', 0),
(2969, '003', 0, 0, '199.00', '199.00', 1, NULL, 'instock', 0, '0.00', 0),
(76, '004', 0, 0, '219.00', '219.00', 1, NULL, 'instock', 0, '0.00', 0),
(2970, '005', 0, 0, '239.00', '239.00', 1, NULL, 'instock', 0, '0.00', 1),
(2971, '006', 0, 0, '169.00', '169.00', 0, NULL, 'instock', 0, '0.00', 0),
(2972, '007', 0, 0, '99.00', '99.00', 0, NULL, 'instock', 0, '0.00', 0),
(2973, '008', 0, 0, '369.00', '369.00', 1, NULL, 'instock', 0, '0.00', 0),
(2974, '009', 0, 0, '289.00', '289.00', 0, NULL, 'instock', 0, '0.00', 0),
(82, '010', 0, 0, '99.00', '99.00', 1, NULL, 'instock', 0, '0.00', 1),
(83, '011', 0, 0, '139.00', '139.00', 0, NULL, 'instock', 0, '0.00', 0),
(84, '012', 0, 0, '119.00', '119.00', 1, NULL, 'instock', 0, '0.00', 0),
(85, '013', 0, 0, '229.00', '229.00', 1, NULL, 'instock', 0, '0.00', 0),
(86, '014', 0, 0, '299.00', '299.00', 1, NULL, 'instock', 0, '0.00', 0),
(87, '015', 0, 0, '449.00', '449.00', 0, NULL, 'instock', 0, '0.00', 0),
(3512, '1', 0, 0, '8000.00', '8000.00', 0, 10, 'instock', 0, '0.00', 0),
(3515, '2', 0, 0, '7000.00', '7000.00', 0, 10, 'instock', 0, '0.00', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_tax_rate_classes`
--

CREATE TABLE `wpfp_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpfp_wc_tax_rate_classes`
--

INSERT INTO `wpfp_wc_tax_rate_classes` VALUES
(1, 'Reduced rate', 'reduced-rate'),
(2, 'Zero rate', 'zero-rate');

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_wc_webhooks`
--

CREATE TABLE `wpfp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_api_keys`
--

CREATE TABLE `wpfp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_attribute_taxonomies`
--

CREATE TABLE `wpfp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_downloadable_product_permissions`
--

CREATE TABLE `wpfp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_log`
--

CREATE TABLE `wpfp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_order_itemmeta`
--

CREATE TABLE `wpfp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_order_items`
--

CREATE TABLE `wpfp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_payment_tokenmeta`
--

CREATE TABLE `wpfp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_payment_tokens`
--

CREATE TABLE `wpfp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_sessions`
--

CREATE TABLE `wpfp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_shipping_zones`
--

CREATE TABLE `wpfp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_shipping_zone_locations`
--

CREATE TABLE `wpfp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_shipping_zone_methods`
--

CREATE TABLE `wpfp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_tax_rates`
--

CREATE TABLE `wpfp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpfp_woocommerce_tax_rate_locations`
--

CREATE TABLE `wpfp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
